/* ============================================
   TRUE VISION — Luxury Real Estate
   Premium Stylesheet v2.0

   Table of Contents:
   1.  Design Tokens (CSS Variables)
   2.  Reset & Base
   3.  Utilities
   4.  Buttons
   5.  Header / Navigation
   6.  Hero Section
   7.  Featured Properties
   8.  Property Cards
   9.  About / Why Us
   10. Testimonials
   11. CTA Banner
   12. Property Grid (Explore)
   13. Homepage Contact
   14. Footer
   15. Properties Listing Page
   16. Property Detail Page
   17. Gallery & Lightbox
   18. About Page
   19. Contact Page
   20. Animations & Keyframes
   21. Responsive — Tablet (≤1024px)
   22. Responsive — Mobile (≤768px)
   23. Responsive — Small (≤480px)
   ============================================ */


/* ===========================================
   1. DESIGN TOKENS
   =========================================== */
:root {
  /* Backgrounds — near-black with subtle blue undertone */
  --color-bg:         #08080a;
  --color-bg-alt:     #0e0e12;
  --color-surface:    #14141a;
  --color-surface-2:  #1c1c24;
  --color-surface-3:  #242430;

  /* Accent — Champagne Gold */
  --color-gold:       #c9a96e;
  --color-gold-light: #dfc291;
  --color-gold-dark:  #a8864e;
  --color-gold-glow:  rgba(201, 169, 110, 0.08);
  --color-gold-10:    rgba(201, 169, 110, 0.10);
  --color-gold-20:    rgba(201, 169, 110, 0.20);

  /* Text hierarchy */
  --color-text:       #ededef;
  --color-text-muted: #76767f;
  --color-text-dim:   #42424a;
  --color-white:      #ffffff;

  /* Borders — semi-transparent for glass effect */
  --color-border:     rgba(255, 255, 255, 0.06);
  --color-border-hover: rgba(255, 255, 255, 0.12);
  --color-divider:    rgba(255, 255, 255, 0.04);

  /* Typography */
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Motion — custom cubic-bezier for Apple-style smoothness */
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out:    cubic-bezier(0.65, 0, 0.35, 1);
  --transition-smooth: 0.5s var(--ease-out-expo);
  --transition-medium: 0.35s var(--ease-out-quart);
  --transition-fast:   0.2s ease;

  /* Shadows — layered for realistic depth */
  --shadow-xs:   0 1px 2px rgba(0, 0, 0, 0.15);
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.2),
                 0 1px 2px rgba(0, 0, 0, 0.15);
  --shadow-md:   0 4px 16px rgba(0, 0, 0, 0.25),
                 0 2px 4px rgba(0, 0, 0, 0.15);
  --shadow-lg:   0 8px 40px rgba(0, 0, 0, 0.35),
                 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-xl:   0 16px 64px rgba(0, 0, 0, 0.45),
                 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 80px rgba(201, 169, 110, 0.1),
                 0 0 30px rgba(201, 169, 110, 0.06);
  --shadow-gold: 0 8px 40px rgba(201, 169, 110, 0.18),
                 0 2px 8px rgba(201, 169, 110, 0.1);

  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;

  /* Spacing scale (8px grid) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-30: 120px;

  /* Border radius — refined for premium feel */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
}

/* --- Light Theme Override --- */
[data-theme="light"] {
  --color-bg:         #f5f3ef;
  --color-bg-alt:     #edeae4;
  --color-surface:    #ffffff;
  --color-surface-2:  #f0ede7;
  --color-surface-3:  #e6e2db;

  --color-gold:       #a8864e;
  --color-gold-light: #c9a96e;
  --color-gold-dark:  #8a6d3b;
  --color-gold-glow:  rgba(168, 134, 78, 0.10);
  --color-gold-10:    rgba(168, 134, 78, 0.10);
  --color-gold-20:    rgba(168, 134, 78, 0.20);

  --color-text:       #2a2a30;
  --color-text-muted: #6e6e78;
  --color-text-dim:   #a0a0a8;
  --color-white:      #1a1a1f;

  --color-border:     rgba(0, 0, 0, 0.08);
  --color-border-hover: rgba(0, 0, 0, 0.14);
  --color-divider:    rgba(0, 0, 0, 0.05);

  --shadow-xs:   0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md:   0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg:   0 8px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-xl:   0 16px 64px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 80px rgba(168, 134, 78, 0.08), 0 0 30px rgba(168, 134, 78, 0.04);
  --shadow-gold: 0 8px 40px rgba(168, 134, 78, 0.12), 0 2px 8px rgba(168, 134, 78, 0.06);
}

/* Light theme — component overrides for hard-coded dark values */
[data-theme="light"] .header.scrolled {
  background: rgba(245, 243, 239, 0.88);
}

[data-theme="light"] .header .nav-links a {
  color: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .header .nav-links a:hover,
[data-theme="light"] .header .nav-links a.active {
  color: var(--color-accent);
}

[data-theme="light"] .property-card-image::after {
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.6) 70%, transparent 100%);
}

[data-theme="light"] .page-hero {
  background: var(--color-bg-alt);
}

[data-theme="light"] .detail-hero::after {
  background: linear-gradient(to bottom, transparent 40%, rgba(245, 243, 239, 0.6) 70%, var(--color-bg) 100%);
}

[data-theme="light"] .property-card-placeholder {
  background: linear-gradient(135deg, #e8e5df, #f0ede7);
}

[data-theme="light"] .detail-hero-placeholder {
  background: linear-gradient(135deg, #e8e5df 0%, #f0ede7 50%, #e8e5df 100%);
}

/* Hero text stays white over background images in light mode */
[data-theme="light"] .hero-title,
[data-theme="light"] .hero-description,
[data-theme="light"] .hero-label,
[data-theme="light"] .hero-stat-number,
[data-theme="light"] .hero-stat-label,
[data-theme="light"] .hero-actions .btn-text,
[data-theme="light"] .scroll-indicator {
  color: #ffffff;
}

[data-theme="light"] .hero-actions .btn-primary {
  color: #ffffff;
}

/* CTA banner stays dark in light mode */
[data-theme="light"] .cta-inner {
  background: #14141a;
  color: #ededef;
}
[data-theme="light"] .cta-inner .section-label,
[data-theme="light"] .cta-inner .section-title,
[data-theme="light"] .cta-inner .section-subtitle {
  color: #ededef;
}

@media (max-width: 768px) {
  [data-theme="light"] .nav-links {
    background: rgba(245, 243, 239, 0.96);
  }
}


/* ===========================================
   2. RESET & BASE
   =========================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Eliminate 300ms tap delay on interactive elements */
a, button, input, select, textarea, [role="button"] {
  touch-action: manipulation;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

::selection {
  background: var(--color-gold-20);
  color: var(--color-white);
}

address {
  font-style: normal;
}


/* ===========================================
   3. UTILITIES
   =========================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-30) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.section-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.78;
  font-weight: 300;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Visually hidden — accessible to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ===========================================
   4. BUTTONS
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 16px 36px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Shimmer effect on hover */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-bg);
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

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

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline:active {
  transform: translateY(-1px);
}

.btn-text {
  padding: 0;
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: none;
  border: none;
  overflow: visible;
}

.btn-text::before {
  display: none;
}

.btn-text::after {
  content: "→";
  display: inline-block;
  margin-left: var(--space-2);
  transition: transform var(--transition-medium);
}

.btn-text:hover {
  color: var(--color-gold-light);
}

.btn-text:hover::after {
  transform: translateX(6px);
}


/* ===========================================
   5. HEADER / NAVIGATION
   =========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-smooth);
}

.header.scrolled {
  background: rgba(8, 8, 10, 0.78);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--color-white);
  transition: opacity var(--transition-fast);
}

.logo:hover {
  opacity: 0.85;
}

.logo span {
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-10);
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: var(--space-1) 0;
  transition: color var(--transition-medium);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transition: width var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Nav CTA button doesn't get underline */
.nav-links .nav-cta {
  margin-left: var(--space-5);
  padding: 10px 24px;
}

.nav-cta::after {
  display: none;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 26px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-white);
  transition: all 0.3s var(--ease-out-expo);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Subtle slow zoom for cinematic feel */
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-bg-placeholder {
  background: linear-gradient(135deg, #0d1117 0%, #161b22 40%, #0f1923 100%);
}

/* Multi-layer overlay for depth */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 30% 50%,
    transparent 0%,
    rgba(8, 8, 10, 0.3) 100%
  );
  z-index: 1;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 10, 0.1) 0%,
    rgba(8, 8, 10, 0.25) 30%,
    rgba(8, 8, 10, 0.55) 55%,
    rgba(8, 8, 10, 0.85) 75%,
    #08080a 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-8);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out-expo) forwards 0.2s;
}

.hero-label::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: var(--space-6);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out-expo) forwards 0.4s;
}

.hero-title em {
  font-style: italic;
  color: var(--color-gold);
  /* Subtle text shadow for glow */
  text-shadow: 0 0 40px rgba(201, 169, 110, 0.2);
}

.hero-description {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: var(--space-10);
  max-width: 480px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out-expo) forwards 0.6s;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out-expo) forwards 0.8s;
}

/* Stats — bottom right */
.hero-stats {
  position: absolute;
  bottom: var(--space-20);
  right: 0;
  z-index: 3;
  display: flex;
  gap: var(--space-16);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out-expo) forwards 1s;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.5px;
}

.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) forwards 1.2s;
}

.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: var(--color-border);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  animation: scrollDown 2.4s var(--ease-in-out) infinite;
}


/* ===========================================
   7. FEATURED PROPERTIES
   =========================================== */
.featured {
  background: var(--color-bg);
}

.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-16);
}


/* ===========================================
   8. PROPERTY CARDS
   =========================================== */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.property-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.6s var(--ease-out-expo);
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  position: relative;
}

.property-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Subtle top border glow on hover */
.property-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-gold-20) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity var(--transition-smooth);
  z-index: 2;
}

.property-card:hover {
  transform: translateY(-10px) scale(1.015);
  border-color: rgba(201, 169, 110, 0.2);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  background: rgba(255, 255, 255, 0.04);
}

.property-card:hover::before {
  opacity: 1;
}

.property-card a {
  display: block;
  color: inherit;
}

/* Card Image */
.property-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.property-card-image img,
.property-card-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.property-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #12121a, #1a1a28);
}

.property-card:hover .property-card-image img,
.property-card:hover .property-card-placeholder {
  transform: scale(1.06);
}

/* Gradient fade at bottom of image */
.property-card-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(
    to top,
    rgba(8, 8, 10, 0.7) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.property-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  padding: 6px 14px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(8, 8, 10, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-gold-light);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius-md);
  z-index: 2;
}

/* Card Body */
.property-card-body {
  padding: var(--space-6) var(--space-8) var(--space-8);
}

.property-location {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
  font-weight: 500;
}

.property-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: var(--space-3);
  color: var(--color-white);
  letter-spacing: -0.2px;
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.property-card:hover .property-name {
  color: var(--color-gold-light);
}

.property-price {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: var(--space-5);
  letter-spacing: 0.5px;
}

.property-features {
  display: flex;
  gap: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
}

.property-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.property-feature svg {
  width: 15px;
  height: 15px;
  opacity: 0.5;
  flex-shrink: 0;
}


/* ===========================================
   9. ABOUT / WHY US
   =========================================== */
.why-us {
  background: var(--color-bg-alt);
}

/* Subtle noise texture */
.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E");
  pointer-events: none;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.why-us-image {
  position: relative;
  height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-us-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.why-us-image:hover .why-us-image-main {
  transform: scale(1.03);
}

.why-us-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #12121a, #1a2030);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* Gold accent frame */
.why-us-image::after {
  content: "";
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius-sm);
  z-index: -1;
}

.why-us-content .section-subtitle {
  margin-bottom: var(--space-10);
}

.why-us-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.why-us-feature {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  border-radius: var(--radius-md);
  border-left: 2px solid transparent;
  transition: all var(--transition-medium);
}

.why-us-feature:hover {
  background: rgba(255, 255, 255, 0.02);
  border-left-color: var(--color-gold);
  padding-left: calc(var(--space-6) + 2px);
}

.why-us-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-glow);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-gold);
  transition: all var(--transition-medium);
}

.why-us-feature:hover .why-us-feature-icon {
  background: var(--color-gold-10);
  border-color: var(--color-gold-20);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.08);
}

.why-us-feature h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: var(--space-1);
  color: var(--color-white);
}

.why-us-feature p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  font-weight: 300;
}


/* ===========================================
   10. TESTIMONIALS
   =========================================== */
.testimonials {
  background: var(--color-bg);
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  max-width: 760px;
  margin: var(--space-16) auto 0;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.7s var(--ease-out-expo);
}

.testimonial-slide {
  min-width: 100%;
  text-align: center;
  padding: 0 var(--space-10);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: var(--space-8);
  color: var(--color-text);
}

.testimonial-quote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--color-gold);
  line-height: 0.6;
  margin-bottom: var(--space-6);
  opacity: 0.4;
  text-shadow: 0 0 60px rgba(201, 169, 110, 0.15);
}

.testimonial-author {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.5px;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--color-text-dim);
  margin-top: var(--space-1);
  letter-spacing: 0.5px;
}

/* Navigation dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-10);
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-text-dim);
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  padding: 0;
}

.testimonial-dot:hover {
  background: var(--color-text-muted);
  transform: scale(1.2);
}

.testimonial-dot.active {
  background: var(--color-gold);
  width: 28px;
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(201, 169, 110, 0.35);
}


/* ===========================================
   11. CTA BANNER
   =========================================== */
.cta-banner {
  padding: var(--space-30) 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

/* Radial gold ambience */
.cta-banner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: var(--space-16) var(--space-10);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cta-inner .section-title {
  margin-bottom: var(--space-4);
}

.cta-inner .section-subtitle {
  margin: 0 auto var(--space-10);
}


/* ===========================================
   12. PROPERTY GRID (EXPLORE)
   =========================================== */
.explore-grid {
  background: var(--color-bg-alt);
}

.explore-grid .properties-grid {
  margin-top: var(--space-16);
}

.explore-cta {
  text-align: center;
  margin-top: var(--space-16);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}


/* ===========================================
   13. HOMEPAGE CONTACT
   =========================================== */
.home-contact {
  background: var(--color-bg);
}

.home-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: start;
  margin-top: var(--space-16);
}

.home-contact-text {
  max-width: 480px;
}

.home-contact-text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: var(--space-8);
}

.home-contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}


/* ===========================================
   14. FOOTER
   =========================================== */
.footer {
  background: var(--color-bg-alt);
  padding: var(--space-20) 0 0;
  position: relative;
}

/* Subtle top border gradient */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-border),
    rgba(201, 169, 110, 0.15),
    var(--color-border),
    transparent
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-16);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid var(--color-border);
}

.footer-brand .logo {
  margin-bottom: var(--space-5);
  display: inline-block;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 300px;
  font-weight: 300;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.footer-links li {
  margin-bottom: var(--space-3);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 300;
}

.footer-links a {
  color: var(--color-text-muted);
  transition: all var(--transition-medium);
  position: relative;
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--color-text-dim);
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: var(--space-6);
}

.footer-socials a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
}

.footer-socials a:hover {
  color: var(--color-gold);
  border-color: var(--color-gold-20);
  background: var(--color-gold-glow);
  transform: translateY(-2px);
}


/* ===========================================
   15. PROPERTIES LISTING PAGE
   =========================================== */
.page-hero {
  padding: 160px 0 var(--space-24);
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

/* Subtle radial ambience behind page hero */
.page-hero::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 20%;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .section-label,
.page-hero .section-title,
.page-hero .section-subtitle {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.8s var(--ease-out-expo) forwards;
}

.page-hero .section-label { animation-delay: 0.1s; }
.page-hero .section-title { animation-delay: 0.25s; margin-bottom: var(--space-3); }
.page-hero .section-subtitle { animation-delay: 0.4s; }

.filter-bar {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
}

.filter-btn:hover {
  border-color: var(--color-border-hover);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
}

.filter-btn.active {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: var(--color-gold-glow);
}

/* Filter Panel — Advanced Filters */
.filter-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
  margin-bottom: var(--space-12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.filter-panel .filter-bar {
  margin-bottom: 0;
}

.filter-panel-row {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  align-items: flex-start;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

.filter-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.filter-select {
  width: 100%;
  padding: 10px var(--space-5);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 300;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2376767f' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  transition: all var(--transition-medium);
}

.filter-select:hover {
  border-color: var(--color-border-hover);
  background-color: rgba(255, 255, 255, 0.04);
}

.filter-select:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: rgba(201, 169, 110, 0.03);
  box-shadow: 0 0 0 3px var(--color-gold-glow);
}

.filter-selects {
  display: flex;
  gap: var(--space-3);
}

.filter-selects .filter-select {
  flex: 1;
}

.filter-results {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
}

.filter-results-count {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

.filter-clear {
  padding: 8px 18px;
  font-size: 0.7rem;
}


/* ===========================================
   16. PROPERTY DETAIL PAGE
   =========================================== */
.detail-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
}

.detail-hero img,
.detail-hero-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero-placeholder {
  background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0f1923 100%);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(8, 8, 10, 0.6) 70%,
    var(--color-bg) 100%
  );
}

.detail-content {
  position: relative;
  z-index: 1;
  padding-top: var(--space-12);
  padding-bottom: var(--space-24);
}

.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-12);
}

.detail-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: var(--space-2);
  color: var(--color-white);
}

.detail-location {
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
}

.detail-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-white);
  text-align: right;
  letter-spacing: -0.5px;
}

.detail-price-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.detail-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: var(--space-6);
  padding: var(--space-10) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-12);
}

.detail-stat {
  text-align: center;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  transition: background var(--transition-medium);
}

.detail-stat:hover {
  background: rgba(255, 255, 255, 0.02);
}

.detail-stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  letter-spacing: -0.3px;
}

.detail-stat-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.detail-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-16);
}

.detail-description h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: var(--space-5);
  color: var(--color-white);
}

.detail-description p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-6);
  font-weight: 300;
}

.detail-amenities {
  margin-top: var(--space-10);
}

.detail-amenities h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: var(--space-5);
  color: var(--color-white);
}

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

.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  padding: var(--space-3) 0;
  font-weight: 300;
}

.amenity-item::before {
  content: "✓";
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.75rem;
}

/* Sidebar */
.detail-sidebar {
  position: sticky;
  top: 100px;
}

.detail-contact-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
}

.detail-contact-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: var(--space-6);
  color: var(--color-white);
}

.detail-contact-card .form-group {
  margin-bottom: var(--space-4);
}

.detail-contact-card .btn {
  width: 100%;
  margin-top: var(--space-2);
}


/* ===========================================
   17. GALLERY & LIGHTBOX
   =========================================== */
.gallery-section {
  padding: var(--space-16) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-item {
  position: relative;
  height: 260px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img,
.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.gallery-item-placeholder {
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-text-dim);
  letter-spacing: 1px;
}

.gallery-item:hover img,
.gallery-item:hover .gallery-item-placeholder {
  transform: scale(1.08);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background var(--transition-medium);
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.25);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-size: 1.8rem;
  color: var(--color-text-muted);
  cursor: pointer;
  z-index: 2001;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--color-white);
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  transition: opacity 0.3s ease;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

/* Lightbox Nav Arrows */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 2rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out-expo);
  line-height: 1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-prev { left: var(--space-6); }
.lightbox-next { right: var(--space-6); }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.08);
}

/* Gallery Viewer */
.gallery-viewer {
  padding-top: 100px;
  padding-bottom: var(--space-6);
  background: var(--color-bg);
}

.gallery-main {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.gallery-thumbs {
  display: flex;
  gap: var(--space-3);
  padding-top: var(--space-4);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-surface-3) transparent;
}

.gallery-thumb {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  opacity: 0.4;
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: all 0.3s var(--ease-out-expo);
}

.gallery-thumb.active {
  opacity: 1;
  border-color: var(--color-gold);
  box-shadow: 0 0 16px rgba(201, 169, 110, 0.2);
  transform: scale(1.05);
}

.gallery-thumb:hover {
  opacity: 0.75;
  transform: scale(1.03);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Map Section */
.map-section {
  padding: var(--space-16) 0;
}

.map-section .section-title {
  margin-bottom: var(--space-10);
}

.map-placeholder {
  aspect-ratio: 21 / 9;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder span {
  font-size: 1rem;
  color: var(--color-text-muted);
  letter-spacing: 1.5px;
  font-weight: 300;
}


/* ===========================================
   18. ABOUT PAGE
   =========================================== */
.about-hero {
  padding: 160px 0 var(--space-24);
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 20%;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero .section-label,
.about-hero .section-title,
.about-hero .section-subtitle {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.8s var(--ease-out-expo) forwards;
}

.about-hero .section-label { animation-delay: 0.1s; }
.about-hero .section-title { animation-delay: 0.25s; }
.about-hero .section-subtitle { animation-delay: 0.4s; }

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.about-text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-5);
  font-weight: 300;
}

.about-text .btn {
  margin-top: var(--space-6);
}

.about-image {
  height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}

/* Decorative gold corner accent */
.about-image::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about-image img,
.about-image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-placeholder {
  background: linear-gradient(135deg, #12121a, #1a2030);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.team-card {
  text-align: center;
  transition: transform 0.5s var(--ease-out-expo);
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card-image {
  height: 340px;
  overflow: hidden;
  margin-bottom: var(--space-6);
  border-radius: var(--radius-lg);
  position: relative;
}

.team-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 10, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.team-card:hover .team-card-image::after {
  opacity: 1;
}

.team-card-image img,
.team-card-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s var(--ease-out-expo);
  filter: grayscale(30%) brightness(0.95);
}

.team-card-placeholder {
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.team-card:hover .team-card-image img,
.team-card:hover .team-card-placeholder {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(1);
}

.team-card h4 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 400;
  margin-bottom: var(--space-1);
  color: var(--color-white);
}

.team-card p {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
}

/* Stats */
.stats-section {
  background: var(--color-bg-alt);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-10);
  text-align: center;
}

.stat-item {
  padding: var(--space-10) var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all var(--transition-medium);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--color-border);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--color-gold);
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  font-weight: 400;
}


/* ===========================================
   19. CONTACT PAGE
   =========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  margin-top: var(--space-16);
}

.contact-grid .section-title {
  margin-bottom: var(--space-4);
}

.contact-grid .section-subtitle {
  margin-bottom: var(--space-12);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-item {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border-left: 2px solid transparent;
  transition: all var(--transition-medium);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.02);
  border-left-color: var(--color-gold);
  padding-left: calc(var(--space-5) + 4px);
}

.contact-item-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-glow);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-gold);
  transition: all var(--transition-medium);
}

.contact-item:hover .contact-item-icon {
  background: var(--color-gold-10);
  border-color: var(--color-gold-20);
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2px;
  color: var(--color-white);
}

.contact-item p,
.contact-item a,
.contact-item address {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.contact-item a:hover {
  color: var(--color-gold);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 22px var(--space-5) 10px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 0.88rem;
  font-weight: 300;
  transition: all var(--transition-medium);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: var(--color-border-hover);
  background: rgba(255, 255, 255, 0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: transparent;
}

/* Floating labels */
.form-group label {
  position: absolute;
  left: var(--space-5);
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-dim);
  font-size: 0.88rem;
  font-weight: 300;
  pointer-events: none;
  transition: all 0.25s var(--ease-out-expo);
}

.form-group textarea ~ label {
  top: 18px;
  transform: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: 6px;
  transform: none;
  font-size: 0.7rem;
  color: var(--color-gold);
}

/* Inline error messages */
.form-error-msg {
  display: block;
  max-height: 0;
  overflow: hidden;
  color: #e74c3c;
  font-size: 0.78rem;
  font-weight: 400;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
  opacity: 0;
  margin-top: 0;
}

.form-group.has-error .form-error-msg {
  max-height: 30px;
  opacity: 1;
  margin-top: 6px;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #e74c3c !important;
}

.form-group.has-error label {
  color: #e74c3c !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-gold);
  background: rgba(201, 169, 110, 0.03);
  box-shadow: 0 0 0 3px var(--color-gold-glow),
              0 0 20px rgba(201, 169, 110, 0.05);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2376767f' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-12);
  background: rgba(201, 169, 110, 0.04);
  border: 1px solid var(--color-gold-20);
  border-radius: var(--radius-lg);
}

.form-success.active {
  display: block;
  animation: fadeUp 0.5s var(--ease-out-expo) forwards;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: var(--space-3);
  color: var(--color-white);
}

.form-success p {
  color: var(--color-text-muted);
  font-weight: 300;
}

/* Success checkmark icon */
.form-success-icon {
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.form-success-icon circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
}

.form-success-icon path {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}

.form-success.active .form-success-icon circle {
  animation: checkDraw 0.6s 0.2s var(--ease-out-expo) forwards;
}

.form-success.active .form-success-icon path {
  animation: checkDraw 0.4s 0.6s var(--ease-out-expo) forwards;
}

/* Map placeholder */
.map-section {
  min-height: 350px;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--color-border);
  padding: var(--space-10);
}

.map-placeholder {
  text-align: center;
  color: var(--color-text-dim);
}

.map-placeholder span {
  font-size: 2.4rem;
  display: block;
  margin-bottom: var(--space-3);
}

.map-placeholder p {
  font-size: 0.88rem;
  color: var(--color-text-dim);
  letter-spacing: 1px;
  font-weight: 300;
}


/* ===========================================
   20. ANIMATIONS & KEYFRAMES
   =========================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 100%; }
}

@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s var(--ease-out-expo);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Auto-tagged reveal on scroll (JS: initScrollReveal) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

/* Hero text split animation (JS: initHeroTextReveal) */
.hero-title--split .hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out-expo) forwards;
}

/* Form error state (JS: initContactForm) */
.form-error {
  border-color: #e74c3c !important;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

@keyframes checkDraw {
  to { stroke-dashoffset: 0; }
}

/* --- Skeleton shimmer for loading images --- */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.property-card-image.is-loading {
  background: linear-gradient(90deg, var(--color-surface) 25%, var(--color-surface-2) 50%, var(--color-surface) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}

.property-card-image.is-loading img {
  opacity: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  .property-card-image.is-loading {
    animation: none;
  }
}

/* --- Search Bar in Filter Panel --- */
.filter-search {
  position: relative;
  margin-bottom: var(--space-5);
}

.filter-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  pointer-events: none;
  transition: color var(--transition-fast);
}

.filter-search-input:focus ~ .filter-search-icon,
.filter-search:focus-within .filter-search-icon {
  color: var(--color-gold);
}

.filter-search-input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.3px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.filter-search-input::placeholder {
  color: var(--color-text-dim);
}

.filter-search-input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-10);
}

/* --- Theme Toggle Button --- */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
  flex-shrink: 0;
  margin-right: var(--space-4);
}

.theme-toggle:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: var(--color-gold-glow);
}

.theme-toggle .icon-moon,
[data-theme="light"] .theme-toggle .icon-sun {
  display: none;
}

[data-theme="light"] .theme-toggle .icon-moon {
  display: block;
}

@media (max-width: 768px) {
  .theme-toggle {
    order: 2;
    margin-right: var(--space-2);
  }
}

/* --- Page Transition Overlay --- */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.page-transition.is-entering {
  opacity: 1;
  pointer-events: auto;
}

.page-transition.is-exiting {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .page-transition {
    opacity: 0 !important;
    display: none;
  }
}

/* Card cursor glow (JS: initCardGlow) */
.property-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    400px circle at var(--glow-x, -999px) var(--glow-y, -999px),
    rgba(201, 169, 110, 0.06),
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.property-card:hover::after {
  opacity: 1;
}

/* Stagger animation for property cards */
.property-card:nth-child(1) { transition-delay: 0s; }
.property-card:nth-child(2) { transition-delay: 0.08s; }
.property-card:nth-child(3) { transition-delay: 0.16s; }
.property-card:nth-child(4) { transition-delay: 0.24s; }
.property-card:nth-child(5) { transition-delay: 0.32s; }
.property-card:nth-child(6) { transition-delay: 0.40s; }
.property-card:nth-child(7) { transition-delay: 0.48s; }
.property-card:nth-child(8) { transition-delay: 0.56s; }
.property-card:nth-child(9) { transition-delay: 0.64s; }

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}


/* ===========================================
   21. RESPONSIVE — TABLET (≤1024px)
   =========================================== */
@media (max-width: 1024px) {
  .property-grid,
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }

  .why-us-grid {
    gap: var(--space-10);
  }

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

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

  .gallery-thumb {
    width: 100px;
    height: 66px;
  }

  .map-placeholder {
    aspect-ratio: 16 / 9;
  }

  .detail-body {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }

  .hero-stats {
    position: static;
    margin-top: var(--space-10);
    justify-content: flex-start;
    gap: var(--space-10);
  }

  .home-contact-grid {
    gap: var(--space-12);
  }

  .cta-inner {
    padding: var(--space-12) var(--space-8);
  }
}


/* ===========================================
   22. RESPONSIVE — MOBILE (≤768px)
   =========================================== */
@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: var(--space-20) 0;
  }

  .container {
    padding: 0 var(--space-5);
  }

  /* Mobile Nav */
  .menu-toggle {
    display: flex;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
  }

  /* Touch-friendly testimonial dots */
  .testimonial-dot {
    width: 12px;
    height: 12px;
    min-width: 44px;
    min-height: 44px;
    background-clip: content-box;
    padding: 16px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: rgba(8, 8, 10, 0.96);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    flex-direction: column;
    justify-content: center;
    padding: var(--space-10);
    gap: var(--space-6);
    border-left: 1px solid var(--color-border);
    transition: right 0.5s var(--ease-out-expo);
  }

  .nav-links.open {
    right: 0;
  }

  /* Backdrop overlay behind mobile menu */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 998;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 0.85rem;
    letter-spacing: 3px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: var(--space-4);
  }

  /* Grids collapse */
  .property-grid,
  .properties-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .why-us-grid,
  .about-content,
  .contact-grid,
  .home-contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .why-us-image {
    height: 300px;
  }

  .about-image {
    height: 300px;
  }

  .featured-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-5);
  }

  .detail-header {
    flex-direction: column;
    gap: var(--space-5);
  }

  .detail-price {
    text-align: left;
  }

  .detail-stats {
    flex-wrap: wrap;
    gap: var(--space-6);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

  .team-card-image {
    height: 220px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-5);
  }

  .hero-stats {
    gap: var(--space-8);
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .testimonial-slide {
    padding: 0 var(--space-5);
  }

  .testimonial-quote {
    font-size: 1.15rem;
  }

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

  .gallery-thumb {
    width: 80px;
    height: 54px;
  }

  .gallery-main {
    aspect-ratio: 4 / 3;
  }

  .map-placeholder {
    aspect-ratio: 4 / 3;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }

  .lightbox-prev { left: var(--space-3); }
  .lightbox-next { right: var(--space-3); }

  /* Mobile hero polish */
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: var(--space-6);
  }

  .hero-description {
    font-size: 0.95rem;
  }

  /* Tighter mobile spacing */
  .contact-grid,
  .about-content {
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .page-hero {
    padding: 120px 0 40px;
  }

  .about-hero {
    padding: 120px 0 40px;
  }
}


/* ===========================================
   23. RESPONSIVE — SMALL MOBILE (≤480px)
   =========================================== */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: 560px;
  }

  .hero-label {
    font-size: 0.6rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .property-card-content {
    padding: 16px;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .property-card-image {
    aspect-ratio: 16 / 10;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.7rem;
  }

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

  .stats-grid {
    gap: var(--space-3);
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .filter-bar {
    gap: var(--space-2);
  }

  .filter-btn {
    padding: 12px 18px;
    font-size: 0.65rem;
  }

  .filter-panel {
    padding: var(--space-5);
  }

  .filter-panel-row {
    flex-direction: column;
    gap: var(--space-5);
  }

  .filter-group {
    min-width: 100%;
  }

  .filter-selects {
    flex-direction: column;
  }

  .filter-results {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
}


/* ===========================================
   24. PERFORMANCE — content-visibility
   =========================================== */
.featured,
.explore-grid,
.why-us,
.testimonials,
.home-contact,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}


/* ===========================================
   25. LARGE SCREENS (≥1440px)
   =========================================== */
@media (min-width: 1440px) {
  :root {
    --max-width: 1360px;
  }

  .section {
    padding: var(--space-30) 0;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .property-grid,
  .properties-grid {
    gap: var(--space-10);
  }

  .why-us-grid {
    gap: var(--space-24);
  }

  .why-us-image {
    height: 620px;
  }
}


/* ===========================================
   26. REDUCED MOTION — respect user prefs
   =========================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-bg img {
    animation: none;
  }

  .property-card {
    opacity: 1;
    transform: none;
  }

  .reveal,
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .page-hero .section-label,
  .page-hero .section-title,
  .page-hero .section-subtitle,
  .about-hero .section-label,
  .about-hero .section-title,
  .about-hero .section-subtitle {
    opacity: 1;
    transform: none;
  }
}
