/* --- 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: 20px 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: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px; /* Cartes arrondies */
  margin-bottom: 16px; /* Espacement entre les questions */
  transition: all 0.3s ease;
  overflow: hidden;
}
/* 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: 60px 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;
}
/* Classe spÃ©ciale pour centrer le Hero Contact */
.hero-center {
    display: flex;
    flex-direction: column; /* Empile le titre et le texte */
    align-items: center;    /* Centre les blocs horizontalement */
    justify-content: center;/* Centre verticalement */
    text-align: center;     /* Centre le texte Ã  l'intÃ©rieur */
    width: 100%;
    max-width: 800px;       /* EmpÃªche le texte de s'Ã©taler trop */
    margin: 0 auto;         /* Centre le bloc lui-mÃªme dans la page */
    padding-top: 60px;      /* Espace en haut */
    padding-bottom: 40px;   /* Espace en bas */
}

.hero-center h1 {
    margin-bottom: 20px;    /* Espace sous le titre */
}
/* === PAGE CONTACT & SUPPORT === */

/* Hero CentrÃ© SpÃ©cifique */
.contact-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero .hero-sub {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Grille de mise en page (Gauche: Info, Droite: Form) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 1/3 pour infos, 2/3 pour form */
    gap: 40px;
    margin-bottom: 60px;
}

/* Responsive : Mobile (1 colonne) */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Colonne Infos (Gauche) */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #1E293B; /* Couleur carte sombre */
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #FACC15; /* Jaune au survol */
}

.info-card i {
    font-size: 2rem;
    color: #FACC15;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-card p {
    color: #94a3b8;
    margin: 0;
}

/* Colonne Formulaire (Droite) */
.contact-form-card {
    background: #1E293B;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 40px;
}

.contact-form-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: #cbd5e1;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px;
    background: #0F172A; /* Fond input trÃ¨s sombre */
    border: 1px solid #334155;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: #FACC15;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.captcha-wrapper {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

/* Messages d'erreur/succÃ¨s du formulaire */
.form-feedback {
    display: none;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}

.feedback-error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
}

/* Popup Success */
.popup-overlay-success {
    display: none; /* CachÃ© par dÃ©faut */
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    align-items: center; 
    justify-content: center;
}

.popup-box-success {
    background: #1E293B;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #FACC15;
    text-align: center;
    max-width: 400px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s;
}
.popup-close-btn:hover { color: #FACC15; }
/* === CORRECTION NAVBAR MOBILE === */

@media (max-width: 768px) {
    
    /* 1. Conteneur principal de la navbar */
    .navbar .container {
        display: flex;
        justify-content: space-between; /* Logo Ã  gauche, Burger Ã  droite */
        align-items: center;
        width: 100%;
        padding: 15px 20px; /* Un peu d'espace sur les cÃ´tÃ©s */
    }

    /* 2. Logo */
    .nav-logo {
        font-size: 1.5rem; /* Taille adaptÃ©e mobile */
        z-index: 1001; /* Toujours au-dessus du menu ouvert */
    }

    /* 3. Bouton Burger (Les 3 traits) */
    .mobile-menu-btn {
        display: block; /* S'assurer qu'il est visible */
        font-size: 1.8rem;
        color: #fff;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
        padding: 5px; /* Zone de clic plus large */
    }

    /* 4. Le Menu (Li) cachÃ© par dÃ©faut */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; /* Prend tout l'Ã©cran */
        background-color: #020617; /* Fond noir profond */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(100%); /* CachÃ© Ã  droite */
        transition: transform 0.3s ease-in-out;
        z-index: 1000; /* Juste en dessous du logo/burger */
    }

    /* Quand le menu est ouvert (via JS) */
    .nav-links.active {
        transform: translateX(0); /* On le ramÃ¨ne */
    }

    /* Style des liens dans le menu mobile */
    .nav-links li a {
        font-size: 1.5rem;
        color: #fff;
    }
    
    /* Bouton Langue Mobile */
    .lang-switch {
        margin-top: 20px;
    }
}
/* === NAVBAR STYLES (Clean & Responsive) === */

.navbar {
    background-color: #020617; /* Fond noir */
    border-bottom: 1px solid #1E293B;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}
.logo-icon {
    color: #FACC15;
    font-size: 1.5rem;
}
.logo-text {
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
}

/* Menu Desktop */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-link:hover {
    color: #FACC15;
}

/* Lang Switch */
.lang-switch {
    display: flex;
    align-items: center;
    border-left: 1px solid #334155;
    padding-left: 20px;
    gap: 8px;
}
.lang-switch a {
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
.lang-switch a.active {
    color: #FACC15;
}
.lang-switch .separator {
    color: #334155;
}

/* CTA Button Desktop */
.nav-cta {
    color: #000 !important;
    font-weight: 700;
}

/* Mobile Menu Button (Hidden on Desktop) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

/* === RESPONSIVE MOBILE (Max 768px) === */
@media (max-width: 768px) {
    
    .mobile-menu-btn {
        display: block; /* Afficher le burger */
    }

    .nav-menu {
        position: fixed;
        top: 70px; /* Hauteur approx de la navbar */
        left: 0;
        width: 100%;
        background-color: #020617;
        border-bottom: 1px solid #1E293B;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 20px;
        
        /* Animation Slide */
        transform: translateY(-150%); /* CachÃ© en haut */
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0); /* Visible */
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    /* Ajustements Mobile */
    .lang-switch {
        border-left: none;
        padding-left: 0;
        margin-top: 10px;
    }
    
    .nav-cta {
        width: 80%;
        text-align: center;
    }
}
/* === EFFET HOVER SUR LES CARTES SERVICES === */

.product-card {
    /* ... tes styles actuels ... */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Animation fluide */
    border: 1px solid #1E293B; /* Bordure discrÃ¨te par dÃ©faut */
}

/* L'effet au survol */
.product-card:hover {
    transform: translateY(-8px); /* La carte monte de 8px */
    border-color: #FACC15; /* La bordure devient jaune */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(250, 204, 21, 0.2); /* Ombre + Lueur jaune */
}

/* Optionnel : Effet sur l'image aussi */
.product-card:hover .card-image-wrapper img {
    transform: scale(1.05); /* Zoom lÃ©ger sur l'image */
}

.card-image-wrapper {
    overflow: hidden; /* Important pour que le zoom ne dÃ©passe pas */
}

.card-image-wrapper img {
    transition: transform 0.5s ease; /* Animation plus lente pour l'image */
}

.error-container {
        min-height: 80vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: radial-gradient(circle at center, #1e293b 0%, #020617 100%);
        padding: 20px;
    }
    .glitch-404 {
        font-size: 8rem;
        font-weight: 900;
        color: #FACC15;
        text-shadow: 2px 2px 0px #fff;
        position: relative;
    }
    .error-msg {
        font-size: 1.5rem;
        color: #cbd5e1;
        margin-bottom: 30px;
        max-width: 600px;
    }
    /* --- BUNDLE MICROSTRA STYLE --- */

.bundle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: #0f172a; /* Fond sombre uni propre */
    border: 1px solid #1e293b;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow: hidden; /* Pour que rien ne dÃ©passe */
}

/* Colonne Texte */
.bundle-content-side {
    flex: 1; /* Prend la moitiÃ© de la place */
    max-width: 550px;
}

.bundle-badge {
    background: rgba(250, 204, 21, 0.1);
    color: #FACC15;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(250, 204, 21, 0.2);
}

.bundle-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bundle-price-box {
    margin-bottom: 20px;
}
.price-label {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #FACC15; /* Jaune Or */
}

.bundle-description {
    color: #cbd5e1;
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.bundle-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.bundle-features li {
    margin-bottom: 12px;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

/* Bouton Large */
.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
}

/* Colonne Image */
.bundle-image-side {
    flex: 1; /* Prend l'autre moitiÃ© */
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Ombre portÃ©e sous l'image */
    transform: perspective(1000px) rotateY(-5deg); /* Petit effet 3D stylÃ© optionnel */
    transition: transform 0.3s ease;
}
.product-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 991px) {
    .bundle-container {
        flex-direction: column-reverse; /* Image au dessus ou texte au dessus ? Ici Texte d'abord */
        padding: 30px;
        gap: 30px;
        text-align: center;
    }
    
    .bundle-features li {
        justify-content: center; /* Centrer la liste sur mobile */
    }
    
    .bundle-image-side {
        width: 100%;
    }
    
    .product-image {
        transform: none; /* Pas de 3D sur mobile */
        max-width: 80%; /* Image pas trop gÃ©ante */
    }
    
    .bundle-content-side {
        max-width: 100%;
    }
}

/* --- BUNDLE MICROSTRA STYLE (FINAL) --- */

.bundle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: #0f172a; /* Fond sombre */
    
    /* MODIF 1: BORDER JAUNE FIN ET Ã‰LÃ‰GANT */
    border: 1px solid rgba(250, 204, 21, 0.5); /* Bordure jaune semi-transparente */
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.15); /* LÃ©gÃ¨re lueur jaune autour */
    
    border-radius: 20px;
    padding: 50px;
    overflow: hidden;
    position: relative;
    
    /* MODIF 2: MARGES PLUS SERRÃ‰ES POUR LA FAQ EN DESSOUS */
    margin-bottom: 50px !important; /* Force moins de marge en bas */
}

/* On force aussi la section FAQ Ã  remonter un peu si besoin */
.faq-section {
    padding-top: 20px !important; /* RÃ©duit l'espace au dessus du titre FAQ */
}


/* ... (Le reste du CSS reste identique) ... */
.bundle-content-side {
    flex: 1;
    max-width: 550px;
}
/* ... etc ... */

/* 1. RÃ©duire la marge sous le Bundle */
#bundle {
    margin-bottom: 30px !important; /* RÃ©duit l'espace SOUS le bloc offre */
    padding-bottom: 0 !important;
}

/* 2. RÃ©duire la marge au dessus de la FAQ */
#faq {
    padding-top: 20px !important;   /* RÃ©duit l'espace AU DESSUS du titre FAQ */
    margin-top: 0 !important;
}

/* 3. Ajouter la bordure jaune au Bundle (comme demandÃ©) */
.bundle-container {
    /* ... tes styles existants ... */
    
    border: 1px solid rgba(250, 204, 21, 0.4); /* Bordure Jaune */
    box-shadow: 0 0 25px rgba(250, 204, 21, 0.1); /* Glow Jaune lÃ©ger */
}

/* --- CORRECTIFS FINAUX (Marges & Bordures) --- */

/* 1. Cadre Jaune autour de l'offre Pack */
.bundle-container {
    border: 1px solid rgba(250, 204, 21, 0.5) !important; /* Force la bordure jaune */
    box-shadow: 0 0 25px rgba(250, 204, 21, 0.15) !important; /* Force la lueur */
}

/* 2. RÃ©duire l'espace entre le Pack et la FAQ */
#bundle {
    margin-bottom: 20px !important; /* RÃ©duit l'espace sous le pack */
    padding-bottom: 0 !important;
}

#faq {
    padding-top: 20px !important; /* RÃ©duit l'espace au-dessus de la FAQ */
    margin-top: 0 !important;
}

/* Force la section FAQ Ã  Ãªtre plus proche si elle utilise la classe .section */
.section.faq-section {
    padding-top: 20px !important;
}
.banner {
    background: #facc15;
    color: #000;
    text-align: center;
    padding: 35px 20PX;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 101;
}

/* =========================================
   NOUVEAU FOOTER 3 COLONNES
   ========================================= */
.footer {
    background-color: #020617; /* Fond trÃ¨s sombre */
    border-top: 1px solid #1e293b;
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes Ã©gales */
    gap: 40px;
}

.footer-column h3 {
    color: #facc15; /* Jaune */
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #facc15;
    padding-left: 5px; /* Petit effet de glissement au survol */
}

.footer-contact li {
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #020617;
    background: #cbd5e1;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #facc15;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    color: #64748b;
    font-size: 0.85rem;
}

/* Responsive Mobile : 1 seule colonne */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Colonne CONTACT (Milieu) - Bloc centrÃ©, mais texte alignÃ© Ã  gauche */
.footer-column:nth-child(2) {
    align-items: center; /* Centre le bloc globalement */
    display: flex;
    flex-direction: column;
}

/* Le conteneur de la liste (<ul>) doit Ãªtre "compact" pour rester alignÃ© */
.footer-column:nth-child(2) .footer-contact {
    text-align: left; /* Texte alignÃ© Ã  gauche (sens de lecture FR/EN) */
    display: inline-block; /* Le bloc prend juste la largeur nÃ©cessaire */
    width: fit-content;    /* S'adapte au contenu */
    margin: 0 auto;        /* Centre le bloc horizontalement */
}

.footer-column:nth-child(2) .footer-contact li {
    justify-content: flex-start; /* Aligne le contenu (icÃ´ne + texte) au dÃ©but (gauche) */
    display: flex; /* Assure que l'icÃ´ne et le texte sont sur la mÃªme ligne */
    align-items: center; /* Centre verticalement l'icÃ´ne par rapport au texte */
    gap: 10px; /* Espace propre entre icÃ´ne et texte */
}
/* =========================================
   PORTFOLIO & REVIEWS (DESIGN UNIFIÃ‰)
   ========================================= */

/* Espacements gÃ©nÃ©raux */
.portfolio-section {
    padding: 80px 20px;
    background-color: #0f172a; /* MÃªme fond sombre */
}

/* Grille (si grid-3 n'existe pas dÃ©jÃ ) */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Style des Cartes (HÃ©rite de .service-card mais renforcÃ©) */
.project-card {
    background: #0f172a;
    border: 1px solid #facc15;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
}

/* Effet Hover (Bordure Jaune + LevÃ©e) */
.project-card:hover {
    transform: translateY(-5px);
    border-color: #facc15; /* Jaune CodeCanyon */
    box-shadow: 0 10px 25px -5px rgba(250, 204, 21, 0.15);
}

/* IcÃ´nes */
.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.icon-yellow { background: rgba(250, 204, 21, 0.1); color: #facc15; }
.icon-blue   { background: rgba(56, 189, 248, 0.1); color: #38bdf8; }
.icon-green  { background: rgba(34, 197, 94, 0.1);  color: #22c55e; }

/* Typo dans les cartes */
.project-card h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.project-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Pousse les avis vers le bas */
}

/* Section Avis Client (Interne Ã  la carte) */
.client-review {
    border-top: 1px solid #334155;
    padding-top: 15px;
    margin-top: auto; /* Colle au bas de la carte */
}
.stars {
    color: #facc15;
    font-size: 0.9rem;
    margin-bottom: 5px;
    letter-spacing: 2px;
}
.review-text {
    color: #cbd5e1 !important; /* Force la couleur plus claire */
    font-style: italic;
    font-size: 0.9rem !important;
    margin-bottom: 5px !important;
}
.review-author {
    display: block;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 600;
}

/* CTA Final (Le bouton jaune) */
.portfolio-cta {
    text-align: center;
    margin-top: 60px;
}
.cta-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.btn-glow {
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0% { box-shadow: 0 0 10px rgba(250, 204, 21, 0.4); }
    50% { box-shadow: 0 0 20px rgba(250, 204, 21, 0.7); }
    100% { box-shadow: 0 0 10px rgba(250, 204, 21, 0.4); }
}
.product-body ul { 
  list-style: none; 
  padding-left: 0; 
}

.product-body li {
  padding-left: 22px;
  position: relative;
}

.product-body li::before {
  content: "✓";           /* icône propre */
  color: var(--accent-gold);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}
/* =========================
   FOOTER - MOBILE FIX
   ========================= */
@media (max-width: 768px) {

  .footer {
    padding: 40px 0 15px;
  }

  .footer-container{
    grid-template-columns: 1fr !important; /* 3 colonnes -> 1 colonne */
    gap: 28px;
    text-align: center;
  }

  .footer-column{
    align-items: center;
  }

  /* Colonne contact: alignement propre même si li est en flex */
  .footer-contact{
    width: fit-content;
    margin: 0 auto;
    padding: 0;
  }
  .footer-contact li{
    justify-content: center;
  }

  /* Réseaux: éviter le débordement (7 liens) */
  .footer-social{
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 par ligne */
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
  }

  .footer-social a{
    width: 100%;
    justify-content: center;
    white-space: nowrap;
  }

  /* Liens utiles */
  .footer-links{
    padding: 0;
    margin: 0;
  }

  .footer-bottom{
    margin-top: 25px;
    padding-top: 15px;
  }
}

/* =========================
   GLOBAL PADDING MOBILE
   ========================= */
@media (max-width: 768px){

  /* marge globale des contenus */
  .container{
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  /* sections pleine largeur qui ont du padding fixe (ex: portfolio-section) */
  .portfolio-section{
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  /* si tu as d'autres sections full width, ajoute-les ici */
  .section{
    padding-left: 0 !important;  /* la section garde son padding vertical seulement */
    padding-right: 0 !important;
  }
}

