/* ═══════════════════════════════════════════════
   AURELIE PASCAREL FROIDEFOND — Design System
   Immobilier Ancien, Récent et Neuf | Brive
═══════════════════════════════════════════════ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Fix global : évite que le stroke des SVG soit rogné au bord du viewBox ── */
svg { overflow: visible; }

/* ── CSS VARIABLES ──
   Charte Propriétés-Privées : rouge-rose framboise #ED1651 + blanc.
   Les noms historiques (--navy / --gold) sont conservés pour éviter
   un refactor massif : ils portent désormais la couleur de la charte. */
:root {
  --navy:       #ED1651;   /* Rouge-rose Propriétés-Privées (couleur principale) */
  --navy-dark:  #C00E3F;   /* Variante foncée pour gradients / hover */
  --navy-light: #FF3D6E;   /* Variante claire pour mid-tones */
  --gold:       #B8945A;   /* Or préservé comme accent premium / contraste */
  --gold-light: #D4AA70;
  --gold-pale:  #F5EDD8;
  --cream:      #FFF8F9;   /* Crème légèrement rosée */
  --white:      #FFFFFF;
  --text:       #1A1A2E;
  --text-mid:   #3D4A5C;
  --muted:      #7A8694;
  --border:     #F4DDE3;   /* Bordure rosée discrète */
  --shadow-sm:  0 2px 8px rgba(237,22,81,.08);
  --shadow-md:  0 8px 32px rgba(237,22,81,.12);
  --shadow-lg:  0 24px 64px rgba(237,22,81,.16);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --header-h:   80px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--white); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }
input, textarea, select { font-family: var(--font-sans); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ═══════════════════════════════════
   NAVIGATION
═══════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name { font-family: var(--font-serif); font-size: 15px; font-weight: 600; color: var(--navy); }
.nav-logo-tagline { font-size: 10px; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-link {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  transition: all var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { background: var(--gold-pale); color: var(--navy); }
.nav-link.active { font-weight: 600; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; pointer-events: none;
  transform: translateY(-8px); transition: all var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown-item {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 13px; color: var(--text-mid); transition: all var(--transition);
}
.nav-dropdown-item:hover { background: var(--gold-pale); color: var(--navy); }

.nav-cta {
  margin-left: auto; display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.nav-phone { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--navy); }
.nav-phone svg { color: var(--gold); overflow: visible; flex-shrink: 0; }

/* Hamburger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  padding: 4px; margin-left: auto;
}
.nav-burger span {
  display: block; width: 24px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: all var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  padding: 24px; overflow-y: auto;
  transform: translateX(100%); transition: transform var(--transition);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  font-size: 18px; font-weight: 500; color: var(--text);
}
.nav-mobile-link.active { color: var(--navy); font-weight: 700; }
.nav-mobile-sub { padding-left: 16px; margin-top: 8px; }
.nav-mobile-sub a {
  display: block; padding: 10px 0; font-size: 15px; color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.nav-mobile-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius); border: none;
  font-size: 15px; font-weight: 600; transition: all var(--transition); cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(237,22,81,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(237,22,81,.4); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184,148,90,.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,148,90,.4); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-full { width: 100%; }

/* ═══════════════════════════════════
   HERO SECTIONS
═══════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: .2;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(192,14,63,.85) 0%, rgba(192,14,63,.4) 60%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 80px 24px; }
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,148,90,.2); border: 1px solid rgba(184,148,90,.4);
  color: var(--gold-light); padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700; color: var(--white); line-height: 1.15;
  margin-bottom: 24px; max-width: 700px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p {
  font-size: 18px; color: rgba(255,255,255,.8); max-width: 520px;
  margin-bottom: 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-serif); font-size: 36px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 4px; }

/* Page hero (smaller) */
.page-hero {
  position: relative; min-height: 420px;
  display: flex; align-items: flex-end;
  padding-top: var(--header-h); overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}
.page-hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .25;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(192,14,63,.9) 0%, rgba(192,14,63,.3) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 60px 24px; width: 100%; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.breadcrumb a, .breadcrumb span { font-size: 13px; color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); font-weight: 700; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.75); margin-top: 12px; max-width: 560px; }

/* ═══════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy-dark); }
.section-navy-mid { background: var(--navy); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header.left { text-align: left; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale); color: var(--gold); border-radius: 100px;
  padding: 6px 16px; font-size: 12px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase; margin-bottom: 16px;
}
.section-tag.white {
  background: rgba(184,148,90,.15); color: var(--gold-light);
}
h2.section-title {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700; color: var(--navy); line-height: 1.2;
}
h2.section-title.white { color: var(--white); }
.section-sub {
  font-size: 17px; color: var(--muted); margin-top: 16px; max-width: 560px;
  margin-left: auto; margin-right: auto; line-height: 1.7;
}
.section-sub.white { color: rgba(255,255,255,.7); }
.section-sub.left { margin-left: 0; margin-right: 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ═══════════════════════════════════
   CARDS
═══════════════════════════════════ */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }

/* Property card */
.property-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.property-card-img { position: relative; height: 240px; overflow: hidden; }
.property-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.property-card:hover .property-card-img img { transform: scale(1.08); }
.property-card-badges { position: absolute; top: 16px; left: 16px; display: flex; gap: 8px; z-index: 1; }
.badge {
  padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 700;
  letter-spacing: .3px;
}
.badge-navy { background: var(--navy); color: var(--white); }
.badge-gold { background: var(--gold); color: var(--white); }
.badge-green { background: #10B981; color: var(--white); }
.badge-red { background: #EF4444; color: var(--white); }
.property-card-tour {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(4px);
  border-radius: 8px; padding: 6px 10px;
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--navy);
  cursor: pointer; transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.property-card-tour:hover { background: var(--navy); color: var(--white); }
.property-card-body { padding: 20px 24px; }
.property-price { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: var(--navy); }
.property-price span { font-size: 14px; font-weight: 400; color: var(--muted); font-family: var(--font-sans); }
.property-title { font-size: 16px; font-weight: 600; color: var(--text); margin-top: 4px; }
.property-location { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); margin-top: 6px; }
.property-specs { display: flex; gap: 20px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.property-spec { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-mid); font-weight: 500; }
.property-spec svg { color: var(--gold); flex-shrink: 0; }

/* Service card */
.service-card {
  padding: 36px 32px; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--border);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card > * { position: relative; z-index: 1; }
.service-card-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 24px; transition: all var(--transition);
}
.service-card:hover .service-card-icon { background: rgba(184,148,90,.2); }
.service-card h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 12px; transition: color var(--transition); }
.service-card:hover h3 { color: var(--white); }
.service-card p { font-size: 15px; color: var(--muted); line-height: 1.7; transition: color var(--transition); }
.service-card:hover p { color: rgba(255,255,255,.75); }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 14px; font-weight: 600; color: var(--gold); transition: all var(--transition); }
.service-card:hover .service-card-link { color: var(--gold-light); }

/* Testimonial card */
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.testimonial-stars { display: flex; gap: 4px; color: var(--gold); font-size: 18px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--white); font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 15px; color: var(--navy); }
.testimonial-date { font-size: 12px; color: var(--muted); }

/* Step card */
.step-card { display: flex; gap: 24px; align-items: flex-start; }
.step-num {
  width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--gold-light);
}
.step-body h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.step-body p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════
   STATS BAND
═══════════════════════════════════ */
.stats-band { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.stat-item {}
.stat-num { font-family: var(--font-serif); font-size: 48px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: 14px; color: rgba(255,255,255,.65); margin-top: 8px; text-transform: uppercase; letter-spacing: .5px; }

/* ═══════════════════════════════════
   FORMS
═══════════════════════════════════ */
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--text-mid); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 15px; color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(237,22,81,.1);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '▾'; position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events: none;
}

/* Search form */
.search-bar {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 8px 8px 8px 24px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.search-field { display: flex; flex-direction: column; flex: 1; min-width: 140px; }
.search-field label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.search-field input, .search-field select {
  border: none; outline: none; font-size: 15px; color: var(--text);
  background: transparent; padding: 0; font-family: var(--font-sans); -webkit-appearance: none;
}
.search-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
.search-btn { flex-shrink: 0; }

/* ═══════════════════════════════════
   VIRTUAL TOUR / 3D
═══════════════════════════════════ */
.tour-section { position: relative; padding: 96px 0; background: var(--cream); overflow: hidden; }
.tour-container {
  background: var(--navy-dark); border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/9; position: relative;
  box-shadow: var(--shadow-lg);
}
.tour-container iframe { width: 100%; height: 100%; border: none; }
.tour-placeholder {
  width: 100%; height: 100%; background: linear-gradient(135deg, #1a0a10 0%, #ED1651 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.tour-play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(184,148,90,.2); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; cursor: pointer; transition: all var(--transition);
}
.tour-play-btn:hover { background: var(--gold); transform: scale(1.1); }

/* 3D Floor plan */
.floorplan-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.floorplan-preview {
  height: 300px; background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
  position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.floorplan-3d {
  width: 260px; height: 220px; position: relative;
  transform: perspective(600px) rotateX(20deg) rotateY(-10deg);
}

/* ═══════════════════════════════════
   MAP
═══════════════════════════════════ */
.map-container {
  height: 480px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
#map { width: 100%; height: 100%; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.8); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-icon {
  width: 48px; height: 48px; background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--white);
}
.footer-logo-name { font-family: var(--font-serif); font-size: 17px; font-weight: 600; color: var(--white); }
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  color: rgba(255,255,255,.6); transition: all var(--transition);
}
.footer-social:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-col-title { font-size: 13px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-link:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,.6); }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; overflow: visible; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }
.admin-pro-link { opacity: 0.4 !important; font-size: 11px !important; letter-spacing: 0.3px; margin-left: 8px; }
.admin-pro-link:hover { opacity: 1 !important; color: var(--gold-light) !important; }

/* ═══════════════════════════════════
   MISC COMPONENTS
═══════════════════════════════════ */
/* Alert / Banner */
.banner {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 14px 24px; text-align: center;
  font-size: 14px; font-weight: 600; color: var(--white);
}

/* Accordion / FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--navy);
}
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 20px; color: var(--gold); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 20px; font-size: 15px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* Timeline */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item::before {
  content: ''; position: absolute; left: -38px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item h4 { font-family: var(--font-serif); font-size: 18px; font-weight: 600; color: var(--navy); }
.timeline-item p { font-size: 14px; color: var(--muted); margin-top: 6px; }
.timeline-date { font-size: 12px; color: var(--gold); font-weight: 700; margin-bottom: 6px; }

/* Price table */
.price-table { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.price-table-row { display: flex; align-items: center; padding: 16px 24px; border-bottom: 1px solid var(--border); gap: 16px; }
.price-table-row:last-child { border-bottom: none; }
.price-table-row:nth-child(even) { background: var(--cream); }
.price-table-label { flex: 1; font-size: 15px; color: var(--text-mid); }
.price-table-val { font-weight: 700; color: var(--navy); font-size: 16px; }
.price-table-head { background: var(--navy); }
.price-table-head .price-table-label, .price-table-head .price-table-val { color: var(--white); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; }

/* Blog card */
.blog-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); transition: all var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; overflow: hidden; position: relative; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-cat {
  position: absolute; top: 16px; left: 16px;
  background: var(--navy); color: var(--white);
  padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 700; text-transform: uppercase;
}
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.blog-card h3 { font-family: var(--font-serif); font-size: 18px; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 10px; }
.blog-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.blog-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--gold); }

/* Boutique product card */
.product-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); transition: all var(--transition); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-img { height: 220px; overflow: hidden; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 64px; }
.product-card-body { padding: 20px 24px 24px; }
.product-card h3 { font-family: var(--font-serif); font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.product-card p { font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--navy); }

/* Highlight box */
.highlight-box {
  background: linear-gradient(135deg, var(--gold-pale), #fff);
  border: 1px solid rgba(184,148,90,.3); border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 24px 28px;
}
.highlight-box h4 { font-family: var(--font-serif); font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.highlight-box p { font-size: 15px; color: var(--text-mid); }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-check {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 14px; font-weight: 700; margin-top: 1px;
}
.feature-item p { font-size: 15px; color: var(--text-mid); line-height: 1.6; }

/* Mortgage calculator */
.calc-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.calc-result { background: var(--cream); border-radius: var(--radius); padding: 24px; margin-top: 24px; }
.calc-result-main { font-family: var(--font-serif); font-size: 36px; font-weight: 700; color: var(--navy); }
.calc-result-label { font-size: 14px; color: var(--muted); }
.range-input { -webkit-appearance: none; width: 100%; height: 4px; border-radius: 2px; background: var(--border); outline: none; }
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--navy); cursor: pointer; border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
}

/* Notification bar */
.notif-bar {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius-lg); padding: 16px 24px;
  box-shadow: var(--shadow-lg); max-width: 320px;
  transform: translateX(120%); transition: transform var(--transition);
  display: flex; align-items: center; gap: 14px;
}
.notif-bar.show { transform: translateX(0); }
.notif-icon { font-size: 24px; flex-shrink: 0; }
.notif-text h5 { font-size: 14px; font-weight: 700; }
.notif-text p { font-size: 13px; color: rgba(255,255,255,.7); }
.notif-close { position: absolute; top: 8px; right: 8px; background: none; border: none; color: rgba(255,255,255,.5); font-size: 16px; cursor: pointer; }

/* CTA Band */
.cta-band { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 80px 0; }
.cta-band-inner { text-align: center; }
.cta-band h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 3rem); color: var(--white); margin-bottom: 16px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Tag cloud */
.tag { display: inline-block; padding: 6px 16px; border-radius: 100px; background: var(--gold-pale); color: var(--gold); font-size: 13px; font-weight: 600; border: 1px solid rgba(184,148,90,.3); transition: all var(--transition); cursor: default; }
.tag:hover, .tag.active { background: var(--gold); color: var(--white); }

/* ═══════════════════════════════════
   ANIMATIONS
═══════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity .6s ease; }
.fade-in.visible { opacity: 1; }
.slide-right { opacity: 0; transform: translateX(-30px); transition: opacity .6s ease, transform .6s ease; }
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* Delay utilities */
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }

/* ═══════════════════════════════════
   FLOATING CONTACT BUTTON
═══════════════════════════════════ */
.float-contact {
  position: fixed; bottom: 24px; left: 24px; z-index: 999;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white); border: none; border-radius: 100px;
  padding: 14px 24px; display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  box-shadow: 0 8px 32px rgba(237,22,81,.4);
  transition: all var(--transition);
}
.float-contact:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(237,22,81,.5); }
.float-contact-pulse {
  width: 10px; height: 10px; border-radius: 50%; background: #4ade80;
  position: absolute; top: 10px; right: 16px;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:.7} }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta .nav-phone { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .search-bar { padding: 16px; flex-direction: column; align-items: stretch; }
  .search-divider { width: 100%; height: 1px; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 600px) {
  :root { --header-h: 64px; }
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .float-contact { padding: 14px 16px; }
  .float-contact span { display: none; }
}
