/* ============================================
   BERKAILAND — styles.css  (v2 fullpage)
   ============================================ */

/* --- Variables --- */
:root {
  --color-primary: #f0592c;
  --color-primary-dark: #c9451e;
  --color-primary-glow: rgba(240, 89, 44, 0.35);
  --color-dark: #0a0a0a;
  --color-dark-2: #141414;
  --color-dark-3: #1e1e1e;
  --color-gray: #6b7280;
  --color-light: #f5f5f2;
  --color-light-2: #eeede9;
  --color-white: #ffffff;
  --color-border: #e5e7eb;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.28);
  --header-h: 68px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-y: scroll; overflow-x: hidden; scroll-snap-type: y mandatory; }
body { font-family: var(--font-body); color: var(--color-dark); background: var(--color-dark); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================
   FULLPAGE ENGINE
   ============================================ */
#fullpage {
  width: 100%;
}

.section {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

/* ============================================
   MORPH OVERLAY
   ============================================ */
.morph-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: var(--color-primary);
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.28s cubic-bezier(0, 0.55, 0.45, 1);
  pointer-events: none;
}
.morph-overlay.expand {
  clip-path: circle(150% at 50% 50%);
  transition: clip-path 0.22s cubic-bezier(0.55, 0, 1, 0.45);
}

/* ============================================
   NAV DOTS
   ============================================ */
.nav-dots {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8000;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.nav-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-dot-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.25s, transform 0.25s;
  white-space: nowrap;
  color: var(--color-white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  pointer-events: none;
}

.nav-dot:hover .nav-dot-label {
  opacity: 1;
  transform: translateX(0);
}

.nav-dot-pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.nav-dots[data-theme="light"] .nav-dot-pip {
  background: rgba(0,0,0,0.2);
  border-color: rgba(0,0,0,0.35);
}
.nav-dots[data-theme="light"] .nav-dot-label {
  color: var(--color-dark);
  text-shadow: none;
}

.nav-dot.active .nav-dot-pip {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.7);
  box-shadow: 0 0 10px var(--color-primary-glow);
}

/* ============================================
   HEADER
   ============================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 7000;
  height: var(--header-h);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}

#site-header.header-light {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 24px;
}

.header-logo img {
  height: 38px;
  width: auto;
  transition: opacity 0.3s;
}

.logo-dark { display: block; }
.logo-white { display: none; }

#site-header.header-dark .logo-dark { display: none; }
#site-header.header-dark .logo-white { display: block; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--color-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--color-primary); }

#site-header.header-light .nav-links a {
  color: var(--color-dark);
}
#site-header.header-light .nav-links a:hover {
  color: var(--color-primary);
}

.nav-cta {
  padding: 10px 22px;
  border-radius: var(--radius);
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  transition: background 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--color-primary-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
#site-header.header-light .hamburger span { background: var(--color-dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   SHARED SECTION COMPONENTS
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.section-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding-top is handled by each section's inner wrapper */
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* Shared button styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s, box-shadow 0.3s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 8px 24px rgba(240,89,44,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: rgba(0,0,0,0.2);
}
.btn-outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* Entrance animations */
.anim {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.anim.in {
  opacity: 1;
  transform: translateY(0);
}
.anim.d1 { transition-delay: 0.1s; }
.anim.d2 { transition-delay: 0.2s; }
.anim.d3 { transition-delay: 0.3s; }
.anim.d4 { transition-delay: 0.4s; }
.anim.d5 { transition-delay: 0.5s; }
.anim.d6 { transition-delay: 0.6s; }
.anim.d7 { transition-delay: 0.7s; }
.anim.d8 { transition-delay: 0.8s; }

.anim-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-scale.in { opacity: 1; transform: scale(1); }

.anim-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.anim-left.in { opacity: 1; transform: translateX(0); }

.anim-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.anim-right.in { opacity: 1; transform: translateX(0); }

/* ============================================
   SECTION 0 — HERO
   ============================================ */
#hero {
  background: var(--color-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  transition: transform 0.1s linear;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.48) 50%,
    rgba(10,4,2,0.70) 100%
  );
  z-index: 1;
}

.hero-overlay-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 60%, rgba(240,89,44,0.15) 0%, transparent 65%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--color-white);
  padding-top: max(calc(var(--header-h) + 32px), calc((100svh - 480px) / 2));
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,89,44,0.15);
  border: 1px solid rgba(240,89,44,0.4);
  backdrop-filter: blur(8px);
  color: #ffb89e;
  padding: 7px 16px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-content h1 .accent { color: var(--color-primary); }

.hero-subtitle {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-price {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.hero-trust-item svg { color: var(--color-primary); flex-shrink: 0; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.55;
  cursor: pointer;
  transition: opacity 0.3s;
}
.hero-scroll-hint:hover { opacity: 0.9; }
.hero-scroll-hint span {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
}
.scroll-arrow {
  width: 22px;
  height: 22px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(45deg);
  animation: arrow-bounce 1.6s ease-in-out infinite;
}
@keyframes arrow-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* Decorative geometric shapes */
.geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240,89,44,0.2);
  animation: geo-rotate 20s linear infinite;
  pointer-events: none;
}
.geo-circle-1 { width: 400px; height: 400px; right: -80px; top: -80px; animation-duration: 25s; }
.geo-circle-2 { width: 600px; height: 600px; right: -200px; top: -200px; animation-duration: 35s; animation-direction: reverse; border-color: rgba(240,89,44,0.08); }
@keyframes geo-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ============================================
   SECTION 1 — STATS
   ============================================ */
#stats-band {
  background: var(--color-dark-2);
}

.stats-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,89,44,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,89,44,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.stats-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,89,44,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.stats-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: var(--header-h) 32px 40px;
  text-align: center;
}

.stats-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.stats-eyebrow::before,
.stats-eyebrow::after {
  content: '';
  height: 1px;
  width: 40px;
  background: var(--color-primary);
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 1000px;
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.stat-value .stat-unit {
  font-size: 0.5em;
  opacity: 0.7;
  font-weight: 600;
}

.stat-line {
  width: 32px; height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  margin: 12px auto;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================
   SECTION 2 — LE PROJET
   ============================================ */
#le-projet {
  background: var(--color-white);
}

.projet-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  height: 100%;
  padding: var(--header-h) 0 12px;
}

.projet-text { }

.projet-text .section-title {
  margin-bottom: 20px;
  color: var(--color-dark);
}

.projet-text p {
  color: var(--color-gray);
  line-height: 1.7;
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.projet-atouts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.atout-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  background: var(--color-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--color-primary);
  font-size: 0.75rem;
  line-height: 1.35;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}
.atout-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.atout-icon { flex-shrink: 0; font-size: 0.9rem; }

.projet-visual {
  position: relative;
}

.projet-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.projet-img-frame:hover {
  transform: perspective(800px) rotateY(-3deg) rotateX(2deg) translateZ(8px);
}
.projet-img-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.projet-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(240,89,44,0.4);
}

.projet-float-shape {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--color-primary), #ff8c69);
  opacity: 0.12;
  transform: rotate(20deg);
  z-index: -1;
}

/* ============================================
   SECTION 3 — NOS OFFRES
   ============================================ */
#offres {
  background: var(--color-light);
}

.offres-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--header-h) 0 24px;
  justify-content: center;
}

.offres-header {
  text-align: center;
  margin-bottom: 18px;
}
.offres-header .section-eyebrow { justify-content: center; }
.offres-header .section-eyebrow::before { display: none; }
.offres-header .section-subtitle {
  color: var(--color-gray);
  font-size: 0.9375rem;
  margin-top: 8px;
}

.offres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.offre-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  border: 2px solid var(--color-border);
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.3s;
  transform-style: preserve-3d;
}

.offre-card.featured {
  border-color: var(--color-primary);
  box-shadow: 0 12px 48px rgba(240,89,44,0.18);
  background: var(--color-white);
}

.offre-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  padding: 5px 16px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.offre-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.offre-name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.offre-surface {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-bottom: 16px;
  font-weight: 500;
}

.offre-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
  letter-spacing: -0.01em;
}
.offre-price span { font-size: 0.8rem; font-weight: 500; color: var(--color-gray); }

.offre-points {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.offre-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  line-height: 1.4;
}
.offre-point::before {
  content: '';
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23f0592c'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E") center no-repeat;
  flex-shrink: 0;
}

.offre-card .btn { width: 100%; justify-content: center; }

/* 3D tilt — applied via JS inline */
.offre-card { transition: box-shadow 0.3s; }

/* ============================================
   SECTION 4 — RÉSERVER
   ============================================ */
#reserver {
  background: var(--color-dark);
}

.reserver-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(240,89,44,0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(240,89,44,0.06) 0%, transparent 50%);
  z-index: 0;
}

.reserver-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: var(--header-h) 32px 40px;
  text-align: center;
}

.reserver-content .section-eyebrow { justify-content: center; color: var(--color-primary); }
.reserver-content .section-eyebrow::before { display: none; }
.reserver-content .section-title { color: var(--color-white); margin-bottom: 10px; }
.reserver-subtitle { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 28px; max-width: 560px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  max-width: 860px;
  position: relative;
  margin-bottom: 24px;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.7% + 24px);
  right: calc(16.7% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, rgba(240,89,44,0.3) 100%);
  z-index: 0;
}

.step-item {
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(240,89,44,0.35);
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 600px;
  width: 100%;
  margin-bottom: 24px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  text-align: left;
}

.trust-check {
  width: 20px; height: 20px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  color: white;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   SECTION 5 — LOCALISATION
   ============================================ */
#localisation {
  background: var(--color-white);
}

.localisation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  height: 100%;
  padding: var(--header-h) 0 12px;
}

.map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.map-frame img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.map-frame:hover img { transform: scale(1.03); }

.map-btn {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  color: var(--color-dark);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.map-btn:hover { background: var(--color-primary); color: var(--color-white); }

.loc-text .section-title { margin-bottom: 14px; }
.loc-text p { color: var(--color-gray); line-height: 1.7; font-size: 0.875rem; margin-bottom: 10px; }
.loc-text strong { color: var(--color-dark); }

.loc-sites {
  margin-top: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.loc-sites img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}
.loc-sites-label {
  padding: 6px 12px;
  font-size: 0.7rem;
  color: var(--color-gray);
  font-style: italic;
  background: var(--color-light);
}

/* ============================================
   SECTION 6 — ACTUALITÉS
   ============================================ */
#actualites {
  background: var(--color-light);
}

.actualites-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--header-h) 0 24px;
  justify-content: center;
}

.actualites-header {
  text-align: center;
  margin-bottom: 16px;
}
.actualites-header .section-eyebrow { justify-content: center; }
.actualites-header .section-eyebrow::before { display: none; }

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  flex: 1;
  align-items: start;
}

.social-col-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-dark);
}
.social-col-title svg { width: 20px; height: 20px; color: var(--color-primary); }

.tiktok-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  max-height: 430px;
}
.tiktok-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-dark);
  max-width: 260px;
}

.fb-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: white;
  margin-bottom: 12px;
  max-height: 430px;
}

.social-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--color-primary);
  transition: color 0.3s;
}
.social-more:hover { color: var(--color-primary-dark); }
.social-more svg { width: 14px; height: 14px; }

/* ============================================
   SECTION 7 — CONTACT
   ============================================ */
#contact {
  background: var(--color-light);
}

.contact-inner {
  display: flex;
  flex-direction: column;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
  flex: 1;
  padding-bottom: 0;
}

.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 10px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-dark);
}
.req { color: var(--color-primary); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-dark);
  background: var(--color-white);
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--color-primary); }
.form-group textarea { resize: none; height: 60px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}
.form-submit .btn { width: 100%; justify-content: center; padding: 13px; }
.form-note { font-size: 0.75rem; color: var(--color-gray); text-align: center; margin-top: 8px; }

.contact-info-card {
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-info-card .lead {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: rgba(240,89,44,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.contact-text strong { display: block; font-weight: 700; font-size: 0.875rem; }
.contact-text a, .contact-text span { font-size: 0.875rem; color: rgba(255,255,255,0.55); }
.contact-text a:hover { color: var(--color-primary); }

/* Footer inline in contact section */
.section-footer {
  background: #0a0a0a;
  padding: 14px 90px 14px 32px;
  margin-top: auto;
}
.section-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-legal-link {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
  cursor: pointer;
}
.footer-legal-link:hover { color: var(--color-primary); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 8500;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,0.6);
}
.whatsapp-float svg { width: 28px; height: 28px; color: white; }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================
   MODAL MENTIONS LÉGALES
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 11000;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-box {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.35s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--color-light);
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  transition: background 0.2s;
}
.modal-close:hover { background: var(--color-border); color: var(--color-dark); }

.modal-box h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.modal-box p { font-size: 0.9rem; line-height: 1.7; color: var(--color-gray); margin-bottom: 8px; }
.modal-box strong { color: var(--color-dark); font-weight: 600; }

/* Section-specific layout overrides */
#actualites .section-content { justify-content: flex-start; }
#actualites .actualites-inner { padding-top: calc(var(--header-h) + 8px); }
#contact .section-content { justify-content: flex-start; }
#contact .contact-inner { padding-top: calc(var(--header-h) + 12px); }

/* ============================================
   SR-ONLY (crawlers IA)
   ============================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================
   OFFRES SCROLL HINT (mobile only)
   ============================================ */
.offres-scroll-hint {
  display: none;
}

/* ============================================
   RESPONSIVE — 1024px
   ============================================ */
@media (max-width: 1024px) {
  .projet-inner { grid-template-columns: 1fr; gap: 20px; padding: calc(var(--header-h) + 8px) 0 12px; }
  .projet-img-frame img { height: 220px; }
  .projet-atouts { grid-template-columns: 1fr 1fr 1fr; }
  .localisation-inner { grid-template-columns: 1fr; gap: 20px; }
  .social-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
  /* Offres: 3 col → 3 col (stays, handled by 768 for mobile) */
}

/* ============================================
   RESPONSIVE — 768px (mobile)
   ============================================ */
@media (max-width: 768px) {
  :root { --header-h: 62px; }
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }

  /* Nav */
  .hamburger { display: flex; }
  .header-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px 20px;
    gap: 8px;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
    pointer-events: none;
  }
  .header-nav.open {
    transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto;
  }
  #site-header.header-light .header-nav { background: rgba(255,255,255,0.98); }
  .nav-links { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
  .nav-links a {
    padding: 14px 0; width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1rem; color: white;
  }
  #site-header.header-light .nav-links a { color: var(--color-dark); border-color: var(--color-border); }
  .nav-cta { width: 100%; text-align: center; justify-content: center; margin-top: 12px; }
  .nav-dots { display: none; }

  /* ---- HERO — fix overlap + airy layout ---- */
  .hero-content {
    justify-content: flex-start;
    padding-top: calc(var(--header-h) + 60px);
    padding-bottom: 70px;
  }
  .hero-badge {
    margin-bottom: 20px;
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 7.5vw, 2.75rem);
    margin-bottom: 18px;
    line-height: 1.05;
  }
  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 18px;
    max-width: 100%;
  }
  .hero-price { font-size: 1.375rem; margin-bottom: 18px; }
  .hero-trust { flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
  .hero-trust-item { font-size: 0.8rem; padding: 5px 12px; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .geo-circle { display: none; }

  /* ---- STATS ---- */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-value { font-size: 2.25rem; }
  .stats-eyebrow { margin-bottom: 28px; }
  .stat-item { padding: 22px 14px; }

  /* ---- PROJET — hide image, tighten ---- */
  .projet-inner {
    grid-template-columns: 1fr;
    padding: calc(var(--header-h) + 12px) 0 16px;
    gap: 14px;
  }
  .projet-visual { display: none; }
  .projet-atouts { grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 12px; }
  .atout-item { padding: 8px 10px; font-size: 0.7rem; }
  .projet-text p { font-size: 0.875rem; }

  /* ---- OFFRES — horizontal scroll ---- */
  .offres-scroll-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 10px;
  }
  .offres-scroll-hint svg { color: var(--color-primary); }

  .offres-inner { overflow: visible; padding-bottom: 8px; }
  .offres-grid {
    display: flex !important;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 8px 20px 24px;
    margin: 0 -20px;
    max-width: none !important;
  }
  .offres-grid::-webkit-scrollbar { display: none; }
  .offre-card {
    flex: 0 0 82%;
    min-width: 0;
    max-width: 300px;
    scroll-snap-align: start;
  }

  /* ---- RÉSERVER — compact ---- */
  .reserver-content { padding: calc(var(--header-h) + 16px) 20px 28px; }
  .reserver-subtitle { font-size: 0.85rem; margin-bottom: 20px; }
  .steps-grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 20px; }
  .steps-grid::before { display: none; }
  .step-item { padding: 0 8px; }
  .step-number { width: 50px; height: 50px; font-size: 0.9rem; margin-bottom: 10px; }
  .step-title { font-size: 0.75rem; }
  .step-desc { font-size: 0.8rem; }
  .trust-grid { display: none; }

  /* ---- LOCALISATION ---- */
  .localisation-inner { grid-template-columns: 1fr; gap: 16px; padding-top: calc(var(--header-h) + 8px); }
  .map-frame img { height: 200px; }
  .loc-sites { display: none; }
  .loc-text p { font-size: 0.85rem; }

  /* ---- ACTUALITÉS ---- */
  .tiktok-row { flex-direction: row; overflow-x: auto; gap: 10px; scrollbar-width: none; }
  .tiktok-row::-webkit-scrollbar { display: none; }
  .tiktok-wrap { flex: 0 0 85%; max-width: 100%; }
  .tiktok-wrap + .tiktok-wrap { display: none; }
  .fb-wrap { max-height: 300px; }

  /* ---- CONTACT ---- */
  .contact-grid { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 18px; }
  .contact-info-card { padding: 18px; }
  .contact-info-card .lead { margin-bottom: 16px; }
  .contact-items { gap: 12px; }

  /* WA float */
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
  .hero-content h1 { font-size: clamp(1.875rem, 7vw, 2.25rem); }
  .hero-subtitle { font-size: 0.875rem; }
  .offres-header .section-title { font-size: 1.5rem; }
  .stat-value { font-size: 2rem; }
  .offre-card { flex: 0 0 88%; }
}
