/* Houda Salam Travel — site vitrine
 * Stack: pure CSS, single file. Pas de framework.
 * Design provided by the brand: green (#1a5c3a) + gold (#c8973a) + cream (#faf8f4).
 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #1a5c3a;
  --green-light: #2d7a52;
  --green-pale:  #e8f3ec;
  --gold:        #c8973a;
  --gold-light:  #e8b84b;
  --cream:       #faf8f4;
  --dark:        #111a14;
  --gray:        #6b7b70;
  --white:       #ffffff;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', sans-serif;
  --radius:      18px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--dark); overflow-x: hidden; }

/* ── TOP BAR ── */
.topbar {
  background: var(--dark); color: #ccc; font-size: 0.78rem;
  padding: 10px 24px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.topbar a { color: #ccc; text-decoration: none; }
.topbar-socials { display: flex; gap: 10px; }
.topbar-socials a {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; transition: background 0.2s; text-decoration: none; color: #ccc;
}
.topbar-socials a:hover { background: var(--gold); color: var(--dark); }
/* Icônes sociales SVG inline (héritent de la couleur du lien via currentColor) */
.social-ico { width: 14px; height: 14px; display: block; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,244,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,92,58,0.1);
  padding: 14px 24px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; text-decoration: none; cursor: pointer; }
.logo-img {
  height: 48px; width: auto; display: block;
  /* Mix-blend retire le fond crème du JPG pour qu'il se fonde dans le navbar
   * cream. Si la couleur ne te plaît pas, on peut passer à un PNG avec
   * vraie transparence. */
  mix-blend-mode: multiply;
}
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; font-size: 0.87rem; font-weight: 500; color: var(--dark);
  transition: color 0.2s; cursor: pointer; background: none; border: none; font-family: var(--font-body);
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-cta {
  background: var(--green); color: var(--white) !important;
  padding: 9px 20px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em; transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--green-light) !important; transform: translateY(-1px); }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; display: block; }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--white); border-bottom: 1px solid rgba(26,92,58,0.1);
  padding: 8px 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 24px; font-size: 0.95rem; font-weight: 500; color: var(--dark);
  text-decoration: none; border-bottom: 1px solid rgba(0,0,0,0.05); cursor: pointer;
  background: none; border: none; font-family: var(--font-body); text-align: left;
}
.mobile-menu a:hover { color: var(--green); background: var(--green-pale); }

/* ── SHARED ── */
section { padding: 80px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-tag { font-size: 0.73rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 700; line-height: 1.15; color: var(--dark); margin-bottom: 16px; }
.section-sub { color: var(--gray); font-size: 0.95rem; line-height: 1.75; max-width: 560px; }

.btn-primary {
  background: var(--gold); color: var(--dark); padding: 13px 30px; border-radius: 50px;
  font-weight: 600; font-size: 0.88rem; text-decoration: none; letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s; display: inline-block;
  box-shadow: 0 4px 20px rgba(200,151,58,0.3); cursor: pointer; border: none; font-family: var(--font-body);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-green {
  background: var(--green); color: var(--white); padding: 13px 30px; border-radius: 50px;
  font-weight: 600; font-size: 0.88rem; text-decoration: none; letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s; display: inline-block; cursor: pointer; border: none; font-family: var(--font-body);
}
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-outline-green {
  border: 2px solid var(--green); color: var(--green); padding: 11px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.88rem; text-decoration: none;
  transition: background 0.2s, color 0.2s; display: inline-block; cursor: pointer; background: none; font-family: var(--font-body);
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }

/* ══════════════════════════════════ PAGE: ACCUEIL ══════════════════════════════════ */
.hero {
  min-height: 92vh;
  background:
    /* Voile sombre pour lisibilité du texte (assombrit le coucher de soleil) */
    linear-gradient(180deg, rgba(10,22,14,0.55) 0%, rgba(10,22,14,0.4) 40%, rgba(10,22,14,0.85) 100%),
    /* Photo Masjid al-Nabawi au coucher du soleil */
    url('/assets/site/images/prophet01.webp') center 60% / cover no-repeat,
    /* Fallback : si la photo ne charge pas, gradient vert */
    linear-gradient(180deg, #0a160e 0%, #122620 60%, #0a160e 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  /* Motif géométrique islamique discret (étoile à 8 branches répétée).
   * Pure CSS, pas d'asset externe. */
  background-image: radial-gradient(circle at 1px 1px, rgba(200,151,58,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-badge {
  display: inline-block; background: rgba(200,151,58,0.18); border: 1px solid rgba(200,151,58,0.5);
  color: var(--gold-light); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; padding: 7px 20px; border-radius: 50px; margin-bottom: 26px;
  backdrop-filter: blur(6px); animation: fadeUp 0.8s ease both;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 700;
  color: var(--white); line-height: 1.1; max-width: 780px; margin-bottom: 20px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p {
  font-size: 1rem; color: rgba(255,255,255,0.82); max-width: 500px;
  line-height: 1.7; margin-bottom: 38px; animation: fadeUp 0.8s 0.3s ease both;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.8s 0.45s ease both; }
.btn-hero-outline {
  border: 2px solid rgba(255,255,255,0.5); color: var(--white); padding: 12px 28px;
  border-radius: 50px; font-size: 0.88rem; font-weight: 500; text-decoration: none;
  backdrop-filter: blur(6px); transition: border-color 0.2s, background 0.2s; cursor: pointer; background: transparent; font-family: var(--font-body);
}
.btn-hero-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.hero-scroll {
  position: absolute; bottom: 30px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  animation: fadeUp 0.8s 0.7s ease both;
}
.hero-scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent); animation: scrollPulse 2s infinite; }

.stats-strip { background: var(--green); display: grid; grid-template-columns: repeat(3,1fr); text-align: center; }
.stat-item { padding: 28px 20px; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; color: var(--gold-light); line-height: 1; display: block; }
.stat-label { font-size: 0.73rem; color: rgba(255,255,255,0.7); letter-spacing: 0.05em; margin-top: 4px; display: block; }

/* ── Pourquoi nous choisir (2 colonnes vert + gris) ── */
/* Background : pale green tint pour que ça se distingue clairement de la
 * section "voyages" (cream) qui suit directement en dessous. */
.why-us-wrap { background: var(--green-pale); padding: 60px 24px; }
.why-us {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.why-us-left {
  background: var(--green); padding: 60px 50px;
  display: flex; flex-direction: column; justify-content: center;
}
.why-us-left .section-tag { color: var(--gold-light); margin-bottom: 18px; }
.why-us-left h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; line-height: 1.15; color: var(--white); margin-bottom: 22px;
}
.why-us-left p { color: rgba(255,255,255,0.78); font-size: 0.93rem; line-height: 1.75; margin-bottom: 36px; }
.why-us-polaroid {
  display: inline-block; background: var(--white); padding: 12px 12px 40px 12px;
  border-radius: 4px; box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  transform: rotate(-2deg); transition: transform 0.3s ease;
  max-width: 340px; align-self: flex-start;
}
.why-us-polaroid:hover { transform: rotate(0) scale(1.02); }
.why-us-polaroid img,
.why-us-polaroid .placeholder {
  display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 2px;
}
.why-us-polaroid .placeholder {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(200,151,58,0.25) 0%, transparent 60%),
    linear-gradient(135deg, var(--green) 0%, var(--dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: rgba(232,184,75,0.6);
}

.why-us-right {
  background: #ededeb; padding: 60px 50px 60px 90px; position: relative;
}
.why-us-timeline { display: flex; flex-direction: column; gap: 36px; position: relative; }
/* Ligne pointillée verticale entre les icônes */
.why-us-timeline::before {
  content: ''; position: absolute;
  left: 35px; top: 70px; bottom: 70px; width: 2px;
  background: repeating-linear-gradient(to bottom, var(--gold) 0 5px, transparent 5px 11px);
  z-index: 0;
}
.why-us-item { display: grid; grid-template-columns: 70px 1fr; gap: 22px; align-items: start; }
.why-us-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; flex-shrink: 0; z-index: 1; position: relative;
  box-shadow: 0 8px 24px rgba(200,151,58,0.35);
}
.why-us-item h3 {
  font-family: var(--font-body); font-size: 1.15rem; font-weight: 700;
  color: var(--dark); margin: 6px 0 8px 0;
}
.why-us-item p { color: var(--gray); font-size: 0.86rem; line-height: 1.65; }

@media(max-width: 900px) {
  .why-us { grid-template-columns: 1fr; }
  .why-us-right { padding: 50px 30px 50px 30px; }
  .why-us-left { padding: 50px 30px; }
}
@media(max-width: 640px) {
  .why-us-polaroid { max-width: 100%; transform: rotate(0); align-self: stretch; }
}

.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; border-radius: var(--radius); aspect-ratio: 4/5; display: block;
  object-fit: cover; object-position: center;
}
/* Fallback : si <div class="about-img"> est rendu à la place de <img>,
 * on garde l'aspect décoratif vert pour éviter une boîte vide. */
div.about-img {
  background:
    radial-gradient(ellipse at 50% 70%, rgba(200,151,58,0.22) 0%, transparent 60%),
    linear-gradient(135deg, #1a5c3a 0%, #0d3322 100%);
  position: relative; overflow: hidden;
}
div.about-img::after {
  content: '🕌'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; opacity: 0.35;
}
.about-float-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--gold); border-radius: var(--radius); padding: 20px 24px;
  text-align: center; box-shadow: 0 8px 36px rgba(200,151,58,0.4);
}
.about-float-badge strong { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1; display: block; }
.about-float-badge span { font-size: 0.7rem; color: rgba(255,255,255,0.85); letter-spacing: 0.06em; display: block; margin-top: 4px; }
.features-list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon { width: 42px; height: 42px; flex-shrink: 0; background: var(--green-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.feature-item h4 { font-size: 0.93rem; font-weight: 600; margin-bottom: 3px; }
.feature-item p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }

.packages-section { background: var(--cream); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 22px; margin-top: 48px; }
.pkg-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 18px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; position: relative; }
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 12px 38px rgba(0,0,0,0.12); }
.pkg-card.featured { border: 2px solid var(--gold); }
.featured-pill { position: absolute; top: 14px; right: 14px; background: var(--gold); color: var(--dark); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; }
.pkg-header { background: var(--green); padding: 26px 26px 22px; text-align: center; }
.pkg-card.featured .pkg-header { background: var(--dark); }
.pkg-month { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; display: block; }
.pkg-name { font-family: var(--font-display); font-size: 1.65rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.pkg-desc { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.pkg-price-bar { background: rgba(0,0,0,0.22); margin: 18px 0 0; border-radius: 50px; padding: 9px 18px; display: inline-block; }
.pkg-price { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--white); }
.pkg-price-unit { font-size: 0.76rem; color: rgba(255,255,255,0.65); margin-left: 4px; }
.pkg-body { padding: 26px; flex: 1; }
.pkg-includes { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.pkg-includes li { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; }
.pkg-includes li::before { content: '✓'; width: 20px; height: 20px; flex-shrink: 0; background: var(--green-pale); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 700; }
.pkg-footer { padding: 0 26px 26px; }
.btn-book-pkg {
  display: block; text-align: center; background: var(--green); color: var(--white);
  padding: 13px; border-radius: 50px; font-weight: 600; font-size: 0.83rem;
  letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-book-pkg:hover { background: var(--green-light); transform: translateY(-1px); }
.pkg-card.featured .btn-book-pkg { background: var(--gold); color: var(--dark); }
.pkg-card.featured .btn-book-pkg:hover { background: var(--gold-light); }

.how-section { background: var(--dark); }
.how-section .section-tag { color: var(--gold-light); }
.how-section .section-title { color: var(--white); }
.how-section .section-sub { color: rgba(255,255,255,0.55); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 56px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 35px; left: 10%; right: 10%; height: 1px; background: rgba(255,255,255,0.08); }
.step-item { text-align: center; padding: 0 20px 36px; position: relative; z-index: 1; }
.step-circle { width: 70px; height: 70px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--gold-light); margin: 0 auto 18px; border: 3px solid rgba(200,151,58,0.25); }
.step-item h3 { color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.step-item p { color: rgba(255,255,255,0.48); font-size: 0.81rem; line-height: 1.6; }

.testimonials-section { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; margin-top: 46px; }
.testi-card { background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: 0 2px 14px rgba(0,0,0,0.05); transition: transform 0.3s; }
.testi-card:hover { transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.15rem; color: var(--green); font-weight: 700; }
.testi-name { font-weight: 600; font-size: 0.87rem; }
.testi-loc { font-size: 0.73rem; color: var(--gray); }

.partners-bar { background: var(--white); padding: 50px 24px; }
.partners-label { text-align: center; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 32px; }
.partners-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 28px 52px; max-width: 1000px; margin: 0 auto; }
.partner-logo {
  height: 34px; width: auto; max-width: 160px; display: block;
  /* Grayscale + assombrissement : tous les logos ramenés à un gris sombre
   * homogène (les marques claires/dorées restent lisibles), effet "marques
   * mentionnées" sobre. Couleur au hover pour interactivité. */
  filter: grayscale(100%) brightness(0.45); opacity: 0.7;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.partner-logo:hover { filter: none; opacity: 1; }
/* Calage optique par logo : ratios et densités d'encre très différents
 * (logos sur 2 lignes plus hauts, wordmarks gras d'1 ligne plus bas). */
.partner-logo.lg-saudia    { height: 40px; }
.partner-logo.lg-turkish   { height: 36px; }
.partner-logo.lg-rj        { height: 40px; }
.partner-logo.lg-kuwait    { height: 42px; }
.partner-logo.lg-qatar     { height: 32px; }
.partner-logo.lg-emirates  { height: 36px; }
.partner-logo.lg-egyptair  { height: 22px; }
.partner-logo.lg-marriott  { height: 28px; }
.partner-logo.lg-hilton    { height: 22px; }
.partner-logo.lg-accor     { height: 40px; }
.partner-logo.lg-fairmont  { height: 34px; }
/* 2e rangée (hôtels) : léger espacement + séparateur discret. */
.partners-logos--hotels { margin-top: 30px; padding-top: 30px; border-top: 1px solid rgba(0,0,0,0.06); }
/* Texte fallback (si on ajoute des marques sans logo) */
.partner-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: #bbb; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.partner-name:hover { color: var(--green); }

.home-cta { background: linear-gradient(135deg, #1a5c3a 0%, #122620 50%, #0a160e 100%); padding: 90px 24px; text-align: center; }
.home-cta .section-title { color: var(--white); max-width: 560px; margin: 0 auto 14px; }
.home-cta .section-sub { color: rgba(255,255,255,0.62); margin: 0 auto 36px; }
.home-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Empty state quand aucun voyage open en BDD */
.no-trips { background: var(--white); border-radius: var(--radius); padding: 40px 28px; text-align: center; margin-top: 48px; box-shadow: 0 2px 14px rgba(0,0,0,0.04); }
.no-trips p { font-size: 0.92rem; color: var(--gray); margin-bottom: 18px; }

/* ══════════════════════════════════ PAGE: FORMULES ══════════════════════════════════ */
.formules-hero {
  background: linear-gradient(135deg, var(--green) 0%, #0d3322 100%);
  padding: 90px 24px 70px; text-align: center;
}
.formules-hero .section-tag { color: var(--gold-light); }
.formules-hero .section-title { color: var(--white); max-width: 680px; margin: 0 auto 16px; }
.formules-hero .section-sub { color: rgba(255,255,255,0.65); margin: 0 auto; }

.formules-compare { background: var(--cream); padding: 80px 24px; }
.compare-table { width: 100%; border-collapse: collapse; margin-top: 48px; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
.compare-table th { padding: 20px 16px; font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; }
.compare-table th:first-child { background: var(--cream); text-align: left; color: var(--gray); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.compare-table th.col-essentielle { background: var(--green); color: var(--white); }
.compare-table th.col-confort { background: var(--dark); color: var(--white); }
.compare-table th.col-prestige { background: #7c5c1a; color: var(--white); }
.compare-table td { padding: 14px 16px; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.86rem; text-align: center; }
.compare-table td:first-child { text-align: left; color: var(--dark); font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(0,0,0,0.015); }
.check-yes { color: var(--green); font-size: 1.1rem; }
.check-no { color: #ccc; font-size: 1.1rem; }
.price-cell { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.price-cell.gold { color: var(--gold); }
.compare-table tfoot td { background: var(--cream); padding: 20px 16px; }

.formules-details { background: var(--white); padding: 80px 24px; }
.formule-detail-card { border: 1px solid rgba(26,92,58,0.1); border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.formule-detail-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; cursor: pointer; }
.formule-detail-header h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.formule-detail-header .price-tag { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.formule-detail-body { padding: 0 28px 28px; display: none; }
.formule-detail-body.open { display: block; }
.formule-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; }
.detail-col h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.detail-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.detail-col ul li { font-size: 0.87rem; display: flex; gap: 8px; align-items: flex-start; }
.detail-col ul li::before { content: '›'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ══════════════════════════════════ PAGE: À PROPOS ══════════════════════════════════ */
.apropos-hero {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(200,151,58,0.12) 0%, transparent 55%),
    linear-gradient(135deg, #0a160e 0%, #1a5c3a 60%, #0d3322 100%);
  padding: 100px 24px; min-height: 55vh; display: flex; align-items: center;
}
.apropos-hero .section-tag { color: var(--gold-light); }
.apropos-hero .section-title { color: var(--white); max-width: 600px; }
.apropos-hero p { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.75; max-width: 520px; margin-top: 14px; }

.values-section { background: var(--white); padding: 80px 24px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 24px; margin-top: 46px; }
.value-card { background: var(--cream); border-radius: var(--radius); padding: 30px 24px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.value-icon { font-size: 2.2rem; margin-bottom: 16px; }
.value-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--green); }
.value-card p { font-size: 0.84rem; color: var(--gray); line-height: 1.65; }

.story-section { background: var(--cream); padding: 80px 24px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-img {
  width: 100%; border-radius: var(--radius); aspect-ratio: 4/3; display: block;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200,151,58,0.20) 0%, transparent 55%),
    linear-gradient(135deg, #1a5c3a 0%, #122620 100%);
  position: relative; overflow: hidden;
}
.story-img::after {
  content: '☪'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: rgba(232,184,75,0.5);
}
.story-text p { font-size: 0.93rem; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.story-text p strong { color: var(--dark); }

.certifications { background: var(--green); padding: 60px 24px; text-align: center; }
.certifications .section-tag { color: var(--gold-light); }
.certifications .section-title { color: var(--white); margin: 0 auto 14px; }
.certifications p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 36px; font-size: 0.93rem; line-height: 1.7; }
.cert-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.cert-badge { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 16px 24px; color: var(--white); font-size: 0.84rem; font-weight: 500; }

/* ══════════════════════════════════ PAGE: FAQ ══════════════════════════════════ */
.faq-hero { background: linear-gradient(135deg, #0d3322 0%, var(--green) 100%); padding: 90px 24px 70px; text-align: center; }
.faq-hero .section-tag { color: var(--gold-light); }
.faq-hero .section-title { color: var(--white); max-width: 600px; margin: 0 auto 14px; }
.faq-hero p { color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto; font-size: 0.93rem; line-height: 1.7; }

.faq-section { background: var(--white); padding: 80px 24px; }
.faq-group { margin-bottom: 40px; }
.faq-group-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--green); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--green-pale); }
.faq-item2 { border-bottom: 1px solid rgba(0,0,0,0.07); }
.faq-q2 { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; cursor: pointer; font-size: 0.93rem; font-weight: 500; gap: 12px; }
.faq-q2:hover { color: var(--green); }
.faq-icon2 { width: 22px; height: 22px; flex-shrink: 0; background: var(--green-pale); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; font-weight: 700; transition: transform 0.3s, background 0.2s; }
.faq-item2.open .faq-icon2 { transform: rotate(45deg); background: var(--green); color: var(--white); }
.faq-a2 { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; font-size: 0.87rem; color: var(--gray); line-height: 1.72; }
.faq-item2.open .faq-a2 { max-height: 400px; padding-bottom: 16px; }

.faq-still-question { background: var(--cream); padding: 70px 24px; text-align: center; }
.faq-still-question .section-title { margin-bottom: 14px; }
.faq-still-question p { color: var(--gray); max-width: 460px; margin: 0 auto 32px; font-size: 0.93rem; line-height: 1.7; }
.contact-options { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.contact-opt { display: flex; align-items: center; gap: 12px; background: var(--white); border-radius: var(--radius); padding: 18px 24px; box-shadow: 0 2px 14px rgba(0,0,0,0.06); text-decoration: none; color: var(--dark); transition: transform 0.2s, box-shadow 0.2s; }
.contact-opt:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.contact-opt-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.contact-opt-icon.green { background: var(--green-pale); }
.contact-opt-icon.wa { background: #e8f9f0; }
.contact-opt-icon.mail { background: #fef3e2; }
.contact-opt h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 2px; }
.contact-opt span { font-size: 0.77rem; color: var(--gray); }

/* ══════════════════════════════════ PAGE: CONTACT ══════════════════════════════════ */
.contact-hero {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(200,151,58,0.15) 0%, transparent 60%),
    linear-gradient(135deg, #0a160e 0%, #1a5c3a 100%);
  padding: 90px 24px 70px; text-align: center;
}
.contact-hero .section-tag { color: var(--gold-light); }
.contact-hero .section-title { color: var(--white); max-width: 560px; margin: 0 auto 14px; }
.contact-hero p { color: rgba(255,255,255,0.65); max-width: 440px; margin: 0 auto; font-size: 0.93rem; line-height: 1.7; }

.contact-main { background: var(--white); padding: 80px 24px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.contact-info > p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 28px; }
.contact-info-items { display: flex; flex-direction: column; gap: 18px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--green-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.ci-item h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 3px; }
.ci-item p { font-size: 0.83rem; color: var(--gray); line-height: 1.5; }
.ci-item a { color: var(--green); text-decoration: none; font-size: 0.83rem; }
.social-row { display: flex; gap: 10px; margin-top: 28px; }
.social-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--green-pale); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; text-decoration: none; transition: background 0.2s, color 0.2s; }
.social-btn:hover { background: var(--green); color: var(--white); }

.contact-form-box { background: var(--cream); border-radius: var(--radius); padding: 36px; }
.contact-form-box h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin-bottom: 6px; }
.contact-form-box > p { font-size: 0.84rem; color: var(--gray); margin-bottom: 24px; }
.cform { display: flex; flex-direction: column; gap: 14px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cform-input {
  width: 100%; padding: 13px 16px; background: var(--white); border: 1px solid rgba(26,92,58,0.15);
  border-radius: 10px; color: var(--dark); font-size: 0.88rem; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s;
}
.cform-input:focus { border-color: var(--green); }
.cform-input::placeholder { color: var(--gray); }
select.cform-input option { color: var(--dark); }
.cform-label { font-size: 0.78rem; font-weight: 600; color: var(--dark); margin-bottom: 5px; display: block; letter-spacing: 0.04em; }
.cform-group { display: flex; flex-direction: column; }
.btn-cform-submit { background: var(--gold); color: var(--dark); padding: 14px; border: none; border-radius: 50px; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.07em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, transform 0.2s; font-family: var(--font-body); }
.btn-cform-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.cform-flash { padding: 14px 18px; border-radius: 12px; font-size: 0.86rem; margin-bottom: 16px; }
.cform-flash.ok { background: rgba(26,92,58,0.08); color: var(--green); border: 1px solid rgba(26,92,58,0.2); }
.cform-flash.err { background: rgba(200,80,80,0.08); color: #b54343; border: 1px solid rgba(200,80,80,0.2); }

/* ══════════════════════════════════ FOOTER ══════════════════════════════════ */
footer { background: var(--dark); color: rgba(255,255,255,0.55); padding: 56px 24px 28px; }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 36px; }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; margin-top: 14px; max-width: 270px; }
.footer-logo-img {
  height: 64px; width: auto; display: block;
  background: var(--white); border-radius: 8px; padding: 6px 10px;
}
.footer-heading { font-family: var(--font-display); color: var(--white); font-size: 0.98rem; font-weight: 600; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,0.52); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; cursor: pointer; background: none; border: none; font-family: var(--font-body); text-align: left; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-row { display: flex; gap: 10px; align-items: flex-start; font-size: 0.81rem; margin-bottom: 11px; }
.footer-contact-row .ico { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.footer-bottom { max-width: 1100px; margin: 36px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.76rem; }
.footer-socials { display: flex; gap: 9px; }
.footer-socials a { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.82rem; transition: background 0.2s, color 0.2s; }
.footer-socials a:hover { background: var(--gold); color: var(--dark); }

.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 200; width: 54px; height: 54px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 18px rgba(37,211,102,0.4); text-decoration: none; }

@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes scrollPulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

@media(max-width:900px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
}
@media(max-width:640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .steps-grid { grid-template-columns: 1fr; }
  .formule-detail-grid { grid-template-columns: 1fr; }
  .cform-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.78rem; }
}
