/* --- RESET & VARIABLES --- */
:root {
  --bg-dark: #020617;       /* Fond très sombre */
  --bg-card: #0F172A;       /* Fond des cartes */
  --text-main: #F3F4F6;     /* Texte clair */
  --text-muted: #9CA3AF;    /* Texte gris */
  --accent-gold: #FACC15;   /* Jaune pour les CTA */
  --accent-gold-hover: #EAB308;
  --border: #1E293B;
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--accent-gold);
  color: #111;
  box-shadow: 0 4px 14px rgba(250, 204, 21, 0.3);
}
.btn-primary:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid #334155;
  background: transparent;
  color: var(--text-main);
}
.btn-outline:hover {
  background: #1E293B;
  border-color: var(--text-main);
}
.btn-yellow {
  background: var(--accent-gold);
  color: #000;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
}
.btn-yellow:hover {
  background: var(--accent-gold-hover);
}

/* --- NAVBAR --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-link { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; }
.nav-links a {
  margin-left: 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.nav-links a:hover { color: #fff; }
.mobile-menu-btn { display: none; background:none; border:none; color:#fff; font-size:1.5rem; }

/* --- HERO --- */
.hero {
  padding: 60px 0 80px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.badge-pill {
  display: inline-block;
  padding: 6px 12px;
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
}
.text-highlight { color: var(--accent-gold); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 540px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.check { color: var(--accent-gold); font-weight: bold; margin-right: 4px; }
.hero-image img {
  border-radius: 12px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
  border: 1px solid #334155;
}

/* --- SECTIONS --- */
.section {padding: 40px 0;}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-header p { color: var(--text-muted); }

/* --- PRODUCTS GRID --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  border-color: #3B82F6; /* Highlight Blue/Gold if prefered */
}
.card-image-wrapper {
  width: 100%;
  aspect-ratio: 3/4; 
  background: #0b0f19;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .card-image-wrapper img { transform: scale(1.03); }

.product-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-niche {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.product-body h4 {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 16px;
  font-weight: 700;
}
.product-body ul { margin-bottom: 24px; flex-grow: 1; }
.product-body li {
  font-size: 0.9rem;
  color: #D1D5DB;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}
.product-body li::before {
  content: "•";
  color: var(--accent-gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #1E293B;
}
.price {
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 1.2rem;
}

/* --- BUNDLE SECTION --- */
.bundle-card {
  background: linear-gradient(135deg, #451a03 0%, #78350f 100%);
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  border: 1px solid #B45309;
  box-shadow: 0 20px 60px rgba(234, 179, 8, 0.1);
  position: relative;
  overflow: hidden;
}
.bundle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(251, 191, 36, 0.15), transparent 60%);
}
.bundle-content { flex: 1; z-index: 2; color: #fff; }
.bundle-label {
  background: #F59E0B;
  color: #000;
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 20px;
}
.bundle-content h2 { font-size: 2.2rem; margin-bottom: 15px; line-height: 1.1; }
.bundle-price { font-size: 1.3rem; margin-bottom: 20px; }
.old-price { text-decoration: line-through; opacity: 0.7; margin-right: 10px; font-size: 1.1rem; }
.bundle-desc { font-size: 1rem; opacity: 0.9; margin-bottom: 25px; max-width: 500px; }
.bundle-list { margin-bottom: 30px; }
.bundle-list li { margin-bottom: 8px; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.bundle-list li::before { content: "✓"; background: #FCD34D; color: #78350f; border-radius: 50%; width: 20px; height: 20px; display: flex; justify-content: center; align-items: center; font-size: 12px; font-weight: bold; }
.bundle-visual { flex: 0.8; display: flex; justify-content: center; z-index: 2; }

/* --- FAQ SECTION (AMÉLIORÉE / ATTRACTIVE) --- */
.faq-container {max-width: 800px;margin: 0px auto;}
.faq-item {
  background: var(--bg-card);
  border: 1px solid #facc15;
  border-radius: 12px; /* Cartes arrondies */
  margin-bottom: 15px; /* Espacement entre les questions */
  transition: all 0.3s ease;
  overflow: hidden;
  margin-top: 20PX;
}
/* Effet HOVER : Bordure Jaune + Petit effet 3D */
.faq-item:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.1);
  transform: translateY(-2px);
}
.faq-toggle {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--text-main);
}
.faq-toggle span {
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s;
}
.faq-item:hover .faq-toggle span {
  color: var(--accent-gold); /* Le texte devient jaune au survol */
}
.icon {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: transform 0.3s, color 0.3s;
  line-height: 1;
}
.faq-item.active .icon {
  transform: rotate(45deg);
  color: var(--accent-gold);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}
.faq-content p {
  padding-bottom: 24px;
  color: var(--text-muted);
  line-height: 1.6;
}
.faq-item.active .faq-content {
  max-height: 1000px; /* Permet l'ouverture fluide */
  transition: max-height 0.5s ease-in-out;
}

/* --- FEATURED SECTION --- */
.featured-section {
  padding: 25px 0;
  background: linear-gradient(to bottom, #020617, #0f172a);
  border-bottom: 1px solid #1E293B;
}
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid #FACC15; 
  border-radius: 20px;
  padding: 30px;
  align-items: center;
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.1);
}
.featured-image img {
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.featured-content h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
}
.featured-tag {
  display: inline-block;
  background: #FACC15;
  color: #000;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.featured-list { margin: 20px 0; }
.featured-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: #E2E8F0;
}
.featured-price {
  font-size: 2rem;
  font-weight: 800;
  color: #FACC15;
  margin-bottom: 20px;
  display: block;
}

/* --- BLACK FRIDAY BANNER (Jaune/Noir/Rouge) --- */
.top-banner {
    background: #facc15;
    color: #000;
    text-align: center;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 101;
}
.top-banner strong {
  color: #dc2626; /* Rouge vif */
  text-transform: uppercase;
  font-weight: 800;
}

/* --- WHATSAPP BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20BA56;
}
.whatsapp-icon {
  width: 35px;
  height: 35px;
  fill: white;
}

/* --- FOOTER --- */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0;
  text-align: center;
  color: var(--text-muted);
  margin-top: 60px;
}
.footer-sub { font-size: 0.85rem; opacity: 0.7; margin-top: 8px; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .hero { grid-template-columns: 1fr; text-align: center; gap: 40px; padding-top: 40px; }
  .hero-buttons, .hero-meta { justify-content: center; }
  .hero-sub { margin: 0 auto 30px; }
  .bundle-card { flex-direction: column; text-align: center; padding: 40px 24px; }
  .bundle-content { align-items: center; display: flex; flex-direction: column; }
  .bundle-list li { justify-content: center; }
}
@media(max-width: 768px) {
  .featured-card { grid-template-columns: 1fr; text-align: center; }
  .featured-list li { justify-content: center; text-align: left; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero h1 { font-size: 2.2rem; }
  .products-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; margin-bottom: 10px; }
  .hero-buttons { flex-direction: column; width: 100%; }
}
/* --- POLICY PAGE --- */
.policy-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 24px;
  color: #cbd5e1; /* Texte gris clair lisible sur fond noir */
}
.policy-container h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 40px;
  border-bottom: 1px solid #334155;
  padding-bottom: 20px;
}
.policy-container h2 {
  color: #FACC15; /* Titres en Jaune/Or */
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
}
.policy-container p {
  margin-bottom: 16px;
  line-height: 1.7;
}
.policy-container a {
  color: #FACC15;
  text-decoration: underline;
}
.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #94a3b8;
  font-size: 0.9rem;
  text-decoration: none;
}
.back-link:hover { color: #fff; }
/* --- HERO SECTION REDESIGN (ATTRACTIVE) --- */

/* 1. Badge Animé */
.badge-pill-animated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid #FACC15;
  border-radius: 100px;
  color: #FACC15;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.2);
}
.badge-pill-animated .dot {
  width: 8px;
  height: 8px;
  background-color: #FACC15;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(250, 204, 21, 0); }
  100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
}

/* 2. Typographie Impactante */
.hero h1 {
  font-size: 3.2rem; /* Plus gros */
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
/* Texte en Or Dégradé */
.text-gradient-gold {
  background: linear-gradient(to right, #FACC15, #EAB308, #FFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
/* Surlignage Jaune */
.text-highlight-yellow {
  color: #FACC15;
  text-decoration: underline;
  text-decoration-color: rgba(250, 204, 21, 0.5);
  text-underline-offset: 6px;
}

/* 3. Bouton "Glow" (Brillant) */
.btn-glow {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 14px 32px; /* Plus grand */
  font-size: 1.1rem;
}
.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.4);
}
.arrow { margin-left: 8px; transition: 0.2s; }
.btn-glow:hover .arrow { margin-left: 12px; }

/* 4. Liste Avantages (Grille moderne) */
.hero-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
  max-width: 500px;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #CBD5E1;
  font-weight: 500;
}
.icon-box {
  width: 32px;
  height: 32px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid #334155;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* 5. Image Hero avec Lueur Arrière */
.hero-image {
  position: relative;
  z-index: 1;
}
.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.15) 0%, transparent 70%);
  z-index: -1;
  filter: blur(40px);
}
.hero-img-main {
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.hero-image:hover .hero-img-main {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-meta-grid { grid-template-columns: 1fr; }
  .hero-img-main { transform: none; }
}

    .sales-page-content { max-width: 800px; margin: 0 auto; }
    
    /* Liste des 11 Packs */
    .pack-list {
      display: grid;
      gap: 16px;
      margin: 40px 0;
      text-align: left;
    }
    .pack-item {
      background: rgba(30, 41, 59, 0.5);
      border: 1px solid #334155;
      padding: 16px 20px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 15px;
      transition: transform 0.2s;
    }
    .pack-item:hover {
      border-color: #FACC15;
      transform: translateX(5px);
    }
    .pack-icon { font-size: 1.5rem; }
    .pack-text strong { color: #fff; display: block; margin-bottom: 4px; }
    .pack-text span { color: #94a3b8; font-size: 0.9rem; }

    /* Boite de Prix */
    .price-box {
      background: linear-gradient(135deg, #451a03 0%, #78350f 100%);
      border: 2px solid #FACC15;
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      margin: 60px 0;
      box-shadow: 0 20px 50px rgba(250, 204, 21, 0.15);
    }
    .big-price { font-size: 4rem; font-weight: 800; color: #FACC15; line-height: 1; margin: 10px 0; }
    .slashed-price { text-decoration: line-through; color: #cbd5e1; font-size: 1.5rem; opacity: 0.7; }
    
    /* Warning Box */
    .warning-box {
    background: rgb(234 179 10);
    border: 1px solid #facc15;
    color: #ff0000;
    padding: 25px;
    border-radius: 13px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 33px;
    FONT-SIZE: 20PX;
    }

/* --- POPUP STYLES --- */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85); /* Fond sombre transparent */
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: none; /* Caché par défaut */
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.popup-overlay.active {
  display: flex;
  opacity: 1;
}

.popup-content {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  border: 2px solid #FACC15; /* Bordure dorée */
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 50px rgba(250, 204, 21, 0.2);
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-overlay.active .popup-content {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
}
.popup-close:hover { color: #fff; }

.popup-badge {
  background: #FACC15;
  color: #000;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 15px;
}

.popup-title {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

.popup-text {
  color: #cbd5e1;
  margin-bottom: 25px;
  font-size: 1rem;
}

.popup-btn {
  background: #FACC15;
  color: #000;
  font-weight: 800;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: block;
  width: 100%;
  font-size: 1.1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.popup-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.4);
}

.popup-sub {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 15px;
}
/* ===========================
   CONTACT PAGE
=========================== */

.contact-hero {
  text-align: center;
  padding: 60px 0 30px;
}

.contact-hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  color: #e2e8f0;
  margin-bottom: 15px;
}

.contact-hero .text-gradient-gold {
  background: linear-gradient(90deg,#facc15,#f97316);
  -webkit-background-clip: text;
  color: transparent;
}

.contact-hero .hero-sub {
  max-width: 680px;
  margin: 0 auto;
  color: #94a3b8;
  font-size: 1.05rem;
}

/* Grille principale */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: flex-start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Cartes d’info (gauche) */

.info-card {
  background: #020617;
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid #1e293b;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-card i {
  font-size: 1.4rem;
  color: #facc15;
  margin-top: 4px;
}

.info-card h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: #e5e7eb;
}

.info-card p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.95rem;
}

/* Formulaire (droite) */

.contact-form-wrapper {
  width: 100%;
}

.contact-form-card {
  background: #020617;
  border-radius: 16px;
  padding: 24px 22px;
  border: 1px solid #1e293b;
  box-shadow: 0 18px 45px rgba(15,23,42,0.8);
}

.contact-form-card h3 {
  margin: 0 0 18px;
  font-size: 1.3rem;
  color: #e5e7eb;
}

/* Champs */

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #1e293b;
  padding: 10px 12px;
  background: #020617;
  color: #e5e7eb;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #facc15;
  box-shadow: 0 0 0 1px rgba(250,204,21,0.4);
}

/* Select */

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), 
                    linear-gradient(135deg, #64748b 50%, transparent 50%);
  background-position: calc(100% - 18px) 15px, calc(100% - 13px) 15px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* Textarea */

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

/* reCAPTCHA wrapper */

.captcha-wrapper {
  margin: 16px 0 10px;
}

/* Feedback message */

.form-feedback {
  display: none;
  margin-top: 10px;
  font-size: 0.9rem;
  padding: 8px 10px;
  border-radius: 8px;
}

.feedback-error {
  display: block;
  background: rgba(239,68,68,0.1);
  border: 1px solid #ef4444;
  color: #fecaca;
}

/* Popup succès */

.popup-overlay-success {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box-success {
  background: #020617;
  border-radius: 18px;
  padding: 26px 24px 20px;
  border: 1px solid #facc15;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 22px 60px rgba(0,0,0,0.8);
  position: relative;
}

.popup-close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 1.4rem;
  color: #64748b;
  cursor: pointer;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-hero h1 {
    font-size: 2.1rem;
  }
  .contact-form-card {
    padding: 20px 16px;
  }
}
/* Desktop: menu visible */
.nav-links {
  display: flex;
  gap: 1.5rem;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;           /* hauteur de la navbar */
    right: 0;
    left: 0;
    background: #020617;
    padding: 1rem 1.5rem;
    border-top: 1px solid #1e293b;
  }
  .nav-links.nav-open {
    display: flex;
  }
}
footer {
  border-top: 1px solid #1e293b;
  padding: 24px 0;
  background: #020617;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 36px;
  width: auto;
}

.footer-brand {
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 2px;
}

.footer-sub {
  color: #94a3b8;
  font-size: 0.85rem;
}

.footer-right {
  text-align: right;
}

.footer-links {
  margin-top: 6px;
}

.footer-links a {
  color: #64748b;
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: #facc15;
}

.footer-links span {
  margin: 0 6px;
}

@media (max-width: 640px) {
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-right {
    text-align: left;
  }
}
/* Desktop */
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-container {
    position: relative;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;            /* hauteur de la navbar */
    right: 0;
    left: 0;
    background: #020617;
    padding: 1rem 1.5rem;
    border-top: 1px solid #1e293b;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
  }
}
/* Ajustement Footer Gauche */
.footer-left {
  display: flex;
  flex-direction: column; /* Logo au-dessus, texte en dessous */
  align-items: flex-start; /* Calé à gauche */
  max-width: 300px; /* Limite la largeur du texte pour pas qu'il s'étale trop */
}

/* Nouveau style pour le logo plus grand */
.footer-logo-large {
  height: 50px; /* Ajuste selon ton logo (au lieu de 36px) */
  width: auto;
  display: block;
  margin-bottom: 5px; /* Petit espace avant le texte */
}

/* Le texte de sous-titre */
.footer-sub {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.4;
}
