/* ============================================================
   AFRICOT — Design system
   ============================================================ */

:root {
  --bg:              #0a1628;
  --brand-dark:      #0B1F3A;
  --brand-royal:     #124E8C;
  --brand-cyan:      #00C8F0;
  --brand-light:     #5DA9E9;
  --brand-brown:     #8B6B42;
  --surface-elev:    #0f2238;
  --surface-muted:   #0d1c30;
  --text-heading:    #f0f4f8;
  --text-body:       #b8c5d6;
  --text-muted:      #8a9bb0;
  --border:          rgba(255,255,255,0.1);
  --font-sans:       'Inter', system-ui, sans-serif;
  --font-display:    'Poppins', sans-serif;
  --radius-sm:       0.5rem;
  --radius-md:       0.75rem;
  --radius-lg:       1rem;
  --radius-xl:       1.5rem;
  --transition:      0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

body * { cursor: none; }

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; font-family: inherit; }

::selection { background: var(--brand-cyan); color: var(--brand-dark); }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--brand-dark); }
::-webkit-scrollbar-thumb { background: var(--brand-royal); border-radius: 3px; }

/* ── Custom cursor ──────────────────────────────────────────── */
/* ── Custom cursor ──────────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}

/* Petit point central — suit la souris instantanément */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--brand-cyan);
  box-shadow: 0 0 8px rgba(0,200,240,0.8);
  transition: opacity 0.3s, width 0.2s, height 0.2s, background 0.2s;
}

/* Anneau extérieur — suit avec retard via JS */
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(0,200,240,0.55);
  background: rgba(0,200,240,0.04);
  backdrop-filter: blur(1px);
  transition: opacity 0.3s, width 0.25s ease, height 0.25s ease,
              border-color 0.25s, background 0.25s;
}

/* État hover sur éléments interactifs */
body.cursor-hover .cursor-dot {
  width: 12px; height: 12px;
  background: #fff;
  box-shadow: 0 0 12px rgba(255,255,255,0.6);
}
body.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  border-color: rgba(0,200,240,0.9);
  background: rgba(0,200,240,0.08);
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── Layout ─────────────────────────────────────────────────── */
.container-premium {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) { .container-premium { padding-inline: 2rem; } }

.section-padding { padding-block: 1.75rem; }
@media (min-width: 768px) { .section-padding { padding-block: 2.25rem; } }
.pb-sm { padding-bottom: 0.75rem !important; }
.pt-sm { padding-top: 0.75rem !important; }

.surface-light  { background: var(--surface-elev);  color: var(--text-body); }
.surface-muted  { background: var(--surface-muted); color: var(--text-body); }
.surface-dark   { background: var(--brand-dark);    color: rgba(255,255,255,0.85); }

.heading-primary { color: var(--text-heading); }

.glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
}

.w-full { width: 100%; }
.mt-2   { margin-top: 0.5rem; }

/* ── Promo Banner ──────────────────────────────────────────── */
.promo-banner {
  width: 100%;
  background: linear-gradient(to right, #124E8C, #0f3d6e, #0B1F3A);
  border-bottom: 1px solid rgba(0,200,240,0.25);
}
.promo-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  padding-block: 0.5rem;
  padding-right: 2rem;
  text-align: center;
}
.promo-badge {
  flex-shrink: 0;
  background: rgba(0,200,240,0.15);
  color: var(--brand-cyan);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
}
.promo-text { font-size: 0.8rem; color: rgba(255,255,255,0.95); line-height: 1.4; }
.promo-link { font-size: 0.8rem; font-weight: 600; color: var(--brand-cyan); white-space: nowrap; transition: color var(--transition); }
.promo-link:hover { color: #fff; text-decoration: underline; }

.banner-close-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.banner-close-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.banner-close-btn--airbnb {
  border-color: rgba(255,90,95,0.3) !important;
  color: rgba(255,90,95,0.55) !important;
}
.banner-close-btn--airbnb:hover {
  background: rgba(255,90,95,0.12);
  color: var(--airbnb);
  border-color: var(--airbnb);
}

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 100;
  background: rgba(11,31,58,0.8);
  backdrop-filter: blur(8px);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.875rem;
}

/* Logo */
.logo-link {
  display: inline-flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.logo-link:hover .logo-icon-wrap { transform: scale(1.02); }

.logo-icon-wrap {
  width: 56px; height: 56px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 0.5rem;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon-wrap--footer {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}
.logo-img {
  width: 44px; height: 44px;
  object-fit: contain;
  display: block;
}

.logo-wordmark {
  display: flex; flex-direction: column; min-width: 0;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.logo-sub {
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--brand-cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 3px;
  line-height: 1.3;
}

/* Desktop nav */
.nav-desktop { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--brand-cyan);
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-link:hover, .nav-link--active { color: var(--brand-cyan); }
.nav-link--active::after, .nav-link:hover::after { transform: scaleX(1); }

/* Header actions */
.header-actions { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .header-actions { display: flex; } }

.header-phone {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.header-phone:hover { color: var(--brand-cyan); }
.header-phone span { display: none; }
@media (min-width: 1280px) { .header-phone span { display: inline; } }

/* Hamburger */
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  padding: 0.5rem; cursor: pointer;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.hamburger-line {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(11,31,58,0.99);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-mobile.open { max-height: 400px; }
.nav-mobile-inner { display: flex; flex-direction: column; gap: 1rem; padding-block: 1.25rem; }
.nav-mobile-link { font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,0.9); transition: color var(--transition); }
.nav-mobile-link:hover, .nav-mobile-link--active { color: var(--brand-cyan); }

/* ── pt-site-header ────────────────────────────────────────── */
.pt-site-header { padding-top: 10rem; } /* fallback avant JS — remplacé dynamiquement */

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem; font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand-royal), var(--brand-cyan));
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,200,240,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,200,240,0.35); }
.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--brand-cyan); color: var(--brand-cyan); }

/* ── Section Heading ───────────────────────────────────────── */
.section-heading { text-align: center; margin-bottom: 1.75rem; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--brand-cyan);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-desc { color: var(--text-body); font-size: 0.95rem; max-width: 36rem; margin-inline: auto; line-height: 1.7; }

/* ── Animations ────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.from-left  { transform: translateX(-24px); }
.fade-in.from-right { transform: translateX(24px);  }
.fade-in.from-left.visible,
.fade-in.from-right.visible { transform: translateX(0); }

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s;  }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s;  }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s;  }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.92), rgba(11,31,58,0.78), rgba(18,78,140,0.55));
}
.hero-overlay2 {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,31,58,0.92), rgba(11,31,58,0.6), rgba(11,31,58,0.25));
}
.hero-content {
  position: relative; z-index: 10;
  display: flex; flex-direction: column;
  min-height: 88svh;
  padding-bottom: 5rem;
  justify-content: flex-start;
}
@media (min-width: 1024px) { .hero-content { justify-content: center; } }

.hero-grid {
  display: grid; align-items: center; gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1.4fr; } }

.hero-text { max-width: 42rem; }
.hero-title {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hero-title em { font-style: normal; color: var(--brand-cyan); }
.hero-subtitle { margin-top: 1rem; color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.7; max-width: 36rem; }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.125rem; } }

.hero-actions { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

/* ── Hero visuel droit ──────────────────────────────────────── */
.hero-visual { display: none; }
@media (min-width: 1024px) { .hero-visual { display: flex; align-items: center; justify-content: flex-end; } }

.hero-tabs-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
}

/* Colonne des onglets */
.hero-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex-shrink: 0;
}

/* Nombre d'or horizontal : largeur / hauteur ≈ 1.618
   Hauteur auto (flex:1 dans ~300px, 3 tabs → ~94px chacun)
   Largeur = 94 × 1.618 ≈ 152px */
.hero-tab {
  flex: 1;
  width: 152px;
  border: none;
  border-radius: 0.8rem;
  cursor: pointer;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  opacity: 0.5;
  position: relative;
  overflow: hidden;
}

.hero-tab::before {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px 0 0 2px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* Couleurs professionnelles */
.hero-tab--blue  { background: linear-gradient(175deg, #1c3f7a 0%, #0c2347 100%); }
.hero-tab--green { background: linear-gradient(175deg, #0e5151 0%, #072e2e 100%); }
.hero-tab--red   { background: linear-gradient(175deg, #5c1f1f 0%, #320f0f 100%); }

.hero-tab.active,
.hero-tab:hover {
  opacity: 1;
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}
.hero-tab.active::before { opacity: 1; }

.hero-tab {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  max-width: 100%;
}

.hero-visual-img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.2s ease;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.88) 0%, rgba(11,31,58,0.2) 55%, transparent 100%);
  pointer-events: none;
}

.hero-visual-tags {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.hvt {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
  background: rgba(18,78,140,0.65);
  border: 1px solid rgba(0,200,240,0.3);
  border-radius: 9999px;
  padding: 0.25rem 0.7rem;
  white-space: nowrap;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}


/* Stats */
.hero-stats {
  margin-top: 2.5rem;
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4,1fr); } }

.stat-item { text-align: center; }
.stat-number { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.stat-label  { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }

/* Scroll indicator */
.scroll-indicator {
  display: flex; justify-content: center;
  margin-top: 2rem;
  animation: bounce 2s infinite;
}
.scroll-wheel {
  width: 24px; height: 44px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 6px;
}
.scroll-dot { width: 4px; height: 8px; background: var(--brand-cyan); border-radius: 2px; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ── Trust Badges ──────────────────────────────────────────── */
.trust-badges-section {
  border-block: 1px solid var(--border);
  padding-block: 2rem;
}
.trust-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4,1fr); gap: 1.5rem; } }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.trust-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.trust-label { font-weight: 600; color: var(--text-heading); font-size: 0.875rem; }
.trust-desc  { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ── Why Africot ───────────────────────────────────────────── */
.why-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px)  { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3,1fr); } }

.why-card {
  height: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.why-card:hover { border-color: rgba(93,169,233,0.4); }
.why-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--brand-royal), var(--brand-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform var(--transition);
  box-shadow: 0 4px 16px rgba(18,78,140,0.25);
}
.why-card:hover .why-icon-wrap { transform: scale(1.1); }
.why-card-title { color: var(--text-heading); font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; }
.why-card-desc  { font-size: 0.875rem; line-height: 1.6; color: var(--text-body); }
.why-highlights { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.why-highlight {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.85);
}
.why-highlight::before { content: '✓'; color: var(--brand-light); font-weight: 700; flex-shrink: 0; }

.trades-section { margin-top: 1.5rem; text-align: center; }
.trades-label { font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 1.5rem; }
.trades-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.trade-tag {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  border-radius: 9999px;
  font-size: 0.875rem; color: rgba(255,255,255,0.85);
  transition: border-color var(--transition);
}
.trade-tag:hover { border-color: rgba(93,169,233,0.5); }

/* ── Smart Home ────────────────────────────────────────────── */
.smart-home-section {
  position: relative;
  overflow: hidden;
  background: var(--brand-dark);
}
.smart-home-glow {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.3;
}
.smart-home-glow::before {
  content: '';
  position: absolute; top: -8rem; left: -25%;
  width: 24rem; height: 24rem;
  background: rgba(93,169,233,0.2);
  border-radius: 50%; filter: blur(60px);
}
.smart-home-glow::after {
  content: '';
  position: absolute; bottom: -8rem; right: -25%;
  width: 24rem; height: 24rem;
  background: rgba(18,78,140,0.3);
  border-radius: 50%; filter: blur(60px);
}
.smart-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px)  { .smart-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .smart-grid { grid-template-columns: repeat(4,1fr); } }

.smart-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: border-color var(--transition), background var(--transition);
  position: relative;
}
.smart-card:hover { border-color: rgba(93,169,233,0.4); background: rgba(255,255,255,0.1); }
.smart-card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(93,169,233,0.2), rgba(18,78,140,0.3));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--brand-light);
  margin-bottom: 1rem;
}
.smart-card-title { font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.smart-card-desc  { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.smart-card-line  { height: 2px; width: 0; background: var(--brand-light); margin-top: 1rem; transition: width 0.5s ease; }
.smart-card:hover .smart-card-line { width: 100%; }

/* ── Services ──────────────────────────────────────────────── */
.services-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1280px) { .services-grid { grid-template-columns: repeat(5,1fr); } }

.service-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: border-color var(--transition);
  height: 100%;
}
.service-card:hover { border-color: rgba(93,169,233,0.4); }
.service-icon-wrap {
  width: 48px; height: 48px;
  background: var(--brand-dark);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--brand-light);
  margin-bottom: 1rem;
  transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-icon-wrap { background: var(--brand-royal); color: #fff; }
.service-title { font-weight: 600; color: var(--text-heading); font-size: 0.9rem; transition: color var(--transition); }
.service-card:hover .service-title { color: var(--brand-light); }
.service-desc  { font-size: 0.8rem; color: var(--text-body); margin-top: 0.5rem; flex: 1; line-height: 1.5; }
.service-arrow { color: var(--brand-cyan); margin-top: 1rem; opacity: 0; transition: opacity var(--transition); font-size: 1.2rem; }
.service-card:hover .service-arrow { opacity: 1; }

/* ── Timeline ──────────────────────────────────────────────── */
.timeline-wrap { position: relative; }
.timeline-line {
  display: none;
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--brand-cyan), var(--brand-royal), transparent);
  transform: translateX(-50%);
}
@media (min-width: 768px) { .timeline-line { display: block; } }

.timeline-steps { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 768px) { .timeline-steps { gap: 3rem; } }

.timeline-step {
  position: relative;
}
@media (min-width: 768px) {
  .timeline-step { width: 50%; }
  .timeline-step:nth-child(odd)  { margin-right: auto; padding-right: 3rem; text-align: right; }
  .timeline-step:nth-child(even) { margin-left: auto;  padding-left: 3rem; }
}

.timeline-dot {
  display: none;
  position: absolute; top: 1rem;
  width: 14px; height: 14px;
  background: var(--brand-cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0,200,240,0.4);
  outline: 4px solid #0f2238;
}
@media (min-width: 768px) { .timeline-dot { display: block; } }
.timeline-step:nth-child(odd)  .timeline-dot { right: -7px; }
.timeline-step:nth-child(even) .timeline-dot { left: -7px; }

.timeline-step-num  { font-size: 0.875rem; font-weight: 700; color: var(--brand-cyan); margin-bottom: 0.25rem; }
.timeline-step-title{ color: var(--text-heading); font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.timeline-step-desc { color: var(--text-body); font-size: 0.875rem; line-height: 1.6; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }

.testimonial-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: 100%;
}
.testimonial-quote {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 3rem; line-height: 1;
  color: rgba(93,169,233,0.15);
  font-family: Georgia, serif;
}
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.star { color: var(--brand-light); font-size: 0.875rem; }
.testimonial-text { font-size: 0.875rem; line-height: 1.7; color: var(--text-body); font-style: italic; }
.testimonial-footer { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.testimonial-name { color: var(--text-heading); font-weight: 600; font-size: 0.875rem; }
.testimonial-loc  { font-size: 0.75rem; color: var(--brand-royal); margin-top: 0.15rem; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section { max-width: 48rem; margin-inline: auto; }
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding-block: 1.25rem;
  text-align: left;
  color: var(--text-heading);
  font-weight: 500; font-size: 0.95rem;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--brand-cyan); }
.faq-icon { font-size: 1.25rem; color: var(--brand-light); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding-bottom: 1.25rem; font-size: 0.875rem; line-height: 1.7; color: var(--text-body); }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-wrap {
  position: relative; overflow: hidden;
  background: linear-gradient(to right, var(--brand-dark), var(--brand-royal), var(--brand-dark));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1200&q=60');
  background-size: cover; background-position: center;
  opacity: 0.1;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; color: #fff; }
.cta-desc  { max-width: 36rem; margin: 1rem auto 0; color: rgba(255,255,255,0.7); }
.cta-actions { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .cta-actions { flex-direction: row; justify-content: center; } }
@media (min-width: 768px) { .cta-wrap { padding: 3rem; } }

/* ── Page Headers ──────────────────────────────────────────── */
.page-header {
  background: var(--brand-dark);
  border-bottom: 1px solid var(--border);
}
.page-header-inner { padding-block: 2.5rem 3rem; }
@media (min-width: 768px) { .page-header-inner { padding-block: 3rem; } }

.page-eyebrow { font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--brand-light); margin-bottom: 0.5rem; }
.page-title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 600; color: #fff; }
.page-subtitle { margin-top: 0.75rem; max-width: 36rem; color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.6; }

/* ── Contact page ──────────────────────────────────────────── */
.contact-grid {
  display: grid; gap: 2rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 3fr 2fr; gap: 2.5rem; } }

.form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
@media (min-width: 768px) { .form-card { padding: 2rem; } }

.form-card h2 { color: var(--text-heading); font-size: 1.25rem; font-weight: 600; margin-bottom: 1.5rem; }

.contact-info-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .contact-info-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .contact-info-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  display: flex; gap: 1rem; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(18,78,140,0.3);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-light);
}
.contact-info-label { font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); }
.contact-info-value { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.9); line-height: 1.4; }
.contact-info-value a { transition: color var(--transition); }
.contact-info-value a:hover { color: var(--brand-light); }

.map-wrap { margin-top: 2.5rem; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; filter: grayscale(20%) contrast(1.05); }

/* ── Forms ─────────────────────────────────────────────────── */
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2,1fr); } }

.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.form-label { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.7); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem;
  color: #fff;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand-light);
  box-shadow: 0 0 0 3px rgba(93,169,233,0.15);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-select option { background: var(--brand-dark); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-error { font-size: 0.75rem; color: #f87171; margin-top: 0.25rem; }

.form-success {
  background: rgba(0,200,240,0.1);
  border: 1px solid rgba(0,200,240,0.3);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: var(--brand-cyan);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: none;
}
.form-alert {
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.3);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: #f87171;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: none;
}

/* ── About page ────────────────────────────────────────────── */
.about-grid {
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: repeat(2,1fr); } }

.about-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.about-text h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; color: var(--text-heading); }
.about-text p   { color: var(--text-body); line-height: 1.8; margin-top: 1.5rem; }

.values-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px)  { .values-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3,1fr); } }

.value-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: 100%;
  transition: border-color var(--transition);
}
.value-card:hover { border-color: rgba(93,169,233,0.4); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-title { color: var(--text-heading); font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; }
.value-text  { color: rgba(255,255,255,0.75); font-size: 0.875rem; line-height: 1.6; flex: 1; }

/* ── Réalisations ──────────────────────────────────────────── */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--brand-royal), var(--brand-light));
  border-color: transparent;
  color: #fff;
}

.projects-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px)  { .projects-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(3,1fr); } }

.project-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.project-card:hover { border-color: rgba(93,169,233,0.4); transform: translateY(-4px); }
.project-card[data-hidden="true"] { display: none; }

.project-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.project-card:hover .project-img-wrap img {
  transform: scale(1.04);
}

.project-info { padding: 1.25rem; }
.project-title    { color: var(--text-heading); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.25rem; }
.project-location { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.project-desc     { font-size: 0.8rem; color: var(--text-body); line-height: 1.5; margin-bottom: 1rem; }
.project-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.project-meta-item {
  font-size: 0.7rem; color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.25rem;
  padding: 0.2rem 0.5rem;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--brand-dark);
  color: #fff;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; gap: 3rem;
}
@media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

.footer-heading { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-cyan); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link { font-size: 0.875rem; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-link:hover { color: #fff; }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.footer-icon { color: var(--brand-cyan); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-badges { display: flex; gap: 1.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ── WhatsApp Float ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

/* ── Bouton scroll-to-top ───────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 5.6rem;
  right: calc(1.5rem + 12px);
  z-index: 50;
  width: 32px;
  height: 32px;
  background: linear-gradient(145deg, #0f2a4a, #1a4a8a);
  border: 1px solid rgba(0,200,240,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 0 0 rgba(0,200,240,0);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease,
              box-shadow 0.25s ease, border-color 0.25s ease;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  border-color: var(--brand-cyan);
  box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 0 16px rgba(0,200,240,0.25);
  color: #fff;
}

/* ── Gallery CTA ───────────────────────────────────────────── */
.gallery-cta { text-align: center; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.gallery-cta p { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }

/* ── Responsive helpers ────────────────────────────────────── */
@media (max-width: 1023px) {
  .hidden-mobile { display: none !important; }
}

/* ── Page Loader ─────────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0B1F3A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.page-loader.loader-hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: loader-appear 0.4s ease both;
}

@keyframes loader-appear {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

.loader-logo-wrap {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.loader-brand-name {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.15em;
}

.loader-brand-sub {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: #00C8F0;
  text-transform: uppercase;
}

.loader-progress-wrap {
  margin-top: 2rem;
  width: 8rem;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: #00C8F0;
  border-radius: 9999px;
  animation: loader-fill 1s ease-in-out forwards;
}

@keyframes loader-fill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ============================================================
   AFRICOT — Section & Popup Airbnb
   ============================================================ */

/* ── Variables Airbnb ───────────────────────────────────────── */
:root { --airbnb: #FF5A5F; --airbnb-dark: #c0393e; }

/* ── Logo Bélo ─────────────────────────────────────────────── */
.airbnb-belo    { width: 28px; height: 28px; color: var(--airbnb); }
.airbnb-belo-sm { width: 18px; height: 18px; color: var(--airbnb); flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   POPUP
   ════════════════════════════════════════════════════════════ */
.airbnb-popup-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(5, 12, 25, 0.85);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.airbnb-popup-overlay.visible { opacity: 1; visibility: visible; }

.airbnb-popup-card {
  position: relative;
  background: #0f2238;
  border: 1px solid rgba(255,90,95,0.2);
  border-radius: 1.25rem;
  padding: 2rem;
  max-width: 660px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  animation: popup-in 0.4s cubic-bezier(0.34,1.4,0.64,1) both;
}
@keyframes popup-in {
  from { transform: scale(0.92) translateY(16px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

.airbnb-popup-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.airbnb-popup-close:hover { background: rgba(255,90,95,0.15); color: var(--airbnb); }

.airbnb-popup-header {
  display: flex; align-items: center;
  margin-bottom: 1.1rem;
  padding-right: 3rem;
}

.airbnb-new-badge {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--airbnb);
  background: rgba(255,90,95,0.12);
  border: 1px solid rgba(255,90,95,0.3);
  border-radius: 9999px; padding: 0.25rem 0.75rem;
}

.airbnb-logo {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 1.15rem; font-weight: 700; color: var(--airbnb);
  letter-spacing: -0.02em; font-family: var(--font-display);
}

.airbnb-popup-title {
  font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 0.65rem;
}
.airbnb-popup-title em { font-style: normal; color: var(--airbnb); }

.airbnb-popup-desc {
  font-size: 0.9rem; color: var(--text-body); line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Avant / Après popup — redesign */
.airbnb-popup-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.apc-item {
  position: relative;
  border-radius: 0.875rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.apc-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.apc-item:hover img { transform: scale(1.04); }

.apc-overlay {
  position: absolute; inset: 0; pointer-events: none;
}
.apc-overlay--before {
  background: linear-gradient(to top, rgba(11,31,58,0.7) 0%, transparent 55%);
}
.apc-overlay--after {
  background: linear-gradient(to top, rgba(255,90,95,0.55) 0%, transparent 55%);
}

.apc-badge {
  position: absolute; bottom: 0.6rem; left: 0.6rem;
  font-size: 0.62rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; padding: 0.25rem 0.65rem;
  border-radius: 9999px; color: #fff;
}
.apc-badge--before { background: rgba(11,31,58,0.9); border: 1px solid rgba(255,255,255,0.2); }
.apc-badge--after  { background: var(--airbnb); }

.apc-rating {
  position: absolute; top: 0.6rem; right: 0.6rem;
  font-size: 0.6rem; font-weight: 700; color: #fff;
  background: rgba(245,197,24,0.2);
  border: 1px solid rgba(245,197,24,0.5);
  border-radius: 9999px; padding: 0.2rem 0.5rem;
}

.apc-divider {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.apc-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--airbnb);
  color: #fff; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(255,90,95,0.45);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .airbnb-popup-compare {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .apc-divider {
    grid-column: span 2;
    order: 3;
    display: none;
  }
}

/* Features */
.airbnb-popup-features {
  display: flex; gap: 0.5rem; margin-bottom: 1.5rem;
}
.apf {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 0.35rem; text-align: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75rem; padding: 0.75rem 0.5rem;
}
.apf-icon { font-size: 1.3rem; }
.apf-text { font-size: 0.65rem; font-weight: 600; color: var(--text-body); line-height: 1.3; }

.airbnb-popup-cta {
  display: block; text-align: center;
  background: var(--airbnb); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.04em; border-radius: 0.75rem; padding: 0.9rem;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
}
.airbnb-popup-cta:hover { background: var(--airbnb-dark); transform: translateY(-1px); }

/* ════════════════════════════════════════════════════════════
   SECTION AIRBNB (homepage)
   ════════════════════════════════════════════════════════════ */
.airbnb-section { background: var(--brand-dark); }

.airbnb-eyebrow {
  display: flex; align-items: center; gap: 0.4rem;
  color: var(--airbnb) !important;
}

/* Slider */
.airbnb-slider-wrap {
  position: relative; margin-top: 2.5rem;
  border-radius: 1.25rem; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,90,95,0.12);
}

.airbnb-slider { position: relative; }

.airbnb-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}
@media (max-width: 767px) { .airbnb-slide { grid-template-columns: 1fr; min-height: auto; } }
.airbnb-slide.active { display: grid; }

.airbnb-slide-img {
  position: relative; overflow: hidden;
}
.airbnb-slide-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.airbnb-slide:hover .airbnb-slide-img img { transform: scale(1.03); }
.airbnb-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(11,31,58,0.6));
}

.airbnb-slide-content {
  background: #0f2238; padding: 2.5rem 2rem;
  display: flex; flex-direction: column; justify-content: center; gap: 0.85rem;
}

.airbnb-slide-num {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--airbnb); text-transform: uppercase;
}

.airbnb-slide-title {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700; color: #fff; line-height: 1.2;
}

.airbnb-slide-desc {
  font-size: 0.875rem; color: var(--text-body); line-height: 1.7;
}

.airbnb-slide-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
}
.airbnb-slide-list li {
  font-size: 0.82rem; color: var(--text-body);
  padding-left: 1.2rem; position: relative;
}
.airbnb-slide-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--airbnb); font-weight: 700; font-size: 0.75rem;
}

/* Navigation slider */
.airbnb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 5;
}
.airbnb-nav:hover { background: var(--airbnb); border-color: var(--airbnb); }
.airbnb-prev { left: 1rem; }
.airbnb-next { right: 1rem; }

.airbnb-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.4rem; z-index: 5;
}
.airbnb-dot {
  width: 7px; height: 7px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.3); transition: background 0.2s, transform 0.2s;
}
.airbnb-dot.active { background: var(--airbnb); transform: scale(1.3); }

/* CTA section */
.airbnb-section-cta {
  margin-top: 2.5rem; text-align: center; display: flex;
  flex-direction: column; align-items: center; gap: 0.65rem;
}
.airbnb-cta-note {
  font-size: 0.78rem; color: var(--text-muted); font-style: italic;
}

/* ════════════════════════════════════════════════════════════
   BANDEAU AIRBNB (pages secondaires)
   ════════════════════════════════════════════════════════════ */
.airbnb-banner-section {
  background: linear-gradient(135deg, #1a0608 0%, #2d0f12 50%, #1a0608 100%);
  border-top: 1px solid rgba(255,90,95,0.2);
  border-bottom: 1px solid rgba(255,90,95,0.2);
  padding: 1.25rem 0;
}

.airbnb-banner-inner {
  position: relative;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-right: 2.5rem;
}

.airbnb-banner-left {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}

.airbnb-banner-logo {
  display: flex; align-items: center; gap: 0.4rem;
  flex-shrink: 0;
}

.airbnb-banner-brandname {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 700; color: var(--airbnb); letter-spacing: -0.02em;
}

.airbnb-banner-title {
  font-size: 0.9rem; font-weight: 700; color: #fff; margin: 0;
}
.airbnb-banner-sub {
  font-size: 0.72rem; color: rgba(255,255,255,0.5);
  margin: 0.2rem 0 0; letter-spacing: 0.03em;
}

.airbnb-banner-cta {
  flex-shrink: 0; font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
  color: #fff; background: var(--airbnb);
  border-radius: 0.6rem; padding: 0.6rem 1.25rem;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.airbnb-banner-cta:hover { background: var(--airbnb-dark); transform: translateY(-1px); }

/* ── Bandeau Airbnb dans le header (global) ─────────────────── */
.airbnb-header-banner {
  background: linear-gradient(135deg, #1a0406 0%, #2a0b0d 50%, #1a0406 100%);
  border-top: 1px solid rgba(255,90,95,0.15);
  padding: 0.35rem 0;
}
.airbnb-header-banner-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.airbnb-hb-left {
  display: flex; align-items: center; gap: 0.55rem;
  flex-wrap: wrap; min-width: 0;
}
.airbnb-hb-brand {
  font-family: var(--font-display); font-size: 0.85rem;
  font-weight: 700; color: var(--airbnb); letter-spacing: -0.02em;
  flex-shrink: 0;
}
.airbnb-hb-sep { color: rgba(255,255,255,0.2); flex-shrink: 0; }
.airbnb-hb-text {
  font-size: 0.72rem; color: rgba(255,255,255,0.6);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.airbnb-hb-link {
  flex-shrink: 0; font-size: 0.72rem; font-weight: 700;
  color: var(--airbnb); letter-spacing: 0.04em;
  border: 1px solid rgba(255,90,95,0.4);
  border-radius: 9999px; padding: 0.2rem 0.75rem;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.airbnb-hb-link:hover { background: var(--airbnb); color: #fff; }

/* ── Lien nav Airbnb (desktop) ──────────────────────────────── */
.nav-link-airbnb {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.875rem; font-weight: 600;
  color: var(--airbnb);
  position: relative;
  transition: color 0.2s;
}
.nav-link-airbnb::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--airbnb);
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-link-airbnb:hover,
.nav-link-airbnb--active { color: var(--airbnb-dark); }
.nav-link-airbnb--active::after,
.nav-link-airbnb:hover::after { transform: scaleX(1); }

/* ── Lien nav Airbnb (mobile) ───────────────────────────────── */
.nav-mobile-airbnb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.1rem; font-weight: 700;
  color: var(--airbnb); padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,90,95,0.2);
  transition: color 0.2s;
}
.nav-mobile-airbnb--active { color: var(--airbnb-dark); }

/* ── Page Airbnb — Hero ─────────────────────────────────────── */
.airbnb-hero {
  position: relative; min-height: 52svh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.airbnb-hero-bg { position: absolute; inset: 0; }
.airbnb-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.airbnb-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,2,4,0.92), rgba(60,10,15,0.75), rgba(11,31,58,0.6));
}
.airbnb-hero-content {
  position: relative; z-index: 5;
  padding-block: 2rem; max-width: 680px;
  width: 100%;
}
.airbnb-hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--airbnb);
  background: rgba(255,90,95,0.12); border: 1px solid rgba(255,90,95,0.3);
  border-radius: 9999px; padding: 0.3rem 0.8rem; margin-bottom: 1.25rem;
}
.airbnb-hero-title {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 1rem;
}
.airbnb-hero-title em { font-style: normal; color: var(--airbnb); }
.airbnb-hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.8);
  line-height: 1.7; margin-bottom: 2rem; max-width: 36rem;
}
.airbnb-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.airbnb-btn-primary {
  display: inline-flex; align-items: center;
  background: var(--airbnb); color: #fff; text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  padding: 0.85rem 1.75rem; border-radius: 0.75rem;
  transition: background 0.2s, transform 0.15s;
}
.airbnb-btn-primary:hover { background: var(--airbnb-dark); transform: translateY(-2px); }

.airbnb-btn-outline {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.3); color: #fff; text-decoration: none;
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  padding: 0.85rem 1.75rem; border-radius: 0.75rem;
  transition: border-color 0.2s, background 0.2s;
}
.airbnb-btn-outline:hover { border-color: var(--airbnb); color: var(--airbnb); }

/* ── Avant / Après grid ─────────────────────────────────────── */
.airbnb-ba-grid {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem; align-items: center; margin-top: 2rem;
}
@media (max-width: 640px) {
  .airbnb-ba-grid { grid-template-columns: 1fr; }
  .airbnb-ba-arrow-center { display: none; }
}
.airbnb-ba-card { border-radius: 1rem; overflow: hidden; }
.airbnb-ba-img-wrap { position: relative; aspect-ratio: 4/3; }
.airbnb-ba-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.airbnb-ba-chip {
  position: absolute; bottom: 0.75rem; left: 0.75rem;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 0.25rem 0.65rem;
  background: rgba(11,31,58,0.85); color: #fff;
  border-radius: 9999px; border: 1px solid rgba(255,255,255,0.2);
}
.airbnb-ba-chip--after { background: var(--airbnb); border-color: transparent; }
.airbnb-ba-arrow-center { display: flex; justify-content: center; }
.airbnb-ba-arrow-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--airbnb); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
}

/* ── Grille prestations ─────────────────────────────────────── */
.airbnb-services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; margin-top: 2.5rem;
}
@media (max-width: 767px) { .airbnb-services-grid { grid-template-columns: 1fr; } }

.airbnb-service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem; padding: 1.75rem;
  transition: border-color 0.2s, background 0.2s;
}
.airbnb-service-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,90,95,0.25);
}
.airbnb-service-icon {
  width: 48px; height: 48px; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.airbnb-service-card h3 {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 700; color: #fff; margin-bottom: 0.6rem;
}
.airbnb-service-card p {
  font-size: 0.85rem; color: var(--text-body);
  line-height: 1.65; margin-bottom: 1rem;
}
.airbnb-service-card ul { display: flex; flex-direction: column; gap: 0.4rem; }
.airbnb-service-card li {
  font-size: 0.78rem; color: var(--text-muted);
  padding-left: 1.1rem; position: relative;
}
.airbnb-service-card li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--airbnb); font-weight: 700;
}

/* ── Steps / Processus ──────────────────────────────────────── */
.airbnb-steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 1rem; align-items: start; margin-top: 2.5rem;
}
@media (max-width: 1023px) {
  .airbnb-steps { grid-template-columns: 1fr 1fr; }
  .airbnb-step-arrow { display: none; }
}
@media (max-width: 640px) { .airbnb-steps { grid-template-columns: 1fr; } }

.airbnb-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem; padding: 1.5rem; text-align: center;
}
.airbnb-step-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--airbnb); opacity: 0.7; line-height: 1; margin-bottom: 0.75rem;
}
.airbnb-step h4 {
  font-family: var(--font-display); font-size: 0.95rem;
  font-weight: 700; color: #fff; margin-bottom: 0.5rem;
}
.airbnb-step p { font-size: 0.8rem; color: var(--text-body); line-height: 1.6; }
.airbnb-step-arrow {
  font-size: 1.5rem; color: rgba(255,90,95,0.4);
  display: flex; align-items: center; padding-top: 2rem;
}

/* ── Checkbox Airbnb ────────────────────────────────────────── */
.form-check-label {
  display: flex; align-items: center; gap: 0.75rem; cursor: pointer;
  padding: 0.75rem 1rem;
  background: rgba(255,90,95,0.05);
  border: 1px solid rgba(255,90,95,0.2);
  border-radius: 0.75rem;
  transition: background 0.2s, border-color 0.2s;
}
.form-check-label:hover { background: rgba(255,90,95,0.09); border-color: rgba(255,90,95,0.4); }

.form-check-input {
  width: 18px; height: 18px; flex-shrink: 0;
  accent-color: #FF5A5F; cursor: pointer;
}

.form-check-text {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.875rem; font-weight: 600; color: var(--text-heading);
}

/* ════════════════════════════════════════════════════════════
   GALERIE PHOTOS — Page Airbnb (grille 2×2)
   ════════════════════════════════════════════════════════════ */
.airbnb-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 160px;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.apg-item {
  position: relative;
  border-radius: 1.15rem;
  overflow: hidden;
}

/* Première photo plus grande (span 2 colonnes) */
.apg-item--main {
  grid-column: span 2;
  border-radius: 1.25rem;
}

.apg-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.apg-item:hover img { transform: scale(1.04); }

.apg-label {
  position: absolute; bottom: 0.75rem; left: 0.75rem; z-index: 2;
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: #fff;
  background: rgba(11,31,58,0.85); padding: 0.25rem 0.7rem;
  border-radius: 9999px; backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 767px) {
  .airbnb-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 120px;
    gap: 0.5rem;
  }
  .apg-item--main { grid-column: span 2; }
}

/* ════════════════════════════════════════════════════════════
   FEATURE ROWS — Prestations alternées image + texte
   ════════════════════════════════════════════════════════════ */
.airbnb-feature-list { margin-top: 1.75rem; }

.airbnb-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.airbnb-feature-row:last-child { border-bottom: none; }

.airbnb-feature-row--rev .airbnb-feature-media { order: 2; }
.airbnb-feature-row--rev .airbnb-feature-body  { order: 1; }

.airbnb-feature-media {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.07);
}
.airbnb-feature-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.airbnb-feature-media:hover img { transform: scale(1.03); }

.airbnb-feature-body {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.airbnb-feature-icon-wrap {
  width: 44px; height: 44px; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.airbnb-feature-h {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700; color: #fff; line-height: 1.2;
}
.airbnb-feature-p {
  font-size: 0.85rem; color: var(--text-body); line-height: 1.65;
}
.airbnb-feature-ul {
  list-style: none; display: flex; flex-direction: column; gap: 0.45rem;
}
.airbnb-feature-ul li {
  font-size: 0.82rem; color: rgba(255,255,255,0.75);
  padding-left: 1.2rem; position: relative;
}
.airbnb-feature-ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--airbnb); font-weight: 700;
}

@media (max-width: 767px) {
  .airbnb-feature-row {
    grid-template-columns: 1fr;
    gap: 1rem; padding: 1.5rem 0;
  }
  .airbnb-feature-row--rev .airbnb-feature-media { order: 0; }
  .airbnb-feature-row--rev .airbnb-feature-body  { order: 1; }
}
