/* BSSD — Inspiré Wanderers (tourisme) + Insurify (assurance) */
:root {
  --bg: #f4f6f8;
  --bg-white: #ffffff;
  --bg-dark: #0a1628;
  --bg-navy: #0c2d48;
  --primary: #0d5c4b;
  --primary-light: #1a7a64;
  --accent: #d4a017;
  --accent-hover: #e8b82a;
  --coral: #e85d4c;
  --text: #1a2b3c;
  --text-muted: #5c6b7a;
  --border: #dde3ea;
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 22, 40, 0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --header-h: 72px;
  --topbar-h: 40px;
  --ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 1.25rem; }

/* Topbar — Insurify */
.topbar {
  background: var(--bg-navy);
  color: rgba(255,255,255,.85);
  font-size: 0.82rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--accent); }
.topbar-cta {
  background: var(--accent);
  color: var(--bg-dark) !important;
  padding: 0.35rem 1rem;
  border-radius: 4px;
  font-weight: 700;
}
.topbar-cta:hover { background: var(--accent-hover); }

/* Header — Insurify : barre blanche lisible */
.site-header, .header {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(10, 22, 40, 0.08);
  transition: box-shadow var(--ease);
}
.site-header.scrolled, .header.scrolled {
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.12);
}
.site-header .nav, .header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 0.65rem; }
.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
.logo-text em {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 0.65rem 1.35rem !important;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--primary-light) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--text);
  transition: var(--ease);
}

.page-home main {
  padding-top: calc(var(--topbar-h) + var(--header-h));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--ease);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: #fff; }
.btn-accent {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-hover); }
.btn-full { width: 100%; }

/* Hero slider — Wanderers */
.hero-slider {
  position: relative;
  min-height: calc(100vh - var(--topbar-h) - var(--header-h));
  min-height: max(560px, calc(100vh - var(--topbar-h) - var(--header-h)));
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  transform: scale(1.08);
  transition: transform 10s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.45) 0%, rgba(10, 22, 40, 0.82) 55%, rgba(10, 22, 40, 0.92) 100%),
    linear-gradient(90deg, rgba(10, 22, 40, 0.75) 0%, rgba(13, 92, 75, 0.35) 45%, rgba(10, 22, 40, 0.7) 100%);
}
.hero-slide-content {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - var(--topbar-h) - var(--header-h));
  min-height: max(560px, calc(100vh - var(--topbar-h) - var(--header-h)));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0 7rem;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero-slide h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 1.25rem;
}
.hero-slide h1 span { color: var(--accent); font-style: italic; }
.hero-slide p {
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-slide-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-controls {
  position: absolute;
  bottom: 7.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}
.hero-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  background: transparent;
  cursor: pointer;
  transition: var(--ease);
}
.hero-dot.active { background: var(--accent); border-color: var(--accent); }

/* Quick services — Insurify cards under hero */
.hero-services {
  position: relative;
  z-index: 20;
  margin-top: -5rem;
  padding-bottom: 4rem;
}
.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.service-quick {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--border);
  transition: var(--ease);
}
.service-quick:last-child { border-right: none; }
.service-quick:hover { background: rgba(13,92,75,.06); }
.service-quick-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(13,92,75,.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.service-quick h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.service-quick span {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Sections */
.section { padding: 5rem 0; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }
.section-header.light h2, .section-header.light p { color: #fff; }
.section-header.light .section-tag { color: var(--accent); }

/* Intro band */
.intro-band { background: var(--bg-white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.intro-content p { color: var(--text-muted); margin-bottom: 1rem; }
.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.intro-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: var(--radius-lg);
}
.intro-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--primary);
  line-height: 1;
}
.intro-stat span { font-size: 0.85rem; color: var(--text-muted); }

/* Destination cards — Wanderers overlay */
.destinations { background: var(--bg); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: block;
  box-shadow: var(--shadow);
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  transition: transform 0.6s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.92) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: #fff;
}
.dest-duration {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.dest-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin-bottom: 0.35rem;
}
.dest-card p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 1rem; }
.dest-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Promo dual — Insurify */
.promo-dual { background: var(--bg-white); }
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.promo-box {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.promo-box--tour {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
}
.promo-box--assur {
  background: linear-gradient(135deg, var(--bg-navy) 0%, #1a4a6e 100%);
  color: #fff;
}
.promo-box h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.promo-box p { opacity: 0.9; margin-bottom: 1.25rem; max-width: 90%; }
.promo-box .btn { align-self: flex-start; }

/* Who we are */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  min-height: 400px;
  object-fit: cover;
}
.feature-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.feature-icon { color: var(--accent); font-weight: 700; }
.feature-list strong { display: block; margin-bottom: 0.2rem; }
.feature-list p { font-size: 0.9rem; color: var(--text-muted); }

/* Protect boxes — Insurify */
.protect { background: var(--bg-navy); color: #fff; }
.protect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.protect-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1);
}
.protect-item-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  background: rgba(212,160,23,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}
.protect-item h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.protect-item p { font-size: 0.9rem; opacity: 0.8; }

/* Assurance cards */
.assurance { background: var(--bg-dark); color: #fff; padding: 5rem 0; }
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.assurance-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--ease);
}
.assurance-card--link { display: block; color: inherit; }
.assurance-card:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.assurance-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.assurance-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.assurance-card p { font-size: 0.9rem; opacity: 0.75; }
.circuit-link, .assurance-card .circuit-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--accent);
}

/* Testimonials */
.testimonials { background: var(--bg-white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.testi-card {
  padding: 2rem;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
}
.testi-card p {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}
.testi-author strong { display: block; color: var(--text); }
.testi-author span { font-size: 0.85rem; color: var(--text-muted); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--bg-navy));
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}
.cta-band p { opacity: 0.9; margin-bottom: 1.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Page banner — Wanderers / Insurify inner pages */
main {
  padding-top: calc(var(--topbar-h) + var(--header-h));
}
.page-hero, .page-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-navy);
}
.page-hero--tall, .page-banner--tall { min-height: 460px; }
.page-hero--compact, .page-banner--compact { min-height: 280px; }
.page-hero--dark, .page-banner--dark {
  background: linear-gradient(135deg, var(--bg-navy), var(--primary));
}
.page-hero-img, .page-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay, .page-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.5) 0%, rgba(10, 22, 40, 0.88) 100%),
    linear-gradient(90deg, rgba(10, 22, 40, 0.7) 0%, rgba(13, 92, 75, 0.25) 100%);
}
.page-hero-content, .page-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
  padding: 3.5rem 0;
}
.page-hero-content h1, .page-banner-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin: 0.5rem 0 0.75rem;
  line-height: 1.15;
  text-transform: none;
}
.page-banner-title-lg {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.page-banner-sub {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 560px;
}
.page-banner-content .section-tag,
.page-hero-content .section-tag {
  color: var(--accent);
}
.breadcrumb {
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}
.breadcrumb a:hover { color: var(--accent); }

/* Insurify services grid */
.services-classic {
  background: var(--bg-white);
  padding: 4rem 0;
}
.services-classic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-box {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--ease);
  display: block;
  color: inherit;
}
.service-box:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-box-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.25rem;
  background: rgba(13, 92, 75, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.service-box h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.service-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Wanderers trip intro */
.trip-intro {
  background: var(--bg);
  padding: 4rem 0;
  text-align: center;
}
.trip-intro .container { max-width: 800px; }
.trip-intro h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-cta-bar {
  background: var(--primary);
  color: #fff;
  padding: 2rem 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-cta-inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.footer-cta-inner p { opacity: 0.9; font-size: 0.95rem; }
.circuits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.circuit-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--ease);
}
.circuit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.circuit-card.featured { grid-column: span 2; display: grid; grid-template-columns: 1.15fr 1fr; }
.circuit-img-el { width: 100%; height: 220px; object-fit: cover; }
.circuit-card.featured .circuit-img-el { height: 100%; min-height: 280px; }
.circuit-body { padding: 1.5rem; }
.circuit-duration {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(13,92,75,.1);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.6rem;
}
.circuit-body h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.5rem; }
.circuit-body h3 a:hover { color: var(--primary); }
.circuit-body p { font-size: 0.9rem; color: var(--text-muted); }
.circuit-highlights { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.75rem 0; }
.circuit-highlights li {
  font-size: 0.78rem;
  padding: 0.25rem 0.55rem;
  background: var(--bg);
  border-radius: 4px;
  color: var(--text-muted);
}
.circuits-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
}
.tourisme-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3.5rem; align-items: center; }
.tourisme-photo { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); min-height: 360px; object-fit: cover; }

/* Detail pages */
.circuit-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.circuit-detail-gallery { display: flex; flex-direction: column; gap: 1rem; }
.circuit-detail-gallery img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/2;
  object-fit: cover;
}
.circuit-detail-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; }
.contact-form {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 1.15rem; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.35rem; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.contact-details li { padding: 1rem 0; border-bottom: 1px solid var(--border); }
.contact-details strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}
.apropos-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  padding: 3rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.value {
  padding: 1.25rem;
  background: var(--bg);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  margin-bottom: 1rem;
}
.form-success h3 { font-family: var(--font-display); color: var(--primary); }

/* Footer — Insurify */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer .logo-text, .footer .logo-text em { color: #fff; }
.footer .logo-text em { opacity: 0.6; }
.footer-brand p { margin-top: 1rem; font-size: 0.9rem; }
.footer-links h4 {
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer-links a { font-size: 0.9rem; opacity: 0.75; }
.footer-links a:hover { color: var(--accent); opacity: 1; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 0.82rem;
  opacity: 0.6;
}

/* Legacy compat */
.hero { position: relative; min-height: 100vh; margin-top: calc(var(--topbar-h) + var(--header-h)); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-pattern { display: none; }
.hero-content { position: relative; z-index: 2; color: #fff; padding: 4rem 0; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2rem;
  max-width: 520px;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.2);
}
.stat-value { font-family: var(--font-display); font-size: 2rem; color: var(--accent); display: block; }
.stat-label { font-size: 0.85rem; opacity: 0.8; }
.stat-value--247 { display: inline-flex; align-items: center; white-space: nowrap; }
.stat-slash { margin: 0 0.08em; }

/* Responsive */
@media (max-width: 1100px) {
  .hero-services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-quick { border-bottom: 1px solid var(--border); }
  .service-quick:nth-child(3n) { border-right: none; }
  .dest-grid, .circuits-grid { grid-template-columns: repeat(2, 1fr); }
  .circuit-card.featured { grid-column: span 2; }
  .assurance-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 88vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    transition: right var(--ease);
  }
  .nav-menu.open { right: 0; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero-services-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid, .about-split, .promo-grid, .protect-grid,
  .dest-grid, .circuits-grid, .tourisme-grid, .contact-grid,
  .circuit-detail-grid, .apropos-card, .testi-grid {
    grid-template-columns: 1fr;
  }
  .circuit-card.featured { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  .services-classic-grid { grid-template-columns: 1fr; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
}
