/* ============================================================
   VITEC IMMOBILIER — Design System CSS Premium
   Pure CSS, no Tailwind dependency
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --navy: #000b28;
  --navy-light: #0d2149;
  --navy-mid: #1a3a6e;
  --gold: #c9933a;
  --gold-light: #e8b45a;
  --amber: #f0c040;
  --green-wa: #25d366;
  --green-wa-dark: #128c7e;
  --surface: #f8f9fa;
  --surface-2: #f0f2f5;
  --white: #ffffff;
  --text: #1a1d23;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --shadow-hero: 0 25px 60px rgba(0,11,40,0.4);
  --shadow-gold: 0 8px 24px rgba(201,147,58,0.35);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: 0.15s ease;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── Material Symbols ────────────────────────────────────── */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

/* ── Container ───────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) { .container { padding: 0 1rem; } }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
.h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
.h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; }
.h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.font-heading { font-family: var(--font-heading); }

/* ── Section ─────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Flex & Grid Utilities ───────────────────────────────── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.25rem; } .gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; } .gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; }
.grid { display: grid; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── Spacing Utilities ───────────────────────────────────── */
.mb-1 { margin-bottom: 0.25rem; } .mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; } .mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; } .mb-12 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; } .mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; } .mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.p-4 { padding: 1rem; } .p-5 { padding: 1.25rem; } .p-6 { padding: 1.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.w-full { width: 100%; }
.hidden { display: none !important; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; border-radius: 8px; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; border-radius: var(--radius-lg); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700; font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #b8822e 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,147,58,0.45);
}

.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700; font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  border: none; cursor: pointer;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,147,58,0.45); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.7);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-navy:hover { background: var(--navy); color: white; }

.btn-wa {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green-wa);
  color: white;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: var(--transition);
  border: none; cursor: pointer;
}
.btn-wa:hover { background: var(--green-wa-dark); transform: translateY(-2px); }

/* ── Badges ──────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge--vente { background: #dbeafe; color: #1e40af; }
.badge--location { background: #ede9fe; color: #6d28d9; }
.badge--disponible { background: #d1fae5; color: #065f46; }
.badge--vendu { background: #fee2e2; color: #991b1b; }
.badge--loue { background: #f3f4f6; color: #4b5563; }
.badge--boosted { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: white; }

/* ── Navigation ──────────────────────────────────────────── */
#vitec-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,11,40,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
#vitec-nav.scrolled {
  background: rgba(0,11,40,0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon .material-symbols-outlined { color: white; font-size: 20px; }
.nav-logo-text { line-height: 1.2; }
.nav-logo-name { color: white; font-family: var(--font-heading); font-weight: 800; font-size: 1rem; letter-spacing: 0.03em; }
.nav-logo-sub { color: var(--gold-light); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-link.active { color: var(--gold-light); font-weight: 600; }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-btn-wa {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--green-wa);
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  transition: var(--transition-fast);
  box-shadow: 0 2px 12px rgba(37,211,102,0.3);
}
.nav-btn-wa:hover { background: var(--green-wa-dark); transform: translateY(-1px); }
.nav-btn-wa svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-hamburger {
  display: none;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  color: rgba(255,255,255,0.8);
  transition: var(--transition-fast);
}
.nav-hamburger:hover { background: rgba(255,255,255,0.1); color: white; }
.nav-mobile {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 1rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-mobile.open { display: block; }
.nav-mobile-link {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  transition: var(--transition-fast);
}
.nav-mobile-link:hover { background: rgba(255,255,255,0.08); color: white; }
.nav-mobile-link.active { background: rgba(201,147,58,0.15); color: var(--gold-light); font-weight: 600; }
.nav-mobile-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 0.75rem 0; }
.nav-mobile-wa {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--green-wa);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem;
  border-radius: 100px;
  transition: var(--transition-fast);
  margin-top: 0.5rem;
}
.nav-mobile-wa:hover { background: var(--green-wa-dark); }
@media (max-width: 1024px) {
  .nav-menu, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.hero-gradient::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,147,58,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 88vh;
  padding: 5rem 0;
  position: relative; z-index: 2;
}
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; min-height: auto; padding: 4rem 0 3rem; }
  .hero-visual { display: none; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,147,58,0.3);
  color: var(--gold-light);
  font-size: 0.75rem; font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-title .accent { color: var(--gold-light); }
.hero-subtitle { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 480px; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.75rem; }
.hero-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.hero-chips-label { color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.hero-chip {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  transition: var(--transition-fast);
}
.hero-chip:hover { background: rgba(255,255,255,0.15); color: white; }
.hero-visual { position: relative; }
.hero-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
}
.hero-image-wrap img { width: 100%; height: 480px; object-fit: cover; }
.hero-float {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.9rem 1.1rem;
  display: flex; align-items: center; gap: 0.75rem;
  min-width: 170px;
}
.hero-float-1 { bottom: -24px; left: -24px; }
.hero-float-2 { top: -20px; right: -20px; }
.hero-float-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-float-title { font-family: var(--font-heading); font-weight: 800; color: var(--navy); font-size: 0.9rem; }
.hero-float-sub { color: var(--text-muted); font-size: 0.72rem; }

/* ── Search Bar ──────────────────────────────────────────── */
.search-bar-wrap {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,11,40,0.18);
  padding: 1.5rem;
  margin-top: -40px;
  position: relative; z-index: 10;
}
.search-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}
@media (max-width: 768px) { .search-bar { grid-template-columns: 1fr; } }

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border-bottom: 1px solid var(--border-light);
}
@media (max-width: 768px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border-light);
  transition: var(--transition);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--surface); }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label { color: var(--text-muted); font-size: 0.82rem; font-weight: 500; }

/* ── Property Cards ──────────────────────────────────────── */
.property-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
}
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,147,58,0.2);
}
.property-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.property-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.property-card:hover .property-card__image img { transform: scale(1.05); }
.property-card__image-badges {
  position: absolute; top: 0.75rem; left: 0.75rem;
  display: flex; gap: 0.375rem;
}
.property-card__image-status {
  position: absolute; top: 0.75rem; right: 0.75rem;
}
.property-card__body { padding: 1.1rem; }
.property-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.35;
  margin-bottom: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.property-card__location {
  display: flex; align-items: center; gap: 0.25rem;
  color: var(--text-muted); font-size: 0.78rem;
  margin-bottom: 0.75rem;
}
.property-card__location .material-symbols-outlined { font-size: 14px; }
.property-card__price {
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.property-card__meta {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.property-card__meta-item { display: flex; align-items: center; gap: 0.25rem; }
.property-card__meta-item .material-symbols-outlined { font-size: 14px; }
.property-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 0.75rem;
  padding: 0.6rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition-fast);
  font-family: var(--font-heading);
}
.property-card__btn:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* ── Carousel ────────────────────────────────────────────── */
.carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-item {
  flex-shrink: 0;
  width: 300px;
  scroll-snap-align: start;
}

/* ── Service Cards ───────────────────────────────────────── */
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(201,147,58,0.2); }
.service-card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card__icon .material-symbols-outlined { color: white; font-size: 24px; }
.service-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.service-card__desc { color: var(--text-muted); font-size: 0.87rem; line-height: 1.6; }
.service-card__link {
  display: flex; align-items: center; gap: 0.35rem;
  color: var(--gold);
  font-size: 0.82rem; font-weight: 700;
  margin-top: 1rem;
  transition: gap var(--transition-fast);
}
.service-card:hover .service-card__link { gap: 0.6rem; }

/* ── Testimonial Cards ───────────────────────────────────── */
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.testimonial-stars .material-symbols-outlined { color: #fbbf24; font-size: 18px; font-variation-settings: 'FILL' 1; }
.testimonial-text { color: #4b5563; font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800;
  color: white; font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-name { font-family: var(--font-heading); font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.testimonial-role { color: var(--text-muted); font-size: 0.75rem; }

/* ── Page Hero (sous-pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 4rem 0;
}
.page-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold-light); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.page-hero__title { font-family: var(--font-heading); font-weight: 900; font-size: clamp(1.75rem, 4vw, 2.75rem); color: white; margin-bottom: 0.75rem; }
.page-hero__subtitle { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 500px; }
.breadcrumb { display: flex; align-items: center; gap: 0.35rem; font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .material-symbols-outlined { font-size: 14px; }
.breadcrumb span { color: rgba(255,255,255,0.7); }

/* ── Forms ───────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.4rem;
}
.form-control, .form-input {
  display: block;
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text);
  background: white;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-control:focus, .form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,147,58,0.12);
}
.form-control::placeholder, .form-input::placeholder { color: #9ca3af; }
select.form-control, select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b7280'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 20px; padding-right: 2.5rem;
}
textarea.form-control, textarea.form-input { resize: vertical; min-height: 120px; }

/* ── Footer ──────────────────────────────────────────────── */
.vitec-footer {
  background: var(--navy);
  color: white;
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-logo { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1rem; }
.footer-brand-logo .logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.footer-brand-logo .logo-icon .material-symbols-outlined { color: white; font-size: 20px; }
.footer-brand-name { font-family: var(--font-heading); font-weight: 800; color: white; font-size: 1rem; }
.footer-brand-sub { color: var(--gold-light); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: 0.6rem; }
.footer-social {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
}
.footer-social:hover { background: var(--gold); transform: translateY(-2px); }
.footer-social svg { width: 15px; height: 15px; fill: white; }
.footer-heading { color: white; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.75rem; }
.footer-contact-item .material-symbols-outlined { color: var(--gold); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item span, .footer-contact-item a { color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); font-size: 0.78rem; transition: color var(--transition-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ── WhatsApp FAB ────────────────────────────────────────── */
.fab-wa {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse-wa 3s ease-in-out infinite;
}
.fab-wa:hover { background: var(--green-wa-dark); transform: scale(1.1); animation: none; box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.fab-wa svg { width: 28px; height: 28px; fill: white; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ── Admin Layout ────────────────────────────────────────── */
.admin-sidebar {
  width: 240px;
  background: var(--navy);
  min-height: 100vh;
  position: fixed; top: 0; left: 0;
  z-index: 100;
  display: flex; flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.admin-main { margin-left: 240px; min-height: 100vh; }
@media (max-width: 1024px) {
  .admin-sidebar { transform: translateX(-100%); transition: transform var(--transition); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
}
.admin-nav-link {
  display: flex; align-items: center; gap: 0.75rem;
  width: calc(100% - 1rem);
  margin: 0.1rem 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem; font-weight: 500;
  transition: var(--transition-fast);
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
}
.admin-nav-link:hover { background: rgba(255,255,255,0.08); color: white; }
.admin-nav-link.active { background: rgba(201,147,58,0.15); color: var(--gold-light); font-weight: 600; }
.admin-nav-link .material-symbols-outlined { font-size: 20px; flex-shrink: 0; }

/* ── Admin Table ─────────────────────────────────────────── */
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.admin-table th {
  text-align: left;
  padding: 0.9rem 1.1rem;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border-light);
  white-space: nowrap;
}
.admin-table td {
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
  vertical-align: middle;
}
.admin-table tbody tr:hover { background: var(--surface); }
.admin-table tbody tr:last-child td { border-bottom: none; }

/* ── Modal ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,11,40,0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.2s ease;
}
.modal-overlay.hidden { display: none !important; }
.modal-box {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hero);
  width: 100%; max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-fadeInUp { animation: fadeInUp 0.5s ease forwards; }

/* ── Annonce Detail ──────────────────────────────────────── */
.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.gallery-thumb {
  width: 80px; height: 60px;
  border-radius: 8px; overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
  flex-shrink: 0;
}
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.contact-panel {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  position: sticky; top: 88px;
}

/* ── FAQ Accordion ───────────────────────────────────────── */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 600; font-size: 0.95rem; color: var(--navy);
  transition: background var(--transition-fast);
  width: 100%; text-align: left; background: white;
  font-family: var(--font-body);
}
.faq-question:hover { background: var(--surface); }
.faq-question .material-symbols-outlined { transition: transform var(--transition-fast); flex-shrink: 0; }
.faq-item.open .faq-question .material-symbols-outlined { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.25rem 1.1rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; border-top: 1px solid var(--border-light); padding-top: 1rem; }
.faq-item.open .faq-answer { display: block; }

/* ── Blog Cards ──────────────────────────────────────────── */
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__image { height: 220px; overflow: hidden; position: relative; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.blog-card__title { font-family: var(--font-heading); font-weight: 700; color: var(--navy); font-size: 1rem; line-height: 1.4; margin-bottom: 0.6rem; transition: color var(--transition-fast); }
.blog-card:hover .blog-card__title { color: var(--gold); }
.blog-card__excerpt { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; flex: 1; }
.blog-card__link { display: flex; align-items: center; gap: 0.35rem; color: var(--gold); font-size: 0.82rem; font-weight: 700; margin-top: 1rem; }

/* ── Why Section ─────────────────────────────────────────── */
.why-item { text-align: center; padding: 2rem; }
.why-icon {
  width: 68px; height: 68px;
  background: rgba(201,147,58,0.12);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.why-icon .material-symbols-outlined { color: var(--gold-light); font-size: 30px; }
.why-title { font-family: var(--font-heading); font-weight: 700; color: white; font-size: 1.1rem; margin-bottom: 0.6rem; }
.why-desc { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.65; max-width: 260px; margin: 0 auto; }

/* ── Feature List ────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.feature-check {
  width: 24px; height: 24px;
  background: rgba(37,211,102,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.feature-check .material-symbols-outlined { color: #16a34a; font-size: 15px; }
.feature-text { color: var(--text-muted); font-size: 0.9rem; }

/* ── Info boxes ──────────────────────────────────────────── */
.info-box {
  background: rgba(201,147,58,0.08);
  border: 1px solid rgba(201,147,58,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex; gap: 0.75rem;
}
.info-box .material-symbols-outlined { color: var(--gold); flex-shrink: 0; }
.info-box p { color: #92400e; font-size: 0.875rem; line-height: 1.6; }

/* ── Two-column layouts ──────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col-3 { display: grid; grid-template-columns: 3fr 2fr; gap: 3rem; align-items: start; }
@media (max-width: 1024px) { .two-col, .two-col-3 { grid-template-columns: 1fr; gap: 2rem; } }

/* ── Card generic ────────────────────────────────────────── */
.card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.card-body { padding: 1.5rem; }
.card-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-between; }

/* ── BG colors ───────────────────────────────────────────── */
.bg-white { background: white; }
.bg-surface { background: var(--surface); }
.bg-navy { background: var(--navy); }
.bg-navy-light { background: var(--navy-light); }

/* ── Responsive helpers ──────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 3rem 0 2rem; }
  .gallery-main { height: 260px; }
  .page-hero { padding: 2.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .search-bar { grid-template-columns: 1fr; }
  .fab-wa { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
  .fab-wa svg { width: 24px; height: 24px; }
  .hide-mobile { display: none !important; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-gold, .hero-cta .btn-outline { width: 100%; justify-content: center; }
  .stat-card { padding: 1.25rem 1rem; }
  .stat-number { font-size: 1.75rem; }
}
