/* ============================================================
   KMENS GROUP — Premium Website Stylesheet
   Version: 1.0
   Mobile-First, French West Africa
   ============================================================ */

/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800&display=swap');

/* ─── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Brand Colours */
  --blue-900: #0a1f44;
  --blue-800: #0d2856;
  --blue-700: #1a3a6b;
  --blue-600: #1e4080;
  --blue-500: #1a56db;
  --blue-400: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;

  --orange-600: #d94f00;
  --orange-500: #e8540a;
  --orange-400: #f06728;
  --orange-300: #f97316;
  --orange-100: #ffedd5;
  --orange-50:  #fff7ed;

  --white:     #ffffff;
  --grey-50:   #f8fafc;
  --grey-100:  #f1f5f9;
  --grey-200:  #e2e8f0;
  --grey-300:  #cbd5e1;
  --grey-400:  #94a3b8;
  --grey-500:  #64748b;
  --grey-600:  #475569;
  --grey-700:  #334155;
  --grey-800:  #1e293b;
  --grey-900:  #0f172a;

  /* Semantic */
  --color-primary:       var(--blue-800);
  --color-primary-dark:  var(--blue-900);
  --color-primary-light: var(--blue-500);
  --color-accent:        var(--orange-500);
  --color-accent-dark:   var(--orange-600);
  --color-accent-light:  var(--orange-300);
  --color-text:          var(--grey-800);
  --color-text-light:    var(--grey-500);
  --color-text-inverse:  var(--white);
  --color-bg:            var(--white);
  --color-bg-subtle:     var(--grey-50);
  --color-border:        var(--grey-200);

  /* Typography */
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  --leading-tight:  1.25;
  --leading-snug:   1.375;
  --leading-normal: 1.5;
  --leading-relaxed:1.625;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 1.25rem;

  /* Borders */
  --radius-sm:  0.375rem;
  --radius-md:  0.625rem;
  --radius-lg:  1rem;
  --radius-xl:  1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.10);
  --shadow-blue: 0 8px 32px rgba(13,40,86,0.25);
  --shadow-orange: 0 8px 32px rgba(232,84,10,0.30);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
  --transition-spring: 350ms cubic-bezier(0.34,1.56,0.64,1);

  /* Z-index */
  --z-nav:     100;
  --z-modal:   200;
  --z-overlay: 150;
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: var(--leading-tight);
  color: var(--color-primary-dark);
}

/* ─── Skip Link ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-accent);
  color: var(--white);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: 999;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: var(--space-4); }

/* ─── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ─── Section Padding ──────────────────────────────────────── */
.section {
  padding-block: var(--space-16);
}
.section--lg {
  padding-block: var(--space-20);
}

/* ─── Section Label ────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
}

/* ─── Section Headers ──────────────────────────────────────── */
.section-header {
  margin-bottom: var(--space-12);
}
.section-header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-4);
}
.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
  max-width: 56ch;
}

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  min-height: 48px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition-fast);
}
.btn:hover::before { background: rgba(255,255,255,0.08); }
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--color-accent);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  background: var(--color-accent-dark);
  box-shadow: 0 12px 40px rgba(232,84,10,0.40);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--color-primary);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn--secondary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

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

.btn--outline-dark {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn--outline-dark:hover {
  background: var(--color-primary);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--color-accent);
  padding-inline: 0;
  min-height: auto;
}
.btn--ghost:hover { gap: var(--space-3); }

.btn--lg {
  padding: 1.1rem 2.25rem;
  font-size: var(--text-base);
  min-height: 56px;
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--text-xs);
  min-height: 40px;
}

.btn--full { width: 100%; }

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ─── Badge ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge--blue {
  background: var(--blue-100);
  color: var(--blue-700);
}
.badge--orange {
  background: var(--orange-100);
  color: var(--orange-600);
}
.badge--white {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* ─── Image Placeholder ─────────────────────────────────────── */
.img-placeholder {
  width: 100%;
  background: linear-gradient(135deg, var(--blue-100) 0%, var(--grey-100) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: var(--grey-400);
  font-size: var(--text-sm);
  font-weight: 500;
  text-align: center;
  padding: var(--space-8);
  border-radius: var(--radius-md);
}
.img-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

/* ─── Divider ───────────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}
.divider--center { margin-inline: auto; }

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background: transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}
.navbar.scrolled {
  background: var(--blue-900);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-inline: var(--container-pad);
  max-width: var(--container-max);
  margin-inline: auto;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  text-decoration: none;
}
.navbar__logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--orange-300) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.navbar__logo-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.navbar__logo-tagline {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* Desktop Nav */
.navbar__nav {
  display: none;
  align-items: center;
  gap: var(--space-1);
}
.navbar__nav-link {
  display: block;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}
.navbar__nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base);
}
.navbar__nav-link:hover { color: var(--white); }
.navbar__nav-link:hover::after,
.navbar__nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.navbar__nav-link.active { color: var(--white); font-weight: 600; }

.navbar__cta {
  display: none;
}

/* Hamburger */
.navbar__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  aria-label: "Menu";
}
.navbar__toggle:hover { background: rgba(255,255,255,0.1); }
.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}
.navbar__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.navbar__mobile {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--blue-900);
  padding: var(--space-6) var(--container-pad);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  z-index: calc(var(--z-nav) - 1);
  overflow-y: auto;
}
.navbar__mobile.open { transform: translateX(0); }

.navbar__mobile-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-4);
  font-size: var(--text-lg);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar__mobile-link:hover,
.navbar__mobile-link.active {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  padding-left: var(--space-6);
}
.navbar__mobile-link.active { color: var(--orange-300); }

.navbar__mobile-cta {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-800) 50%, var(--blue-700) 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(232,84,10,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59,130,246,0.12) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(232,84,10,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: var(--space-12);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(232,84,10,0.15);
  border: 1px solid rgba(232,84,10,0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-300);
  margin-bottom: var(--space-6);
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-300);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__title {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-6);
}
.hero__title em {
  font-style: normal;
  color: var(--orange-300);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  max-width: 54ch;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat {
  text-align: center;
}
.hero__stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.hero__stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
}

/* ─── SERVICES OVERVIEW ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--orange-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.service-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  flex-shrink: 0;
}
.service-card__icon--blue {
  background: var(--blue-50);
  color: var(--blue-700);
}
.service-card__icon--orange {
  background: var(--orange-50);
  color: var(--orange-600);
}
.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-3);
}
.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
}
.service-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}
.service-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--grey-700);
}
.service-card__feature svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ─── WHY CHOOSE US ─────────────────────────────────────────── */
.why-section {
  background: var(--blue-900);
  color: var(--white);
}
.why-section .section-title { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all var(--transition-base);
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,84,10,0.3);
  transform: translateY(-2px);
}

.why-card__num {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: rgba(232,84,10,0.2);
  line-height: 1;
  margin-bottom: var(--space-4);
}
.why-card__title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}
.why-card__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: var(--leading-relaxed);
}

/* ─── FEATURED CARDS (Vehicles & Properties) ────────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.item-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.item-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.item-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.item-card__image .img-placeholder {
  height: 100%;
  border-radius: 0;
  aspect-ratio: auto;
}

.item-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
}

.item-card__body {
  padding: var(--space-5);
}
.item-card__category {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.item-card__title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-2);
}
.item-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: var(--grey-500);
  margin-bottom: var(--space-4);
}
.item-card__meta span {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.item-card__meta svg {
  width: 14px;
  height: 14px;
}
.item-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
}
.item-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}
.item-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary-dark);
}
.item-card__price-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--grey-500);
}

/* ─── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--orange-600) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  pointer-events: none;
}
.cta-banner__tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.cta-banner__title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}
.cta-banner__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
  position: relative;
  z-index: 1;
}
.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  z-index: 1;
}

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
  color: var(--orange-400);
}
.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
}
.testimonial-card__text {
  font-size: var(--text-sm);
  color: var(--grey-700);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--grey-900);
}
.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--grey-500);
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.75);
}

.footer__main {
  padding-block: var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {
  margin-bottom: var(--space-10);
}
.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-4);
  max-width: 36ch;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.footer__link:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
}

.footer__bottom {
  padding-block: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}
.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}

/* ─── WHATSAPP FAB ──────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-5);
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all var(--transition-spring);
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.whatsapp-fab svg { width: 28px; height: 28px; }

/* ─── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-800) 100%);
  padding-top: calc(72px + var(--space-16));
  padding-bottom: var(--space-16);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--color-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-300);
  margin-bottom: var(--space-3);
}
.page-hero__title {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-4);
}
.page-hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  line-height: var(--leading-relaxed);
  max-width: 52ch;
}

/* ─── FILTER BAR ────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}
.filter-btn {
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  border: 2px solid var(--color-border);
  color: var(--grey-600);
  background: var(--white);
  transition: all var(--transition-fast);
  min-height: 40px;
}
.filter-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.filter-btn.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--white);
}

/* ─── VEHICLE SPEC LIST ─────────────────────────────────────── */
.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.spec-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--grey-600);
}
.spec-item svg {
  width: 14px;
  height: 14px;
  color: var(--blue-500);
  flex-shrink: 0;
}

/* ─── FORM ──────────────────────────────────────────────────── */
.form-section {
  background: var(--grey-50);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: var(--space-5);
}
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: var(--space-2);
}
.form-label span {
  color: var(--color-accent);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 48px;
}
.form-control:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
}
.form-control::placeholder { color: var(--grey-400); }

select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 18px; padding-right: 2.5rem; }

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

/* ─── CONTACT INFO CARDS ─────────────────────────────────────── */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}
.contact-info-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card__icon--blue {
  background: var(--blue-50);
  color: var(--blue-700);
}
.contact-info-card__icon--orange {
  background: var(--orange-50);
  color: var(--orange-600);
}
.contact-info-card__icon--green {
  background: #f0fdf4;
  color: #16a34a;
}
.contact-info-card__icon svg { width: 24px; height: 24px; }
.contact-info-card__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: var(--space-1);
}
.contact-info-card__value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--grey-900);
  line-height: var(--leading-normal);
}
.contact-info-card__value a {
  color: inherit;
  transition: color var(--transition-fast);
}
.contact-info-card__value a:hover { color: var(--color-accent); }

/* ─── ABOUT / HISTOIRE ──────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-50), var(--orange-50));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}
.value-card__icon svg { width: 24px; height: 24px; }
.value-card__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-2);
}
.value-card__desc {
  font-size: var(--text-sm);
  color: var(--grey-500);
  line-height: var(--leading-relaxed);
}

.timeline {
  position: relative;
  padding-left: var(--space-8);
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--blue-300) 100%);
  border-radius: var(--radius-full);
}
.timeline-item {
  position: relative;
  margin-bottom: var(--space-8);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-8) + 10px);
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(232,84,10,0.2);
}
.timeline-item__year {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.timeline-item__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: var(--space-2);
}
.timeline-item__desc {
  font-size: var(--text-sm);
  color: var(--grey-500);
  line-height: var(--leading-relaxed);
}

/* ─── GPS SERVICE BOX ───────────────────────────────────────── */
.gps-box {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.gps-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(232,84,10,0.1);
}
.gps-box__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-300);
  margin-bottom: var(--space-3);
}
.gps-box__title {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-4);
}
.gps-box__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}
.gps-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.gps-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
}
.gps-feature svg { width: 16px; height: 16px; color: var(--orange-300); flex-shrink: 0; }

/* ─── PROPERTY FEATURES ─────────────────────────────────────── */
.prop-features {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.prop-feature {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--grey-500);
}
.prop-feature svg { width: 14px; height: 14px; }

/* ─── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--grey-50);
  padding-block: var(--space-8);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-bar__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6) var(--space-10);
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.trust-bar__item svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
}
.trust-bar__item-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--grey-800);
}
.trust-bar__item-text span {
  font-size: var(--text-xs);
  color: var(--grey-500);
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE — sm (480px) ───────────────────────────────── */
@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .cta-banner__actions {
    flex-direction: row;
    justify-content: center;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── RESPONSIVE — md (768px) ───────────────────────────────── */
@media (min-width: 768px) {
  :root { --container-pad: 2rem; }

  .section-title { font-size: var(--text-4xl); }

  .hero__title { font-size: var(--text-5xl); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }

  .page-hero__title { font-size: var(--text-5xl); }
}

/* ─── RESPONSIVE — lg (1024px) ──────────────────────────────── */
@media (min-width: 1024px) {
  :root { --container-pad: 2.5rem; }

  .navbar__nav { display: flex; }
  .navbar__cta { display: flex; }
  .navbar__toggle { display: none; }
  .navbar__mobile { display: none !important; }

  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(4, 1fr); }
  .footer__cols { grid-template-columns: repeat(4, 1fr); }

  .form-section .container { max-width: 760px; }

  .cta-banner__actions { flex-direction: row; justify-content: center; }
}

/* ─── RESPONSIVE — xl (1280px) ──────────────────────────────── */
@media (min-width: 1280px) {
  .hero__title { font-size: var(--text-6xl); }
  .section-title { font-size: var(--text-5xl); }
}

/* ─── Print ─────────────────────────────────────────────────── */
@media print {
  .navbar, .whatsapp-fab, .navbar__toggle { display: none !important; }
  body { font-size: 12pt; }
}

/* ─── Reduced Motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1 !important; transform: none !important; }
}

/* ─── Modal Reservation ──────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.active .modal {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--grey-500);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover {
  background: var(--grey-100);
  color: var(--grey-800);
}
.modal-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--grey-200);
}
.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  color: var(--grey-900);
}
.modal-price {
  color: #d4a373;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.modal-desc {
  font-size: 0.95rem;
  color: var(--grey-600);
  line-height: 1.5;
}
.modal-body {
  padding: 1.5rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--grey-800);
  margin-bottom: 0.5rem;
}
.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--grey-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 40, 86, 0.1);
}
.form-group input::placeholder {
  color: var(--grey-400);
}
.btn--whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}
.btn--whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
}
.btn--whatsapp:active {
  transform: translateY(0);
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */

/* Fade-up animation with JS Observer */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero text entrance */
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__badge    { animation: heroSlideIn 0.6s ease both 0.1s; }
.hero__title    { animation: heroSlideIn 0.7s ease both 0.25s; }
.hero__subtitle { animation: heroSlideIn 0.7s ease both 0.4s; }
.hero__actions  { animation: heroSlideIn 0.7s ease both 0.5s; }
.hero__stats    { animation: heroSlideIn 0.7s ease both 0.6s; }

/* Floating card shimmer */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* Item card hover lift */
.item-card {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease;
}
.item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.14), 0 6px 20px rgba(0,0,0,0.08);
}

/* Image zoom on hover */
.item-card__image {
  overflow: hidden;
}
.item-card__image img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.item-card:hover .item-card__image img {
  transform: scale(1.06);
}

/* Navbar logo animation */
.navbar__logo img {
  transition: transform 0.25s ease;
}
.navbar__logo:hover img {
  transform: scale(1.05);
}

/* Button pulse glow */
@keyframes pulsGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 84, 10, 0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(232, 84, 10, 0); }
}
.see-all-vehicles__btn {
  animation: pulsGlow 2.5s ease infinite;
}

/* Section entrance */
@keyframes sectionFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── FEATURED GRID 3 COLONNES ──────────────────────────────── */
.featured-grid--3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .featured-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .featured-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ─── VOIR TOUTE LA FLOTTE ──────────────────────────────────── */
.see-all-vehicles {
  margin-top: var(--space-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}
.see-all-vehicles__text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  font-weight: 500;
}
.see-all-vehicles__btn {
  gap: var(--space-3);
  padding: 1rem 2.5rem;
  font-size: var(--text-base);
  border-radius: var(--radius-full);
  min-width: 260px;
}

/* ─── MOBILE FIRST FIXES ─────────────────────────────────────── */

/* Navbar logo – taille adaptée sur mobile */
.navbar__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .navbar__logo img {
    height: 52px;
  }
}

/* Cards mobile : image plus petite */
@media (max-width: 639px) {
  .item-card__image img,
  .item-card__image > img {
    height: 190px !important;
  }
  .item-card__title {
    font-size: var(--text-base);
  }
  .item-card__price {
    font-size: var(--text-xl);
  }
  .hero__title {
    font-size: var(--text-3xl);
  }
  .hero__subtitle {
    font-size: var(--text-base);
  }
  .section-title {
    font-size: var(--text-2xl);
  }
  .featured-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* Section immobilier – card image responsive */
@media (max-width: 639px) {
  .item-card__body {
    padding: var(--space-4);
  }
  .item-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }
  .item-card__footer .btn {
    width: 100%;
    justify-content: center;
  }
  .btn--lg {
    padding: 0.9rem 1.5rem;
    font-size: var(--text-sm);
  }
  .see-all-vehicles__btn {
    min-width: unset;
    width: 100%;
  }
}

/* Modal responsive */
@media (max-width: 639px) {
  .modal__panel {
    margin: 0 !important;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal__backdrop {
    align-items: flex-end;
  }
  .modal__thumbnails {
    gap: var(--space-2);
  }
  .modal__thumbnail {
    width: 56px;
    height: 56px;
  }
}

/* Footer mobile */
@media (max-width: 639px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* Why section mobile */
@media (max-width: 639px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* Services mobile */
@media (max-width: 639px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonials mobile */
@media (max-width: 639px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── IMMEUBLE CARD IMAGE ────────────────────────────────────── */
.immeuble-card-img {
  height: 220px;         /* Mobile first */
  position: relative;
  overflow: hidden;
}
@media (min-width: 480px) {
  .immeuble-card-img { height: 260px; }
}
@media (min-width: 768px) {
  .immeuble-card-img { height: 320px; }
}
@media (min-width: 1024px) {
  .immeuble-card-img { height: 380px; }
}

/* ─── SPLASH SCREEN ──────────────────────────────────────────── */
#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-900);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
#splash-screen.splash--hidden {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}

/* Particle background */
.splash__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(232,84,10,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(59,130,246,0.10) 0%, transparent 50%),
    linear-gradient(135deg, rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(45deg,  rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
}

/* Content wrapper */
.splash__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}

/* Logo */
.splash__logo-wrap {
  animation: splashLogoIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.splash__logo {
  width: clamp(160px, 40vw, 240px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(232,84,10,0.3));
}

@keyframes splashLogoIn {
  from { opacity: 0; transform: scale(0.7) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Tagline */
.splash__tagline {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 3vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  animation: splashFadeIn 0.6s ease both 0.35s;
}

@keyframes splashFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Progress bar */
.splash__bar-wrap {
  width: clamp(160px, 45vw, 220px);
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
  animation: splashFadeIn 0.4s ease both 0.5s;
}
.splash__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-300));
  border-radius: 99px;
  box-shadow: 0 0 12px rgba(232,84,10,0.6);
  animation: splashProgress 1.6s cubic-bezier(0.4, 0, 0.2, 1) both 0.3s;
}
@keyframes splashProgress {
  0%   { width: 0%; }
  60%  { width: 80%; }
  100% { width: 100%; }
}

/* Dots */
.splash__dots {
  display: flex;
  gap: 8px;
  animation: splashFadeIn 0.4s ease both 0.6s;
}
.splash__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-400);
  animation: splashDot 1.2s ease infinite;
}
.splash__dots span:nth-child(1) { animation-delay: 0s; }
.splash__dots span:nth-child(2) { animation-delay: 0.2s; }
.splash__dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes splashDot {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.8); }
  40%            { opacity: 1;    transform: scale(1.2); }
}
