/* ============================================================
   MALLORCA VILLAS & INVESTMENT
   Premium Luxury Real Estate — Master Stylesheet
   ============================================================ */

/* Fonts loaded via <link> preload in HTML for performance */

/* --- CSS Variables ----------------------------------------- */
:root {
  --gold:         #C4963A;
  --gold-light:   #D4AF6A;
  --gold-pale:    #F2EAD8;
  --gold-dark:    #9A7420;
  --navy:         #0C1520;
  --navy-mid:     #162032;
  --navy-light:   #1E2E42;
  --cream:        #F9F6F1;
  --cream-dark:   #EDE7DC;
  --white:        #FFFFFF;
  --text:         #1A1A1A;
  --text-mid:     #4A4848;
  --text-light:   #888080;
  --border:       #DDD5C8;
  --border-light: #EDE7DC;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-xs: 2px;
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 24px;

  --shadow-xs:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.08);
  --shadow:      0 6px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 12px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 6px 32px rgba(196,150,58,0.35);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);

  --transition:      all 0.3s var(--ease);
  --transition-slow: all 0.6s var(--ease);

  --nav-height: 80px;
  --section-gap: 120px;
  --section-gap-sm: 80px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: var(--font-body); }
button { cursor: pointer; border: none; background: none; }

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.display-1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; line-height: 1.05; }
.display-2 { font-size: clamp(2.2rem, 4.5vw, 4rem);  font-weight: 400; line-height: 1.1;  }
.display-3 { font-size: clamp(1.8rem, 3.5vw, 3rem);  font-weight: 400; line-height: 1.15; }

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-lg  { font-size: 1.125rem; line-height: 1.75; }
.body-md  { font-size: 1rem;     line-height: 1.7;  }
.body-sm  { font-size: 0.875rem; line-height: 1.65; }
.body-xs  { font-size: 0.8rem;   line-height: 1.6;  }

/* --- Layout Utilities -------------------------------------- */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-sm  { max-width: 900px; }
.container-xs  { max-width: 680px; }
.container-wide { max-width: 1560px; }

.section { padding: var(--section-gap) 0; }
.section-sm { padding: var(--section-gap-sm) 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: 24px; }

.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; }

.text-center { text-align: center; }
.text-right  { text-align: right; }

.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; }
.mt-64 { margin-top: 64px; }

/* --- Decorative Elements ----------------------------------- */
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 16px 0;
}

.gold-line-center {
  margin: 16px auto;
}

.section-header { max-width: 640px; }
.section-header.center { margin: 0 auto; text-align: center; }
.section-header .label { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-mid); }
.section-header .gold-line { margin: 16px 0 0; }
.section-header.center .gold-line { margin: 16px auto 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.nav--transparent {
  background: transparent;
}

.nav--solid {
  background: rgba(12, 21, 32, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav--light {
  background: rgba(249, 246, 241, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-light);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
}

/* Logo */
.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav__logo-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1;
  transition: var(--transition);
}

.nav--light .nav__logo-mark { color: var(--navy); }

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-top: 4px;
}

/* Navigation Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  position: relative;
}

.nav--light .nav__link { color: var(--text-mid); }

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}

.nav--light .nav__link:hover,
.nav--light .nav__link.active {
  color: var(--navy);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

/* Nav Right */
.nav__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 4px 6px;
  transition: var(--transition);
}

.nav--light .lang-switch {
  background: rgba(0,0,0,0.04);
  border-color: var(--border);
}

.lang-btn {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 4px 8px;
  border-radius: 14px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  background: none;
}

.nav--light .lang-btn { color: var(--text-light); }

.lang-btn.active {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(196,150,58,0.4);
}

/* Nav CTA */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 2px;
  transition: var(--transition);
}

.nav__cta:hover {
  background: var(--gold-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

.nav--light .nav__burger span { background: var(--navy); }

.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.nav__mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--navy);
  padding: 32px 40px 48px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.nav__mobile-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.nav__mobile-link:hover { color: var(--gold); }

.nav__mobile-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__mobile-lang {
  display: flex;
  gap: 8px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 1.5px solid var(--gold);
}

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

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

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

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid transparent;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s var(--ease);
}

.btn-ghost:hover::after { transform: scaleX(1.1); }

.btn-arrow {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  transition: var(--transition);
}

.btn-arrow svg { transition: transform 0.3s var(--ease); }
.btn-arrow:hover svg { transform: translateX(4px); }

.btn-lg { padding: 18px 48px; font-size: 0.75rem; }
.btn-sm { padding: 10px 24px; font-size: 0.65rem; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1613977257363-707ba9348227?w=1920&q=85&auto=format');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s var(--ease);
}

.hero__bg.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 16, 26, 0.82) 0%,
    rgba(10, 16, 26, 0.55) 55%,
    rgba(10, 16, 26, 0.35) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 40px;
  margin-left: 8%;
  animation: heroIn 1.2s var(--ease) forwards;
}

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

.hero__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero__label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__label span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 48px;
  letter-spacing: 0.01em;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: bounce 2s ease infinite;
}

.hero__scroll span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Hero stats bar */
.hero__stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(12, 21, 32, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hero__stats-inner {
  display: flex;
  align-items: stretch;
  padding: 0 80px;
  max-width: 1320px;
  margin: 0 auto;
}

.hero__stat {
  flex: 1;
  padding: 28px 0;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.hero__stat:last-child { border-right: none; }

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   FEATURED PROPERTIES
   ============================================================ */
.properties-section { background: var(--cream); }

.properties-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: none;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Property Cards */
.property-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-slow);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.property-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.property-card:hover .property-card__image img {
  transform: scale(1.06);
}

.property-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 1;
}

.property-card__badge--new { background: var(--navy); color: var(--white); }
.property-card__badge--off { background: #1a1a1a; color: var(--gold); }

.property-card__save {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1;
  border: none;
}

.property-card__save:hover { background: var(--white); transform: scale(1.1); }

.property-card__body {
  padding: 24px;
}

.property-card__location {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-card__location svg { width: 10px; height: 10px; }

.property-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.25;
}

.property-card__desc {
  font-size: 0.825rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}

.property-card__features {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.property-card__feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-mid);
}

.property-card__feature svg { color: var(--gold); width: 14px; height: 14px; }

.property-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.property-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
}

.property-card__price span {
  font-size: 0.7rem;
  font-family: var(--font-body);
  color: var(--text-light);
  font-weight: 400;
}

/* Properties Grid */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Featured / Large card */
.property-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}

.property-card--featured .property-card__image {
  aspect-ratio: auto;
  height: 100%;
  min-height: 380px;
}

.property-card--featured .property-card__title {
  font-size: 1.7rem;
}

/* ============================================================
   WHY MALLORCA SECTION
   ============================================================ */
.why-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(196,150,58,0.08);
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(196,150,58,0.06);
  pointer-events: none;
}

.why-section .section-header .label { color: var(--gold-light); }
.why-section .section-header h2 { color: var(--white); }
.why-section .section-header p { color: rgba(255,255,255,0.55); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 72px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
}

.why__item {
  padding: 48px 40px;
  background: var(--navy);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why__item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.why__item:hover::before { transform: scaleX(1); }

.why__item:hover {
  background: var(--navy-light);
}

.why__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 24px;
}

.why__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.why__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.why__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ============================================================
   LOCATIONS SECTION
   ============================================================ */
.locations-section { background: var(--white); }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 64px;
}

.location-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.location-card:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.location-card:nth-child(2),
.location-card:nth-child(3) {
  aspect-ratio: 4/3;
}

.location-card:nth-child(4),
.location-card:nth-child(5),
.location-card:nth-child(6) {
  aspect-ratio: 4/3;
}

.location-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.location-card:hover .location-card__img {
  transform: scale(1.08);
}

.location-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,16,26,0.75) 0%, transparent 60%);
  transition: var(--transition);
}

.location-card:hover .location-card__overlay {
  background: linear-gradient(to top, rgba(10,16,26,0.88) 0%, rgba(10,16,26,0.2) 60%);
}

.location-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}

.location-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.location-card:nth-child(1) .location-card__name {
  font-size: 2rem;
}

.location-card__count {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
}

.location-card:hover .location-card__count {
  opacity: 1;
  transform: translateY(0);
}

.location-card__arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s var(--ease);
}

.location-card:hover .location-card__arrow {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--cream); }

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.services-image {
  position: relative;
}

.services-image__main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.services-image__accent {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}

.services-image__badge {
  position: absolute;
  top: 32px; right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  border-radius: var(--radius-sm);
}

.services-image__badge .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  display: block;
}

.services-image__badge .text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.service-item:first-child { padding-top: 0; }

.service-item:hover { transform: translateX(6px); }

.service-item__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
  transition: var(--transition);
}

.service-item:hover .service-item__icon {
  background: var(--gold);
  color: var(--white);
}

.service-item__body {}

.service-item__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.service-item__desc {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   TRUST / CREDIBILITY SECTION
   ============================================================ */
.trust-section {
  background: var(--white);
  position: relative;
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trust-content {}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.trust-stat {
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

.trust-stat__number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-stat__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.trust-image {
  position: relative;
}

.trust-image__main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.trust-image__quote {
  position: absolute;
  bottom: 32px; left: -32px;
  background: var(--navy);
  color: var(--white);
  padding: 32px;
  max-width: 300px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.trust-image__quote blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.85);
}

.trust-image__quote cite {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: normal;
}

/* Testimonials row */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.testimonial-card {
  background: var(--cream);
  padding: 36px;
  border-radius: var(--radius-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 16px; left: 28px;
  line-height: 1;
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-pale);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--navy);
}

.testimonial-card__origin {
  font-size: 0.72rem;
  color: var(--text-light);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
}

/* ============================================================
   LEAD GENERATION / CONTACT FORM SECTION
   ============================================================ */
.lead-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.lead-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=60&auto=format');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.lead-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lead-content .label { color: var(--gold-light); }
.lead-content h2 { color: var(--white); margin: 16px 0; }
.lead-content p { color: rgba(255,255,255,0.55); line-height: 1.75; }

.lead-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.lead-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.lead-point-icon {
  width: 20px; height: 20px;
  background: rgba(196,150,58,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group.full { grid-column: span 2; }

.form-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--cream);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196,150,58,0.1);
}

.form-control::placeholder { color: var(--text-light); }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23888' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  font-size: 0.72rem;
}

.form-privacy {
  font-size: 0.7rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1499793983690-e29da59ef1c2?w=1920&q=80&auto=format');
  background-size: cover;
  background-position: center;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,16,26,0.90) 0%, rgba(10,16,26,0.70) 100%);
}

.cta-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
}

.cta-section__content .label { color: var(--gold-light); }

.cta-section__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin: 16px 0 20px;
  line-height: 1.15;
}

.cta-section__content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer__top {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__brand {}

.footer__logo-mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer__logo-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer__social-link {
  width: 38px; height: 38px;
  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);
  transition: var(--transition);
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer__col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer__contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  width: 14px;
  height: 14px;
}

.footer__contact-item:hover { color: rgba(255,255,255,0.7); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}

.footer__legal a:hover { color: var(--gold-light); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  padding: 14px 22px 14px 16px;
  border-radius: 40px;
  box-shadow: 0 6px 32px rgba(37,211,102,0.4);
  transition: var(--transition);
  white-space: nowrap;
}

.whatsapp-btn:hover {
  background: #1EB857;
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(37,211,102,0.5);
}

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

.whatsapp-btn span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Ripple animation */
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 44px;
  border: 2px solid rgba(37,211,102,0.4);
  animation: ripple 2s ease infinite;
}

@keyframes ripple {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  height: 480px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,16,26,0.85) 0%, rgba(10,16,26,0.4) 60%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.page-hero__breadcrumb a { transition: var(--transition); }
.page-hero__breadcrumb a:hover { color: var(--gold-light); }
.page-hero__breadcrumb span { color: var(--gold); }

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

.page-hero__subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  max-width: 480px;
  line-height: 1.7;
}

/* ============================================================
   PROPERTIES PAGE
   ============================================================ */
.properties-page { background: var(--cream); }

.properties-toolbar {
  background: var(--white);
  padding: 24px 40px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.properties-count {
  font-size: 0.8rem;
  color: var(--text-mid);
}

.properties-count strong { color: var(--navy); font-weight: 600; }

.properties-sort {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-mid);
}

.sort-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 32px 8px 12px;
  font-size: 0.78rem;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
}

.properties-filters {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 40px;
  overflow-x: auto;
  white-space: nowrap;
  display: flex;
  gap: 8px;
}

.properties-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 40px;
}

.properties-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ============================================================
   PROPERTY DETAIL PAGE
   ============================================================ */
.property-detail { padding-top: var(--nav-height); }

.property-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: 4px;
  height: 564px;
}

.property-gallery__main {
  grid-row: span 2;
  overflow: hidden;
  cursor: pointer;
}

.property-gallery__main img,
.property-gallery__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.property-gallery__main:hover img,
.property-gallery__thumb:hover img {
  transform: scale(1.04);
}

.property-gallery__thumb {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.property-gallery__thumb:nth-child(3) {
  position: relative;
}

.property-gallery__more {
  position: absolute;
  inset: 0;
  background: rgba(10,16,26,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 8px;
}

.property-detail__body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 40px;
  align-items: start;
}

.property-detail__main {}

.property-detail__header {
  margin-bottom: 32px;
}

.property-detail__location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.property-detail__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.property-detail__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--navy);
}

.property-detail__features {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin: 32px 0;
  flex-wrap: wrap;
}

.property-detail__feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.property-detail__feature svg { color: var(--gold); width: 20px; height: 20px; }

.property-detail__feature-val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
}

.property-detail__feature-lbl {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.property-detail__section {
  margin-bottom: 40px;
}

.property-detail__section h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
}

.property-detail__section p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.property-amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.property-amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 10px 14px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.property-amenity svg { color: var(--gold); width: 14px; height: 14px; flex-shrink: 0; }

/* Inquiry Sidebar */
.property-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.property-inquiry {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.property-inquiry h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.property-inquiry p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.property-agent {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.property-agent__img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.property-agent__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.property-agent__title {
  font-size: 0.72rem;
  color: var(--gold-light);
  margin-top: 2px;
}

.property-agent__contacts {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.agent-contact-btn {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 5px 14px;
  transition: var(--transition);
  cursor: pointer;
}

.agent-contact-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ============================================================
   INVESTMENT PAGE
   ============================================================ */
.invest-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 64px;
}

.invest-highlight {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.invest-highlight:last-child { border-right: none; }
.invest-highlight:hover { background: var(--cream); }

.invest-highlight__icon { color: var(--gold); margin: 0 auto 16px; }

.invest-highlight__number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--navy);
}

.invest-highlight__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
}

.invest-chart-section { background: var(--cream); }

/* ============================================================
   AREAS PAGE
   ============================================================ */
.area-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  background: var(--white);
}

.area-detail-card:nth-child(even) { direction: rtl; }
.area-detail-card:nth-child(even) > * { direction: ltr; }

.area-detail-card__image {
  aspect-ratio: auto;
  min-height: 360px;
  overflow: hidden;
}

.area-detail-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.area-detail-card:hover .area-detail-card__image img { transform: scale(1.05); }

.area-detail-card__body {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.area-detail-card__tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.area-detail-card__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}

.area-detail-card__desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.area-detail-card__stats {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.area-detail-stat {}
.area-detail-stat__number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
}

.area-detail-stat__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero-section {
  background: var(--cream);
  padding: 100px 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.value-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}

.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.value-card__icon { color: var(--gold); margin-bottom: 16px; }

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card__desc {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.team-card {
  text-align: center;
}

.team-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  transition: var(--transition);
  filter: grayscale(20%);
}

.team-card:hover .team-card__img { filter: grayscale(0%); }

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  background: var(--cream);
  min-height: 100vh;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info__title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-method__icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.contact-method__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-method__value {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}

.contact-form-card {
  background: var(--white);
  padding: 56px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section { height: 480px; position: relative; overflow: hidden; }
.map-section iframe { width: 100%; height: 100%; border: 0; filter: grayscale(20%) contrast(1.1); }

.map-overlay {
  position: absolute;
  top: 40px; left: 80px;
  background: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 280px;
}

.map-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.map-overlay p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-gap: 80px; }

  .container { padding: 0 28px; }
  .nav__links { gap: 24px; }
  .nav__cta { display: none; }

  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .property-card--featured { grid-column: span 2; grid-template-columns: 1fr 1fr; }

  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .location-card:nth-child(1) { grid-column: span 2; }

  .services-layout { gap: 48px; }
  .trust-layout { gap: 48px; }
  .lead-layout { gap: 48px; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }

  .invest-highlights { grid-template-columns: repeat(2, 1fr); }
  .invest-highlight { border-bottom: 1px solid var(--border); }
  .invest-highlight:nth-child(2) { border-right: none; }
  .invest-highlight:nth-child(3) { border-bottom: none; }
  .invest-highlight:nth-child(4) { border-right: none; border-bottom: none; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: repeat(2, 1fr); }

  .testimonials { grid-template-columns: 1fr 1fr; }
  .testimonials > *:last-child { display: none; }

  .property-detail__body { grid-template-columns: 1fr; }
  .property-sidebar { position: static; }
  .property-gallery { grid-template-rows: repeat(2, 220px); height: 444px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-gap: 64px; --nav-height: 64px; }

  .container { padding: 0 20px; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .lang-switch { display: none; }
  .nav__inner { padding: 0 20px; }
  .nav__mobile { padding: 24px 20px 40px; }

  .display-1 { font-size: 2.4rem; }
  .display-2 { font-size: 2rem; }
  .display-3 { font-size: 1.6rem; }

  .hero__content { margin-left: 0; padding: 0 20px; }
  .hero__stats-inner { padding: 0 20px; gap: 0; flex-wrap: wrap; }
  .hero__stat { flex: 1 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .hero__stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
  .hero__actions { gap: 12px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }

  .properties-grid { grid-template-columns: 1fr; }
  .property-card--featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .property-card--featured .property-card__image { min-height: 240px; }

  .why__grid { grid-template-columns: 1fr; }

  .locations-grid { grid-template-columns: 1fr; }
  .location-card:nth-child(1) { grid-column: span 1; }

  .services-layout,
  .trust-layout,
  .lead-layout,
  .about-intro { grid-template-columns: 1fr; gap: 40px; }

  .services-image__accent { display: none; }
  .services-image__badge { right: 16px; }

  .trust-image__quote { left: 0; bottom: 16px; max-width: 100%; }

  .testimonials { grid-template-columns: 1fr; }
  .testimonials > *:last-child { display: block; }

  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .contact-form { padding: 28px 20px; }
  .contact-layout { grid-template-columns: 1fr; padding: 48px 20px; }
  .contact-form-card { padding: 32px 24px; }

  .page-hero { height: 360px; }
  .page-hero__content { padding: 0 20px; }

  .property-gallery { grid-template-columns: 1fr; grid-template-rows: 300px; height: auto; }
  .property-gallery__thumb { display: none; }
  .property-gallery__main { grid-row: span 1; }
  .property-detail__body { padding: 40px 20px; }

  .area-detail-card { grid-template-columns: 1fr; }
  .area-detail-card:nth-child(even) { direction: ltr; }
  .area-detail-card__body { padding: 36px 28px; }

  .invest-highlights { grid-template-columns: 1fr 1fr; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: 1fr; }

  .map-overlay { left: 20px; right: 20px; max-width: none; }

  .whatsapp-btn span { display: none; }
  .whatsapp-btn { padding: 14px; border-radius: 50%; }
  .whatsapp-btn::before { border-radius: 50%; }

  .hero__scroll { display: none; }
  .trust-stats { grid-template-columns: 1fr 1fr; }

  .properties-page-grid { grid-template-columns: 1fr; }
  .property-amenities { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.z-1 { z-index: 1; }

/* Gold divider */
.gold-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  border: none;
  margin: 0;
}

/* Badge pill */
.pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}

.pill-gold { background: var(--gold-pale); color: var(--gold-dark); }
.pill-navy { background: var(--navy); color: var(--white); }

/* Number counter animation */
.count-up { display: inline-block; }
