/* ================================================================
   SHORT RENTS — Premium Design System
   Property Management & Luxury Short-Term Rentals
   Property Management
   ================================================================ */

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

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --navy:        #0B1120;
  --navy-800:    #111827;
  --navy-700:    #162035;
  --navy-600:    #1E2D47;
  --gold:        #C4A35A;
  --gold-dark:   #A8873A;
  --gold-light:  #DFC98A;
  --gold-pale:   #F5EDD8;
  --white:       #FFFFFF;
  --off-white:   #F8F6F1;
  --cream:       #F2EDE3;
  --text:        #1A1A2E;
  --text-med:    #4A4A6A;
  --text-light:  #8A8AA0;
  --border:      rgba(196,163,90,0.22);
  --border-dark: rgba(196,163,90,0.08);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --section-y:  110px;
  --container:  1300px;
  --pad-x:      clamp(20px, 5vw, 60px);

  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --t1: 0.25s var(--ease);
  --t2: 0.45s var(--ease);
  --t3: 0.70s var(--ease);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow:    0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.15);
  --shadow-xl: 0 28px 90px rgba(0,0,0,0.22);
  --shadow-gold: 0 8px 32px rgba(196,163,90,0.30);

  --r-sm:  4px;
  --r:     8px;
  --r-lg:  16px;
  --r-xl:  28px;
}

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

/* ── Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 400; }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); }
h4 { font-size: clamp(1.2rem, 1.8vw, 1.6rem); }
h5 { font-size: 1.1rem; }

p { max-width: 68ch; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow-dark { color: var(--gold-dark); }

/* ── Layout ────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: var(--section-y) 0; }
.section-sm { padding: 70px 0; }
.section-lg { padding: 150px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 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: 28px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

/* ── Section Headers ───────────────────────────────────────────── */
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }
.section-header p {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--text-med);
  line-height: 1.75;
}
.section-header h2 { margin-top: 12px; }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: var(--t2);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg { padding: 20px 48px; font-size: 0.86rem; }
.btn-sm { padding: 12px 24px; font-size: 0.76rem; }

.btn svg { width: 16px; height: 16px; transition: transform var(--t1); }
.btn:hover svg { transform: translateX(4px); }

/* ── Gold Divider ──────────────────────────────────────────────── */
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 20px;
}
.gold-line.centered { margin: 0 auto 20px; }

/* ── Cards ─────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--t2);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card-glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
}

/* ── Badge ─────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
}
.badge-gold { background: var(--gold-pale); color: var(--gold-dark); }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-green { background: #EDFAF0; color: #1A8A3A; }

/* ── Gold Border Accent ────────────────────────────────────────── */
.gold-accent {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}

/* ── Navigation ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--t2);
  padding: 0 var(--pad-x);
}
.nav.transparent { background: transparent; }
.nav.scrolled {
  background: rgba(11,17,32,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav.light {
  background: rgba(248,246,241,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
}
.nav.light.scrolled {
  background: rgba(248,246,241,0.98);
  box-shadow: var(--shadow);
}
/* Two-image logo swap — cross-browser (replaces content:url() which fails in Firefox) */
.nav-logo-light { display: block; }
.nav-logo-dark  { display: none; }
.nav.light .nav-logo-light { display: none; }
.nav.light .nav-logo-dark  { display: block; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(1);
  transition: opacity var(--transition-fast);
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--t1);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--t1);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }
.nav.light .nav-link { color: var(--text-med); }
.nav.light .nav-link:hover { color: var(--gold-dark); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: var(--t2);
  box-shadow: var(--shadow-xl);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  border-radius: var(--r-sm);
  transition: var(--t1);
}
.nav-dropdown-menu a:hover { background: rgba(196,163,90,0.12); color: var(--gold); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-lang {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: var(--t1);
  cursor: pointer;
}
.nav-lang:hover { color: var(--gold); }
.nav.light .nav-lang {
  color: var(--text-med);
  border-color: var(--border-dark) !important;
  background: transparent;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t2);
}
.nav.light .nav-hamburger span { background: var(--navy); }

/* Mobile nav */
.nav-mobile {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px var(--pad-x) 60px;
  opacity: 0;
  visibility: hidden;
  transition: var(--t2);
}
.nav-mobile.open { opacity: 1; visibility: visible; }
.nav-mobile .nav-link {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile .nav-link::after { display: none; }
.nav-mobile .nav-link:hover { color: var(--gold); }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=85');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,17,32,0.88) 0%,
    rgba(11,17,32,0.60) 50%,
    rgba(11,17,32,0.40) 100%
  );
}
.hero.loaded .hero-bg { transform: scale(1); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-eyebrow-line {
  width: 48px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.08;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-value {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.8); }
}

/* ── Trust Bar ─────────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-800);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 0;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
}
.trust-item-icon {
  width: 36px; height: 36px;
  background: var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-item-text {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.trust-divider {
  width: 1px; height: 36px;
  background: var(--border);
}

/* ── Stats Counter Section ─────────────────────────────────────── */
.stats-section { background: var(--off-white); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cream);
  border: 1px solid var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--white);
  padding: 56px 40px;
  text-align: center;
  transition: var(--t2);
}
.stat-item:hover { background: var(--navy); }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  transition: var(--t2);
}
.stat-item:hover .stat-number { color: var(--gold-light); }
.stat-suffix {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--gold);
  transition: var(--t2);
}
.stat-item:hover .stat-suffix { color: var(--gold-light); }
.stat-label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 10px;
  transition: var(--t2);
}
.stat-item:hover .stat-label { color: rgba(255,255,255,0.5); }

/* ── Services Section ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  transition: var(--t2);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--t2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.service-icon {
  width: 64px; height: 64px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.6rem;
}
.service-icon-gold { background: var(--gold-pale); color: var(--gold-dark); }
.service-icon-navy { background: rgba(11,17,32,0.08); color: var(--navy); }

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--text-med);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--t1);
}
.service-link svg { transition: transform var(--t1); width:16px; height:16px; flex-shrink:0; }
.service-link:hover { color: var(--gold-dark); }
.service-link:hover svg { transform: translateX(4px); }

/* ── Why Us Section ────────────────────────────────────────────── */
.why-section { background: var(--navy); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual {
  position: relative;
}
.why-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-xl);
}
.why-badge-float {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--gold);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.why-badge-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}
.why-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 4px;
}

.why-content { padding: 20px 0; }
.why-content h2 { color: var(--white); margin-bottom: 20px; }
.why-content > p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.8; margin-bottom: 44px; }

.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-item-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
}
.why-item-body h5 { color: var(--white); margin-bottom: 6px; font-size: 1rem; }
.why-item-body p { font-size: 0.9rem; color: rgba(255,255,255,0.55); max-width: 100%; }

/* ── Process Section ───────────────────────────────────────────── */
.process-section { background: var(--off-white); }
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(10% + 16px);
  right: calc(10% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.4;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.process-num {
  width: 64px; height: 64px;
  background: var(--navy);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: var(--t2);
}
.process-step:hover .process-num {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.process-step h4 { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy); }
.process-step p { font-size: 0.88rem; color: var(--text-med); line-height: 1.65; }

/* ── Properties Section ────────────────────────────────────────── */
.properties-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.properties-scroll::-webkit-scrollbar { display: none; }

.property-card {
  flex: 0 0 360px;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--t2);
}
.property-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.property-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.property-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.property-card:hover .property-img { transform: scale(1.06); }

.property-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,17,32,0.7) 0%, transparent 50%);
}
.property-badges {
  position: absolute;
  top: 16px; left: 16px;
  display: flex;
  gap: 8px;
}
.property-rating {
  position: absolute;
  bottom: 16px; right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}
.property-body { padding: 24px 28px; }
.property-location {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.property-title { font-size: 1.3rem; margin-bottom: 10px; }
.property-amenities {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.property-amenity {
  display: flex;
  align-items: center;
  gap: 5px;
}
.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-dark);
  padding-top: 16px;
}
.property-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
}
.property-price span {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: var(--text-light);
  font-weight: 400;
}

/* ── ROI / Investment Section ──────────────────────────────────── */
.roi-section { background: var(--cream); }
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.roi-content h2 { margin-bottom: 20px; }
.roi-content p { color: var(--text-med); font-size: 1.05rem; line-height: 1.8; margin-bottom: 36px; }

.roi-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.roi-number {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1px solid var(--border-dark);
}
.roi-number-value {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
}
.roi-number-value .accent { color: var(--gold); }
.roi-number-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 8px;
}

.roi-visual {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 52px 48px;
  color: var(--white);
}
.roi-visual-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.roi-visual-sub { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 36px; }

.roi-bar-list { display: flex; flex-direction: column; gap: 20px; }
.roi-bar-item {}
.roi-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.roi-bar-label span:first-child { color: rgba(255,255,255,0.7); }
.roi-bar-label span:last-child { color: var(--gold); font-weight: 600; }
.roi-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.roi-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 100px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease-out);
}
.roi-bar-fill.animate { transform: scaleX(1); }

/* ── Testimonials ──────────────────────────────────────────────── */
.testimonials-section { background: var(--navy); overflow: hidden; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  transition: var(--t2);
}
.testimonial-card:hover {
  background: rgba(196,163,90,0.08);
  border-color: var(--border);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.9rem;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-700);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}
.testimonial-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}

/* ── Dual CTA Section ──────────────────────────────────────────── */
.dual-cta { background: var(--off-white); }
.dual-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cta-panel {
  border-radius: var(--r-xl);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.cta-panel-owner {
  background: var(--navy);
}
.cta-panel-investor {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}
.cta-panel-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=800&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.cta-panel-content { position: relative; z-index: 1; }
.cta-panel-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-panel-owner .cta-panel-eyebrow { color: var(--gold); }
.cta-panel-investor .cta-panel-eyebrow { color: rgba(11,17,32,0.6); }
.cta-panel h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-panel-owner h3 { color: var(--white); }
.cta-panel-investor h3 { color: var(--navy); }
.cta-panel p { margin-bottom: 36px; line-height: 1.7; }
.cta-panel-owner p { color: rgba(255,255,255,0.6); }
.cta-panel-investor p { color: rgba(11,17,32,0.65); }

/* ── Blog Preview ──────────────────────────────────────────────── */
.blog-section { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  transition: var(--t2);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-img-wrap { overflow: hidden; }
.blog-card-body { padding: 28px 28px 32px; }
.blog-card-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.blog-card h4 { font-size: 1.25rem; margin-bottom: 12px; line-height: 1.3; }
.blog-card h4 a:hover { color: var(--gold-dark); }
.blog-card p { font-size: 0.9rem; color: var(--text-med); margin-bottom: 20px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ── Partner Logos ─────────────────────────────────────────────── */
.logos-section {
  background: var(--off-white);
  padding: 48px 0;
  border-top: 1px solid var(--border-dark);
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.6;
  filter: grayscale(1);
}
.logos-row:hover { opacity: 1; filter: grayscale(0); }
.logo-item {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: var(--t1);
}
.logo-item:hover { color: var(--gold-dark); }

/* ── Footer ────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
}
.footer-main { padding: 88px 0 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
}
.footer-brand { }
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-logo span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
  margin: 16px 0 20px;
}
.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 28px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  transition: var(--t1);
}
.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,163,90,0.1);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--t1);
}
.footer-link:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.footer-contact-icon { color: var(--gold); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal { font-size: 0.78rem; }
.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: var(--t1);
}
.footer-legal-link:hover { color: var(--white); }

/* ── WhatsApp Float ────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.40);
  transition: var(--t2);
  color: var(--white);
  font-size: 1.5rem;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
}
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0; }
  50% { transform: scale(1.5); opacity: 0.3; }
}

/* ── Page Hero (inner pages) ───────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,163,90,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; line-height: 1.8; }

/* ── Forms ─────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-med);
  margin-bottom: 8px;
}
.form-label-light { color: rgba(255,255,255,0.5); }
.form-control {
  width: 100%;
  padding: 15px 20px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--r);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--t1);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,163,90,0.15);
}
.form-control-dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.form-control-dark::placeholder { color: rgba(255,255,255,0.3); }
.form-control-dark:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Simulator ─────────────────────────────────────────────────── */
.sim-wrap {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 52px 56px;
  color: var(--white);
}
.sim-slider-wrap { margin-bottom: 28px; }
.sim-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.sim-slider-label span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.sim-slider-value {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 400;
}
input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  outline: none;
  cursor: pointer;
  touch-action: pan-y;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 2px var(--gold);
  cursor: pointer;
  transition: var(--t1);
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type=range]::-moz-range-thumb {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--navy);
  cursor: pointer;
}

.sim-result {
  background: rgba(196,163,90,0.12);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  margin-top: 36px;
}
.sim-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sim-result-item {}
.sim-result-val {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.sim-result-lab {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  letter-spacing: 0.06em;
}

/* ── Accordion / FAQ ───────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border-dark);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  transition: var(--t1);
  gap: 16px;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--gold);
  transition: var(--t2);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-answer {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--text-med);
  line-height: 1.75;
  display: none;
}
.faq-answer.open { display: block; }

/* ── Feature Table ─────────────────────────────────────────────── */
.feature-table { width: 100%; border-collapse: collapse; }
.feature-table th {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 20px;
  background: var(--navy);
  color: var(--gold);
  text-align: left;
}
.feature-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-dark);
  color: var(--text-med);
}
.feature-table tr:last-child td { border-bottom: none; }
.feature-table tr:nth-child(even) td { background: var(--off-white); }
.feature-check { color: #1A8A3A; }
.feature-cross { color: #C62828; }

/* ── Scroll Animations ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.fade-in.visible { opacity: 1; }

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.slide-left.visible { opacity: 1; transform: translateX(0); }

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }
.delay-600 { transition-delay: 0.6s !important; }

/* ── Cookie Banner ─────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 28px; left: 28px;
  max-width: 480px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  z-index: 800;
  box-shadow: var(--shadow-xl);
  transition: var(--t2);
}
.cookie-banner.hidden { opacity: 0; pointer-events: none; transform: translateY(16px); }
.cookie-title { font-weight: 600; color: var(--white); margin-bottom: 8px; }
.cookie-text { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 20px; }
.cookie-actions { display: flex; gap: 12px; }

/* ── Responsive ────────────────────────────────────────────────── */
/* ── Tablet ─────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-track::before { display: none; }
  .why-grid { gap: 48px; }
  .roi-grid { gap: 48px; }
}

/* ── Mobile ─────────────────────────────────────────────────────── */
@media (max-width: 800px) {
  :root {
    --section-y: 60px;
    --pad-x: 20px;
  }

  /* Typography */
  h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); line-height: 1.1; }
  h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); line-height: 1.15; }
  h3 { font-size: clamp(1.3rem, 5vw, 1.7rem); }
  p  { font-size: 0.97rem; }

  /* Navigation */
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .nav-actions { gap: 8px; }
  .nav-hamburger { display: flex; }
  .nav-inner { height: 68px; }
  .nav-logo-img { height: 36px; }
  .nav-lang { display: flex; font-size: 0.7rem; padding: 5px 8px; }

  /* Mobile nav menu */
  .nav-mobile { padding: 90px 28px 48px; }
  .nav-mobile .nav-link { font-size: 1.9rem; padding: 12px 0; }
  .nav-mobile > div { margin-top: 32px; }
  .nav-mobile > div .btn { width: 100%; justify-content: center; padding: 18px; font-size: 1rem; }

  /* Hero */
  .hero { min-height: 100svh; align-items: flex-end; padding-bottom: 48px; }
  .hero-content { max-width: 100%; padding-top: 80px; }
  .hero-eyebrow { margin-bottom: 20px; }
  .hero-eyebrow span { font-size: 0.66rem; }
  .hero h1 { margin-bottom: 20px; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 32px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; margin-bottom: 48px; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; padding: 18px 24px; }
  .hero-stats { gap: 20px 32px; flex-wrap: wrap; justify-content: center; text-align: center; }
  .hero-stat-value { font-size: 2rem; }
  .hero-stat-label { font-size: 0.68rem; }
  .hero-scroll { display: none; }

  /* Page hero (subpages) */
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .page-hero-content > div[style*="display:flex"] { flex-direction: column; gap: 16px; }
  .page-hero-content .btn { width: 100%; justify-content: center; }

  /* Trust bar */
  .trust-bar-inner { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .trust-divider { display: none; }
  .trust-item-text { font-size: 0.75rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Grids */
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 24px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .roi-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .dual-cta-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-track { grid-template-columns: 1fr; gap: 28px; }

  /* Why us */
  .why-badge-float { position: relative; bottom: auto; right: auto; display: inline-block; margin-top: 20px; }

  /* ROI */
  .roi-numbers { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Buttons - touch friendly */
  .btn { min-height: 48px; }
  .btn-lg { padding: 17px 32px; font-size: 0.85rem; }
  .btn-sm { padding: 13px 20px; }

  /* Service cards */
  .service-card { padding: 32px 24px; }

  /* Forms */
  .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
  .form-control { height: 52px; font-size: 1rem; }
  textarea.form-control { height: auto; }

  /* Simulator */
  .sim-wrap { padding: 28px 20px; }
  .sim-result-grid { grid-template-columns: 1fr; gap: 12px; }

  /* CTA panels */
  .cta-panel { padding: 40px 28px; text-align: center; }
  .cta-panel .btn { width: 100%; justify-content: center; }
  .dual-cta-grid .cta-panel:first-child { border-radius: var(--r-xl) var(--r-xl) 0 0; }
  .dual-cta-grid .cta-panel:last-child { border-radius: 0 0 var(--r-xl) var(--r-xl); }

  /* Properties horizontal scroll */
  .properties-row { gap: 16px; padding-bottom: 20px; }
  .property-card { min-width: 300px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }
  .footer-socials { justify-content: center; }

  /* WhatsApp float */
  .whatsapp-float { bottom: 20px; right: 16px; width: 52px; height: 52px; font-size: 1.4rem; }

  /* Cookie banner */
  .cookie-banner { left: 12px; right: 12px; max-width: none; bottom: 12px; padding: 20px; }
  .cookie-btn-group { flex-direction: column; gap: 10px; }
  .cookie-btn-group .btn { width: 100%; justify-content: center; }

  /* Section spacing */
  .section-header { margin-bottom: 40px; }

  /* KrossBooking form on mobile */
  .form-kross-booking > div { flex-direction: column !important; padding: 20px !important; gap: 12px !important; }
  .form-kross-booking input[type="submit"] { margin-top: 4px !important; }
}

/* ── Small mobile ───────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --pad-x: 16px; }

  h1 { font-size: clamp(1.9rem, 10vw, 2.6rem); }
  h2 { font-size: clamp(1.6rem, 8vw, 2rem); }

  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .roi-numbers { grid-template-columns: 1fr; }

  .hero-stats { flex-direction: column; gap: 16px; align-items: center; text-align: center; }
  .hero-stat-value { font-size: 1.8rem; }

  .nav-logo-img { height: 32px; }
  .nav-inner { height: 62px; }

  .property-card { min-width: 280px; }

  .trust-bar { padding: 20px 0; }
  .trust-item-text { font-size: 0.72rem; }

  .sim-wrap .btn { width: 100%; justify-content: center; }

  /* Full-width CTA buttons on small screens */
  [style*="display:flex"][style*="gap:16px"] .btn,
  [style*="display:flex"][style*="gap:12px"] .btn { width: 100%; justify-content: center; }
}

/* ── Utility ───────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-light { color: var(--text-light); }
.bg-navy { background: var(--navy); }
.bg-off-white { background: var(--off-white); }
.bg-cream { background: var(--cream); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
