 html,body {
      color:#ffffff;
      font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    }

    .site-header {
  position: relative;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to bottom right, #0f172a, #1e3a8a, #0f172a);
  color: white;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
  z-index: 50;
}

/* Dégradé overlay */
.header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30, 58, 138, 0.3), rgba(79, 70, 229, 0.3));
  z-index: 1;
}

/* Bande lumineuse en haut */
.header-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #3b82f6, #6366f1, #2563eb);
  z-index: 2;
}

/* Ombre transparente en bas */
.header-bottom-shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
  z-index: 2;
}

/* Cercles lumineux floutés */
.header-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
}
.header-circle-right {
  top: 1.5rem;
  right: 1.5rem;
  width: 5rem;
  height: 5rem;
  background: rgba(59, 130, 246, 0.1);
}
.header-circle-left {
  bottom: 1.5rem;
  left: 1.5rem;
  width: 4rem;
  height: 4rem;
  background: rgba(99, 102, 241, 0.1);
}

/* Contenu header */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

/* Logo + texte */
.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
/* Animation flottante */
@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.logo-box {
  width: 4rem;
  height: 4rem;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  /* Animation flottante */
  animation: floating 3s ease-in-out infinite;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.logo-text .main-text {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}
.logo-text .sub-text {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}

/* Bouton acheter */
.buy-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #2563eb, #ff946a);
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.buy-btn i {
  font-size: 1.2rem;
}
.buy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.7);
}


/* SECTION HERO */
.cover-section {
  position: relative;
  width: 100%;
  height: 100vh;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Vidéo */
.cover-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlays */
.cover-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 33, 77, 0.85), rgba(35, 23, 98, 0.75), rgba(107, 13, 13, 0.85));
  z-index: 1;
}
.cover-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* Contenu */
.cover-content {
  position: relative;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* TITRE */
.cover-title {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(to right, #3b82f6, #f87171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SOUS-TITRE */
.cover-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* BOUTON */
.cover-btn {
  background: linear-gradient(to right, #2563eb, #ff946a);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(69, 122, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cover-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* FADE-IN avec délais */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s forwards;
}
.delay-0 { animation-delay: 0.3s; }
.delay-1 { animation-delay: 0.9s; }
.delay-2 { animation-delay: 1.5s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (min-width: 768px) {
  .cover-title {
    font-size: 3.5rem;
  }
  .cover-subtitle {
    font-size: 1.5rem;
  }
}

    .section-image-text {
      padding:4rem 1.5rem;
    }
    .img-wrapper {
      width:80%;
      padding:1.5rem;
      border-radius:0.75rem;
      overflow:hidden;
      /* optionnel : shadow ou bordereau léger */
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    .img-wrapper:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      transform: translateY(-5px);
      transition: all 0.3s ease;
    }
    .section-image-text .img-wrapper img {
      width:100%;
      height:60%;
      display:block;
      border-radius:0.75rem;
    }
    .section-image-text .text-content h3 {
      font-size:2rem;
      font-weight:700;
      margin-bottom:1rem;
      color:#000000;
    }
    .section-image-text .text-content p {
      font-size:1.125rem;
      line-height:1.6;
      color:#393939;
    }

    /* Styles pour cette section de cartes */
  .section-cards {
    padding: 4rem 1.5rem;
  }
  /* Dimensions fixes des cartes */
.rect-card {
  width: 300px;          /* largeur fixe */
  height: 180px;         /* hauteur fixe */
  border-radius: 12px;
  border: solid 1px #e0e0e0;
  background: #f9f9f9;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: space-between;
  align-items: center;
}

/* Effet au hover */
.rect-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border: solid 1px #4720aa;
}

/* Zone image fixée */
.rect-img {
  max-width: 100%;
  max-height: 80px;       /* la hauteur max des logos */
  object-fit: contain;    /* on garde les proportions */
  margin-bottom: 10px;
}

/* Titres uniformes */
.rect-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
}

.section-cards .card-body {
    padding: 0.5rem;
  }


.div-form {
    padding-top: 2rem;
    padding-bottom: 8rem;
    border-bottom: #bababa 1px solid;
}
   /* Styles des labels, inputs, selects */
.form-label {
  color: #484848;
  font-size: 1.2rem;
  font-weight: 600;
}

.form-control, .form-select {
  border-radius: 20px;
  background: rgb(255, 255, 255);
  border: 2.5px solid rgb(234, 234, 234);
  color: #000000;
  height: 60px;
  font-size: 1.2rem;
  font-weight: 400;
}

.form-control::placeholder {
  color: rgb(47, 47, 47);
}

.form-check-label {
  color: #484848;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Le rectangle qui entoure le formulaire */
.form-card {
  max-width: 800px; /* tu peux ajuster */
  background-color: rgb(255, 255, 255);
  box-shadow: 0 6px 18px rgba(6,11,35,0.45);
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 30px;
  /* Padding déjà donné via p-4 de bootstrap */
}

@media (min-width: 320px) {
  .site-header {
  position: relative;
  width: 100%;
  padding: 2rem 1rem;
  background: linear-gradient(to bottom right, #0f172a, #1e3a8a, #0f172a);
  color: white;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
  z-index: 50;
}
 .logo-box {
  width: 3rem;
  height: 3rem;
  background: white;
  border-radius: .5rem;
  overflow: hidden;
  /* Animation flottante */
  animation: floating 3s ease-in-out infinite;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.logo-text .main-text {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.logo-text .sub-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}
.buy-btn {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #2563eb, #ff946a);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.section-cards {
    align-items: center;
}
.rect-card {
 width: auto;          /* largeur fixe */
  height: auto;         /* hauteur fixe */
  border-radius: 12px;
  border: solid 1px #e0e0e0;
  background: #f9f9f9;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: space-between;
  align-items: center;
}

.rect-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.rect-img {
  width: 60px;   /* réduit */
  height: 60px;  /* réduit */
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.rect-title {
  font-size: 1rem; /* texte plus petit */
  font-weight: 600;
  color: #000000;
}
.section-title {
    font-size: 1rem;
    font-weight: bold;
    color: #343a40;
}
.div-form {
    padding: 3rem 1rem;
}
.form-label {
    font-size: 1rem;
    font-weight: 700;
}
.form-control, .form-select {
    height: 50px;
    font-size: 1rem;
    font-weight: 300;
}

.form-check-label {
  color: #484848;
  font-size: 1rem;
  font-weight: 700;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  margin: 3% 0;
}

.img-wrapper {
  margin: 0 auto;
}

.text-content {
  margin: 0 auto;
}

.text-content h3 {
  font-size: 1.5rem;
  text-align: center;
}

.stat-label {
  font-size: 1rem;
}
.stat-text {
  font-size: 0.8rem;
}

.footer-title {
  font-size: 1.5rem;
}

}


/* Bouton Authenticate avec gradient de fond */
.btn-authenticate {
background: linear-gradient(to right, #2563eb, #ff946a);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(69, 122, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-authenticate:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6,11,35,0.6);
}

/* Section Customer Reviews */
#customer-reviws {
  padding: 60px 0;
  align-items: center;
}
.customer-reviews-text {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 auto;
  letter-spacing: 2px;
  background: linear-gradient(to right, #2563eb, #ff946a);
  padding: 1rem;
  width: fit-content;
  border-radius: 30px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 2rem;
  margin-top: 2.6rem;
}
.section-tickets-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 2rem;
  margin-top: 2.6rem;
}
.section-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  margin-bottom: 4.5rem;
}

/* Témoignages */
.testimonial-card {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  padding: 5px;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  object-fit: cover;
}

.testimonial-name {
  font-size: 1.125rem;
  font-weight: bold;
  color: #495057;
}

.testimonial-role {
  font-size: 1rem;
  color: #6c757d;
}

.testimonial-rating .fas {
  color: #ffc107;
}

.testimonial-text {
  font-size: 1rem;
  color: #495057;
}

/* Statistiques */
.stat-item-one {
  margin-bottom: 30px;
  border-radius: 20px;
  border: solid 1px rgba(59, 130, 246, 0.8);
  background-color: rgba(240, 246, 255, 0.8);
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.stat-item-three {
  margin-bottom: 30px;
  border-radius: 20px;
  border: solid 1px rgba(236, 72, 153, 0.8);
  background-color: rgba(255, 238, 247, 0.8);
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.stat-item-two {
  margin-bottom: 30px;
  border-radius: 20px;
  border: solid 1px rgba(16, 185, 129, 0.8);
  background-color: rgba(234, 255, 248, 0.8);
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.stat-item-four {
  margin-bottom: 30px;
  border-radius: 20px;
  border: solid 1px rgba(249, 115, 22, 0.8);
  background-color: rgb(255, 248, 242);
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.stat-item-one:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.stat-item-two:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.stat-item-three:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.stat-item-four:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.icon-square {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.stat-item:hover .icon-square {
  transform: scale(1.1);
}

/* Couleurs des carrés */
.stat-blue { background-color: rgba(59, 130, 246, 0.8); }
.stat-green { background-color: rgba(16, 185, 129, 0.8); }
.stat-pink { background-color: rgba(236, 72, 153, 0.8); }
.stat-orange { background-color: rgba(249, 115, 22, 0.8); }

/* Nombre et texte */
.stat-label {
  font-size: 2rem;
  font-weight: bold;
  color: #343a40;
  margin-bottom: 5px;
}

.stat-text {
  font-size: 1rem;
  color: #6c757d;
}

.testimonial-rating .fa {
  color: #ffc107;
}

.site-footer {
  position: relative;
  background: linear-gradient(to bottom right, #0f172a, #1e3a8a, #0f172a);
  color: white;
  padding: 2rem 1rem;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,58,138,0.3), rgba(79,70,229,0.3));
  z-index: 0;
}

.footer-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #3b82f6, #6366f1, #2563eb);
  z-index: 1;
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media(min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Bloc logo */
.footer-logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media(min-width: 768px) {
  .footer-logo-block {
    justify-content: flex-start;
  }
}

.footer-logo {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  animation: float 3s ease-in-out infinite;
  overflow: hidden;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.footer-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}

/* Liens */
.footer-heading {
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
}

.footer-heading.blue { color: #93c5fd; }
.footer-heading.indigo { color: #a5b4fc; }

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

@media(min-width: 768px) {
  .footer-grid ul,
  .footer-heading {
    text-align: left;
  }
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

.footer-grid a {
  color: #d1d5db;
  font-size: 0.9rem;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-grid a:hover {
  color: white;
}

/* Bas du footer */
.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.75rem;
}

/* Dégradé bas + cercles décoratifs */
.footer-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3rem;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
}

.footer-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
}

.footer-circle.top {
  top: 1.5rem;
  right: 1.5rem;
  width: 80px;
  height: 80px;
  background: rgba(59,130,246,0.1);
}

.footer-circle.bottom {
  bottom: 1.5rem;
  left: 1.5rem;
  width: 64px;
  height: 64px;
  background: rgba(99,102,241,0.1);
}

/* Animation logo */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
/* Effet hover sur bouton */
#controlsBtn:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease-in-out;
}

/* Icônes langues dans le menu */
.dropdown-item img {
  width: 24px;
  height: 18px;
  margin-right: 8px;
  border-radius: 4px;
}

.invalid-feedback-one,
.invalid-feedback-two,
.invalid-feedback-three,
.invalid-feedback-four,
.invalid-feedback-five,
.invalid-feedback-six {
  font-size: 0.875rem;
  font-weight: 700;
  color: #dc3545;
  margin-top: 0.25rem;
  width: fit-content;
  height: auto;
}
#formPopup .alert {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#formPopup.show .alert {
  opacity: 1;
}
#successMessage {
    background-color: #ffffff;       /* Fond blanc */
    color: #28a745;                  /* Texte vert */
    text-align: center;              /* Centrer le texte */
    border-radius: 8px;              /* Coins légèrement arrondis */
    padding: 20px;                   /* Espacement interne */
    width: 200px;                    /* Largeur fixe (ajuste selon besoin) */
    margin: 0 auto;                  /* Centrer horizontalement */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* Légère ombre */
    display: flex;
    flex-direction: column;          /* Icône au-dessus du texte */
    align-items: center;
}

/* Icône check grande au-dessus du texte */
#successMessage::before {
    content: "✔";                    /* Symbole check */
    color: #28a745;                  /* Vert */
    font-size: 50px;
    font-weight: 800;                 /* Taille grande */
    display: block;
    margin-bottom: 10px;             /* Espace entre icône et texte */
}

/* Texte avec un margin-top supplémentaire si besoin */
#successMessage span {
    margin-top: 5px;
    font-size: 18px;
    font-weight: 800;
}

#errorMessage {
    background-color: #ffffff;       /* Fond blanc */
    color: #dc3545;                  /* Texte rouge Bootstrap */
    text-align: center;              /* Centrer le texte */
    border-radius: 8px;              /* Coins légèrement arrondis */
    padding: 20px;                   /* Espacement interne */
    width: 200px;                    /* Largeur fixe (ajuste selon besoin) */
    margin: 0 auto;                  /* Centrer horizontalement */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* Légère ombre */
    display: flex;
    flex-direction: column;          /* Icône au-dessus du texte */
    align-items: center;
}

/* Icône croix grande au-dessus du texte */
#errorMessage::before {
    content: "✖";                    /* Symbole croix */
    color: #dc3545;                  /* Rouge */
    font-size: 50px;    
    font-weight: 800;             /* Taille grande */
    display: block;
    margin-bottom: 10px;             /* Espace entre icône et texte */
}

/* Texte avec un margin-top si besoin */
#errorMessage span {
    margin-top: 5px;
    font-size: 18px;
    font-weight: 800;
}

/* ════════════════════════════════════════════════════════════
   MODE SOMBRE
════════════════════════════════════════════════════════════ */
[data-theme="dark"],
[data-theme="dark"] body {
  background-color: #000000 !important;
}

[data-theme="dark"] .section-image-text,
[data-theme="dark"] .div-form,
[data-theme="dark"] .section-cards,
[data-theme="dark"] #customer-reviews,
[data-theme="dark"] #customer-reviews .container {
  background-color: #000000 !important;
}

[data-theme="dark"] .section-image-text .text-content h3,
[data-theme="dark"] .section-image-text .text-content p,
[data-theme="dark"] .rect-title,
[data-theme="dark"] .form-label,
[data-theme="dark"] .form-check-label,
[data-theme="dark"] .section-title,
[data-theme="dark"] .section-tickets-title,
[data-theme="dark"] .section-subtitle,
[data-theme="dark"] .testimonial-name,
[data-theme="dark"] .testimonial-role,
[data-theme="dark"] .testimonial-text,
[data-theme="dark"] .stat-label,
[data-theme="dark"] .stat-text,
[data-theme="dark"] .dropdown-item,
[data-theme="dark"] .footer-bottom p {
  color: #ffffff !important;
}

[data-theme="dark"] .rect-card {
  background: #111111 !important;
  border-color: #222;
  --bs-card-bg: #111111;
}

[data-theme="dark"] .rect-card:hover {
  border-color: #6366f1;
}

[data-theme="dark"] .form-card {
  background-color: #111111;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.8);
}

[data-theme="dark"] .div-form {
  border-bottom-color: #111;
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
  background: #1a1a1a;
  border-color: #333;
  color: #ffffff;
}

[data-theme="dark"] .form-control::placeholder {
  color: #888;
}

[data-theme="dark"] .form-check-input {
  background-color: #1a1a1a;
  border-color: #444;
}

[data-theme="dark"] .testimonial-card {
  background-color: #111111 !important;
}

[data-theme="dark"] .testimonial-avatar {
  background-color: #1a1a1a !important;
}

[data-theme="dark"] .stat-item-one,
[data-theme="dark"] .stat-item-two,
[data-theme="dark"] .stat-item-three,
[data-theme="dark"] .stat-item-four {
  background-color: #111111 !important;
  border-color: #333 !important;
}

[data-theme="dark"] .dropdown-menu {
  background-color: #111111;
}

[data-theme="dark"] .dropdown-divider {
  border-top-color: #333;
}

[data-theme="dark"] .form-switch .form-check-input {
  background-color: #333;
  border-color: #555;
}

[data-theme="dark"] .form-switch .form-check-input:checked {
  background-color: #6366f1;
  border-color: #6366f1;
}

[data-theme="dark"] .dropdown-item:hover {
  background-color: #222;
  color: #fff;
}

[data-theme="dark"] .logo-box,
[data-theme="dark"] .footer-logo {
  background: #1a1a1a;
}

[data-theme="dark"] #successMessage,
[data-theme="dark"] #errorMessage {
  background-color: #111111 !important;
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus {
  background: #1a1a1a;
  color: #ffffff;
}

[data-theme="dark"] #controlsBtn {
  background-color: #111111 !important;
  border-color: #333 !important;
}
