/* ===================================================
   KHATIB GROUP — Design System
   Premium Real Estate Website
   =================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Primary Palette — Warm Gold & Deep Navy */
  --gold-50: #fdf8ef;
  --gold-100: #f9ecd5;
  --gold-200: #f2d6a9;
  --gold-300: #e9ba73;
  --gold-400: #e2a04e;
  --gold-500: #d4862e;
  --gold-600: #c06a22;
  --gold-700: #a0501f;
  --gold-800: #824020;
  --gold-900: #6b361d;

  --navy-50: #f0f4f8;
  --navy-100: #d9e2ec;
  --navy-200: #bcccdc;
  --navy-300: #9fb3c8;
  --navy-400: #6e8ca0;
  --navy-500: #486581;
  --navy-600: #334e68;
  --navy-700: #243b53;
  --navy-800: #1a2b3f;
  --navy-900: #0f1b2d;
  --navy-950: #0a1220;

  /* Neutral */
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #868e96;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;

  /* Accent */
  --accent-teal: #2dd4bf;
  --accent-emerald: #34d399;

  /* Semantic */
  --text-primary: var(--navy-900);
  --text-secondary: var(--navy-600);
  --text-tertiary: var(--navy-400);
  --text-on-dark: var(--gray-100);
  --text-on-dark-secondary: var(--gray-400);
  --text-gold: var(--gold-400);

  --bg-primary: var(--white);
  --bg-secondary: var(--gray-50);
  --bg-dark: var(--navy-950);
  --bg-dark-secondary: var(--navy-900);
  --bg-dark-card: rgba(15, 27, 45, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.06);
  --bg-glass-light: rgba(255, 255, 255, 0.03);

  --border-light: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(226, 160, 78, 0.3);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 4px 30px rgba(226, 160, 78, 0.2);
  --shadow-gold-lg: 0 8px 40px rgba(226, 160, 78, 0.3);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 900px;
  --nav-height: 80px;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-on-dark);
  background-color: var(--bg-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-style: normal;
}

p, span, a, button, input, textarea, select, label, li {
  font-family: var(--font-sans);
  font-style: normal;
}

em, cite, blockquote, i {
  font-style: normal;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

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

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

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

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

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

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

/* --- Section Label (small uppercase label above titles) --- */
.section-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-400);
  margin-bottom: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold-400);
}

/* --- Section Title --- */
.section-title {
  font-family: var(--font-serif);
  font-size: var(--text-5xl);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--space-6);
}

.section-title span {
  color: var(--gold-400);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-on-dark-secondary);
  line-height: 1.8;
  max-width: 680px;
}

.section-subtitle.centered {
  margin: 0 auto;
}

/* --- Divider --- */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  margin: var(--space-6) 0;
  border-radius: 2px;
}

.divider.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================
   NAVIGATION
   =================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 var(--space-8);
  transition: all var(--transition-base);
  background: transparent;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.navbar.scrolled {
  background: rgba(10, 18, 32, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  z-index: 1001;
}

.nav-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--navy-950);
  position: relative;
  overflow: hidden;
}

.nav-logo .logo-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  border-radius: inherit;
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 5px;
}

.nav-logo .logo-text .logo-name {
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-logo .logo-text .logo-tagline {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold-400);
  opacity: 0.9;
}

.site-logo-img,
.nav-logo img {
  max-height: 130px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-fast);
}

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

.nav-menu-list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-300);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
  background: var(--bg-glass);
}

.nav-links a.active {
  color: var(--gold-400);
  background: rgba(226, 160, 78, 0.1);
}

.nav-cta {
  padding: var(--space-2) var(--space-6) !important;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600)) !important;
  color: var(--navy-950) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-full) !important;
  transition: all var(--transition-base) !important;
  box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-gold-lg) !important;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500)) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: var(--space-2);
  z-index: 10001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

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

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

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

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--white);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-400);
  color: var(--gold-400);
  transform: translateY(-3px);
}

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

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

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-base);
}

.btn-icon {
  font-size: var(--text-lg);
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

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

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  will-change: transform;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

/* --- Hero Background Video --- */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  will-change: transform;
  animation: heroVideoZoom 30s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

@keyframes heroVideoZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 18, 32, 0.92) 0%,
    rgba(10, 18, 32, 0.75) 40%,
    rgba(10, 18, 32, 0.6) 100%
  );
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: rgba(226, 160, 78, 0.1);
  border: 1px solid rgba(226, 160, 78, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-400);
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: var(--text-7xl);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 .text-shimmer {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--gold-300));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-slogan {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-400);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero p {
  font-size: var(--text-lg);
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: var(--space-10);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: var(--space-12);
  margin-top: var(--space-16);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-light);
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

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

.hero-stat .stat-number {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-top: var(--space-1);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero .hero-bg img {
  animation: none;
}

.page-hero .hero-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 18, 32, 0.95) 0%,
    rgba(10, 18, 32, 0.6) 60%,
    rgba(10, 18, 32, 0.4) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-16);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: var(--text-6xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.page-hero p {
  font-size: var(--text-lg);
  color: var(--gray-400);
  max-width: 600px;
}

/* Page-hero: stop video zoom animation (keep static feel) */
.page-hero .hero-video {
  animation: none;
  transform: scale(1.02);
}

/* --- Unit Page Hero (taller for impact) --- */
.unit-page-hero {
  height: 60vh;
  min-height: 480px;
  align-items: flex-end;
}

.unit-hero-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--gold-400);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  margin-bottom: var(--space-5);
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.unit-hero-back:hover {
  opacity: 1;
}

.unit-hero-specs {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-3);
  font-size: var(--text-base);
  color: var(--gray-300);
  flex-wrap: wrap;
}

.unit-hero-dot {
  color: var(--gold-400);
  font-size: var(--text-xl);
  line-height: 1;
}

/* ===================================================
   CARDS
   =================================================== */
.card {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.08);
}

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 18, 32, 0.8), transparent);
}

.card-badge {
  position: absolute;
  top: var(--space-5);
  left: var(--space-5);
  padding: var(--space-1) var(--space-4);
  background: rgba(226, 160, 78, 0.9);
  color: var(--navy-950);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
}

.card-body {
  padding: var(--space-8);
}

.card-title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.card-location {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--gold-400);
  margin-bottom: var(--space-4);
}

.card-description {
  font-size: var(--text-sm);
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

/* ===================================================
   VALUE/FEATURE CARDS
   =================================================== */
.value-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  background: rgba(255, 255, 255, 0.08);
}

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

.value-card .value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-6);
  background: linear-gradient(135deg, rgba(226, 160, 78, 0.15), rgba(226, 160, 78, 0.05));
  border: 1px solid rgba(226, 160, 78, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  color: var(--gold-400);
  transition: all var(--transition-base);
}

.value-card .value-icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold-400);
  stroke: var(--gold-400);
  transition: all var(--transition-base);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(226, 160, 78, 0.25), rgba(226, 160, 78, 0.1));
  box-shadow: var(--shadow-gold);
}

.value-card:hover .value-icon svg {
  color: var(--gold-300);
  stroke: var(--gold-300);
}

.value-card .value-title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.value-card .value-description {
  font-size: var(--text-sm);
  color: var(--gray-400);
  line-height: 1.7;
}

/* ===================================================
   GRID LAYOUTS
   =================================================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

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

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

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  position: relative;
  padding: var(--space-24) 0;
  overflow: hidden;
}

.cta-box {
  position: relative;
  background: linear-gradient(135deg, rgba(226, 160, 78, 0.1), rgba(226, 160, 78, 0.03));
  border: 1px solid rgba(226, 160, 78, 0.2);
  border-radius: var(--radius-2xl);
  padding: var(--space-20) var(--space-16);
  text-align: center;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(226, 160, 78, 0.06), transparent 70%);
  animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-box h2 {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-4);
  position: relative;
}

.cta-box p {
  font-size: var(--text-lg);
  color: var(--gray-400);
  margin-bottom: var(--space-10);
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  position: relative;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  position: relative;
  padding-top: var(--space-20);
  border-top: 1px solid var(--border-light);
  background: var(--navy-950);
}

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

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.footer-brand .footer-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--navy-950);
}

.footer-brand .footer-logo .logo-name {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  color: var(--gray-400);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: rgba(226, 160, 78, 0.15);
  border-color: var(--gold-400);
  color: var(--gold-400);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-6);
}

.footer-column ul li {
  margin-bottom: var(--space-1);
}

.footer-column ul li a {
  font-size: var(--text-sm);
  color: var(--gray-500);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-column ul li a:hover {
  color: var(--gold-400);
  transform: translateX(4px);
}

.footer-newsletter p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-4);
}

.footer-newsletter .newsletter-form {
  display: flex;
  gap: var(--space-2);
}

.footer-newsletter .newsletter-form input {
  flex: 1;
  padding: var(--space-3) var(--space-5);
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: var(--text-sm);
  transition: border-color var(--transition-fast);
}

.footer-newsletter .newsletter-form input::placeholder {
  color: var(--gray-600);
}

.footer-newsletter .newsletter-form input:focus {
  border-color: var(--gold-400);
}

.footer-newsletter .newsletter-form button {
  padding: var(--space-3) var(--space-6);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.footer-newsletter .newsletter-form button:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--gray-600);
}

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

.footer-values span {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-400);
  opacity: 0.6;
}

/* ===================================================
   FORM STYLES
   =================================================== */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: var(--space-2);
}

.form-input {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
}

.form-input::placeholder {
  color: var(--gray-600);
}

.form-input:focus {
  border-color: var(--gold-400);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(226, 160, 78, 0.1);
}

.form-select {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239fb3c8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-select:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(226, 160, 78, 0.1);
}

.form-select option {
  background: var(--navy-900);
  color: var(--white);
}

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

/* ===================================================
   FEATURE LIST
   =================================================== */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--bg-glass-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.feature-item:hover {
  background: var(--bg-glass);
  border-color: var(--border-gold);
}

.feature-item .feature-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, rgba(226, 160, 78, 0.2), rgba(226, 160, 78, 0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: var(--text-xs);
  margin-top: 2px;
}

.feature-item span {
  font-size: var(--text-sm);
  color: var(--gray-300);
  line-height: 1.5;
}

/* ===================================================
   TIMELINE
   =================================================== */
.timeline {
  position: relative;
  padding-left: var(--space-12);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-400), rgba(226, 160, 78, 0.1));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-10);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-12) - 1px);
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--gold-400);
  border: 3px solid var(--navy-950);
  border-radius: 50%;
  z-index: 1;
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: var(--space-2);
}

.timeline-text {
  font-size: var(--text-base);
  color: var(--gray-400);
  line-height: 1.7;
}

/* ===================================================
   SCROLL ANIMATIONS
   =================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 400ms; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 500ms; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 600ms; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 700ms; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 800ms; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(10) { transition-delay: 900ms; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(11) { transition-delay: 1000ms; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(12) { transition-delay: 1100ms; opacity: 1; transform: none; }

/* ===================================================
   PROPERTY PAGE SPECIFIC
   =================================================== */
.property-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.property-gallery {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.property-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 18, 32, 0.4), transparent);
}

.property-info h2 {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.property-info .property-location {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  color: var(--gold-400);
  margin-bottom: var(--space-4);
}

.property-info .property-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--gray-400);
  margin-bottom: var(--space-6);
  padding-left: var(--space-5);
  border-left: 3px solid var(--gold-400);
}

.property-info .property-description {
  font-size: var(--text-base);
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

/* ===================================================
   EXPECT LIST (Services Page)
   =================================================== */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.expect-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.expect-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.expect-item .expect-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(226, 160, 78, 0.15), rgba(226, 160, 78, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
}

.expect-item span {
  font-size: var(--text-sm);
  color: var(--gray-300);
  font-weight: 500;
}

/* ===================================================
   CONTACT PAGE SPECIFIC
   =================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-12);
}

.contact-info-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item .info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(226, 160, 78, 0.15), rgba(226, 160, 78, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
}

.contact-info-item .info-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  margin-bottom: var(--space-1);
}

.contact-info-item .info-value {
  font-size: var(--text-base);
  color: var(--white);
}

.contact-info-item .info-value a {
  color: var(--gold-400);
  transition: color var(--transition-fast);
}

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

.contact-form-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
}

.contact-form-card h3 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.contact-form-card p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-8);
}

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

/* ===================================================
   ABOUT PAGE — VISION/MISSION
   =================================================== */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.vm-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.vm-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
}

.vm-card .vm-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-400);
  margin-bottom: var(--space-4);
}

.vm-card h3 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-4);
  display: none;
}

.vm-card p {
  font-size: var(--text-base);
  color: var(--gray-400);
  line-height: 1.8;
}

/* ===================================================
   FOUNDER SECTION
   =================================================== */
.founder-section {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-16);
  align-items: start;
}

.founder-image-wrapper {
  position: relative;
}

.founder-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(226, 160, 78, 0.2);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.founder-image-wrapper .founder-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  border-radius: var(--radius-lg);
  opacity: 0.2;
  z-index: -1;
}

.founder-content h2 {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-6);
}

.founder-content p {
  font-size: var(--text-base);
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

/* ===================================================
   DECORATIVE ELEMENTS
   =================================================== */
.bg-gradient-radial {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(226, 160, 78, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bg-lines::before,
.bg-lines::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
}

.bg-lines::before {
  left: 25%;
}

.bg-lines::after {
  left: 75%;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: var(--text-5xl);
  }

  .section-title {
    font-size: var(--text-4xl);
  }

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

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

  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .founder-section {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

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

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

  .site-logo-img,
  .nav-logo img {
    max-height: 52px !important;
  }

  .nav-logo .logo-name {
    font-size: 1.3rem !important;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0a1220 !important;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-5);
    z-index: 10000;
    padding: 80px 24px 40px;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-menu-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: var(--space-4) !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  .nav-menu-list li {
    width: 100% !important;
    text-align: center !important;
  }

  .nav-menu-list a, .nav-links a:not(.nav-cta) {
    font-size: 1.35rem !important;
    font-weight: 600 !important;
    color: var(--white) !important;
    padding: var(--space-3) var(--space-6) !important;
    display: inline-block !important;
  }

  .nav-menu-list a:hover, .nav-links a:hover:not(.nav-cta) {
    color: var(--gold-400) !important;
  }

  .nav-cta {
    margin-top: var(--space-4) !important;
    font-size: 1.1rem !important;
    padding: var(--space-4) var(--space-8) !important;
    width: auto !important;
  }

  .nav-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: var(--text-4xl);
  }

  .hero-slogan {
    font-size: var(--text-xs);
  }

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

  .section-title {
    font-size: var(--text-3xl);
  }

  .page-hero h1 {
    font-size: var(--text-4xl);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .grid-split {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-box {
    padding: var(--space-12) var(--space-6);
  }

  .cta-box h2 {
    font-size: var(--text-3xl);
  }
}

/* ===================================================
   MOBILE EXTREME / SMARTPHONE BREAKPOINT (< 480px)
   =================================================== */
@media (max-width: 480px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .container {
    padding: 0 var(--space-4) !important;
  }

  .section {
    padding: var(--space-12) 0 !important;
  }

  .section-title {
    font-size: var(--text-2xl) !important;
  }

  .hero h1 {
    font-size: var(--text-3xl) !important;
  }

  .hero-slogan {
    font-size: var(--text-xs) !important;
  }

  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: var(--space-4) !important;
    width: 100% !important;
  }

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

  .btn-lg {
    width: 100% !important;
    justify-content: center !important;
    padding: var(--space-4) var(--space-6) !important;
  }

  .cta-buttons {
    flex-direction: column !important;
    width: 100% !important;
  }

  .card-body, .value-card, .testimonial-card, .contact-info-card, .contact-form-card {
    padding: var(--space-6) var(--space-5) !important;
  }

  .nav-logo .logo-name {
    font-size: var(--text-base) !important;
  }
}

/* ===================================================
   AVAILABLE UNITS — LISTING CARDS
   =================================================== */

/* --- Filter Toolbar --- */
.units-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}

.units-toolbar .toolbar-left {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.units-toolbar .toolbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.filter-btn {
  padding: var(--space-2) var(--space-5);
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--gray-400);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.filter-btn.active {
  background: rgba(226, 160, 78, 0.15);
  border-color: var(--gold-400);
  color: var(--gold-400);
  font-weight: 600;
}

.units-count {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.units-count strong {
  color: var(--gold-400);
}

/* --- Unit Card --- */
.unit-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.unit-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 40px rgba(226, 160, 78, 0.15);
}

/* Card Image Area */
.unit-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.unit-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.unit-card:hover .unit-card-image img {
  transform: scale(1.06);
}

.unit-card-image .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 18, 32, 0.7) 0%, transparent 50%);
  pointer-events: none;
}

/* Status Badge */
.unit-status {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.unit-status.available {
  background: rgba(45, 212, 191, 0.9);
  color: var(--navy-950);
}

.unit-status.leased {
  background: rgba(130, 64, 32, 0.9);
  color: var(--gold-100);
}

.unit-status.coming-soon {
  background: rgba(226, 160, 78, 0.9);
  color: var(--navy-950);
}

.unit-status.pending {
  background: rgba(159, 179, 200, 0.8);
  color: var(--navy-950);
}

/* Favorite / Quick Action */
.unit-quick-actions {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  display: flex;
  gap: var(--space-2);
  z-index: 2;
}

.unit-quick-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(10, 18, 32, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.unit-quick-btn:hover {
  background: rgba(226, 160, 78, 0.3);
  border-color: var(--gold-400);
}

.unit-quick-btn.favorited {
  color: #ef4444;
}

/* Image Counter */
.unit-image-count {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background: rgba(10, 18, 32, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: var(--gray-300);
  z-index: 2;
}

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

/* Community Tag */
.unit-community-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-400);
  margin-bottom: var(--space-3);
}

.unit-community-tag .tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
}

/* Unit Name & Address */
.unit-card-body .unit-name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-1);
  line-height: 1.3;
}

.unit-card-body .unit-address {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Specs Row */
.unit-specs {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: var(--space-4);
}

.unit-spec {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.unit-spec .spec-icon {
  font-size: var(--text-base);
  opacity: 0.7;
}

.unit-spec .spec-value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
}

.unit-spec .spec-label {
  font-size: 11px;
  color: var(--gray-500);
  margin-left: 2px;
}

/* Features Tags */
.unit-features-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.unit-feature-tag {
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 11px;
  color: var(--gray-400);
  white-space: nowrap;
}

/* Price Row */
.unit-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-4);
}

.unit-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
}

.unit-price .price-amount {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold-400);
}

.unit-price .price-period {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.unit-price .price-note {
  font-size: 11px;
  color: var(--gray-600);
  display: block;
}

.unit-card-actions {
  display: flex;
  gap: var(--space-3);
}

.unit-card-actions .btn {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
}

/* --- Units Grid --- */
.units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

/* --- Empty State --- */
.units-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-20) var(--space-8);
  background: var(--bg-glass);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-xl);
}

.units-empty-state .empty-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
  opacity: 0.5;
}

.units-empty-state h3 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--white);
  margin-bottom: var(--space-2);
}

.units-empty-state p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  max-width: 400px;
  margin: 0 auto;
}

/* --- Section Header with Count --- */
.section-header-with-count {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-10);
}

.section-header-with-count .count-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent-teal);
  white-space: nowrap;
}

.section-header-with-count .count-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-teal);
  animation: pulse 2s ease-in-out infinite;
}

/* --- View Toggle --- */
.view-toggle {
  display: flex;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.view-toggle-btn {
  padding: var(--space-2) var(--space-4);
  background: transparent;
  border: none;
  color: var(--gray-500);
  font-size: var(--text-base);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.view-toggle-btn:hover {
  color: var(--gold-400);
}

.view-toggle-btn.active {
  background: rgba(226, 160, 78, 0.15);
  color: var(--gold-400);
}

/* --- List View variant --- */
.units-grid.list-view {
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.units-grid.list-view .unit-card {
  display: grid;
  grid-template-columns: 320px 1fr;
}

.units-grid.list-view .unit-card-image {
  height: 100%;
  min-height: 220px;
}

.units-grid.list-view .unit-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- Responsive for Units --- */
@media (max-width: 1024px) {
  .units-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .units-grid.list-view .unit-card {
    grid-template-columns: 280px 1fr;
  }
}

@media (max-width: 768px) {
  .units-grid {
    grid-template-columns: 1fr;
  }

  .units-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .units-toolbar .toolbar-left {
    flex-wrap: wrap;
  }

  .units-grid.list-view .unit-card {
    grid-template-columns: 1fr;
  }

  .units-grid.list-view .unit-card-image {
    height: 200px;
  }

  .section-header-with-count {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .unit-specs {
    flex-wrap: wrap;
    gap: var(--space-3);
  }
}

/* ===================================================
   PORTFOLIO CARDS — Simple Unit Gallery
   =================================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.portfolio-card {
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  text-decoration: none;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 40px rgba(226, 160, 78, 0.12);
}

.portfolio-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.08);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 18, 32, 0.85) 0%, rgba(10, 18, 32, 0) 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--space-6);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-card-cta {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.5px;
  padding: var(--space-2) var(--space-5);
  background: rgba(226, 160, 78, 0.12);
  border: 1px solid rgba(226, 160, 78, 0.3);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  transform: translateY(10px);
  transition: transform var(--transition-base);
}

.portfolio-card:hover .portfolio-card-cta {
  transform: translateY(0);
}

.portfolio-card-info {
  padding: var(--space-5) var(--space-6);
}

.portfolio-card-info h3 {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.portfolio-card:hover .portfolio-card-info h3 {
  color: var(--gold-400);
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

/* ===================================================
   UNIT DETAIL PAGE
   =================================================== */

/* Layout */
.unit-detail-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-12);
  padding: var(--space-12) 0;
}

/* Main Content */
.unit-main {
  min-width: 0;
}

/* Gallery */
.unit-gallery {
  margin-bottom: var(--space-10);
}

.gallery-main {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-4);
  position: relative;
  background: var(--bg-glass);
}

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

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.gallery-thumb {
  height: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.gallery-thumb:hover img {
  opacity: 1;
}

.gallery-thumb.active {
  border-color: var(--gold-400);
}

.gallery-thumb.active img {
  opacity: 1;
}

/* Header Info */
.unit-header-info {
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--border-light);
}

.unit-header-info h1 {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  color: var(--white);
  margin-bottom: var(--space-2);
}

.unit-header-info .unit-location {
  font-size: var(--text-lg);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

/* Specs Row Large */
.unit-specs-large {
  display: flex;
  gap: var(--space-8);
  background: var(--bg-glass);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.unit-specs-large .spec-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.unit-specs-large .spec-value {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--gold-400);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.unit-specs-large .spec-label {
  font-size: var(--text-sm);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Description Section */
.unit-section {
  margin-bottom: var(--space-12);
}

.unit-section h2 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: var(--space-6);
}

.unit-description {
  font-size: var(--text-base);
  color: var(--gray-300);
  line-height: 1.8;
}

.unit-description p {
  margin-bottom: var(--space-4);
}

/* Sidebar */
.unit-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-6));
  align-self: start;
}

.unit-contact-card {
  background: linear-gradient(180deg, var(--bg-glass) 0%, rgba(10, 18, 32, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-gold);
}

.unit-contact-card h3 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--white);
  margin-bottom: var(--space-2);
  text-align: center;
}

.unit-contact-card p {
  font-size: var(--text-sm);
  color: var(--gray-400);
  text-align: center;
  margin-bottom: var(--space-6);
}

/* Responsive */
@media (max-width: 1024px) {
  .unit-detail-container {
    grid-template-columns: 1fr;
  }

  .unit-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .gallery-main {
    height: 300px;
  }

  .gallery-thumb {
    height: 70px;
  }

  .unit-header-info h1 {
    font-size: var(--text-3xl);
  }

  .unit-specs-large {
    flex-wrap: wrap;
  }
}


/* ===================================================
   UNIT PAGE — 360° VIRTUAL TOUR
   =================================================== */

/* --- Tour Section Box --- */
.unit-tour-section {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(226, 160, 78, 0.06), rgba(10, 18, 32, 0.4));
}

.tour-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--border-gold);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.tour-title-group {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.tour-icon {
  font-size: var(--text-2xl);
  line-height: 1;
}

.tour-header h2 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.tour-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-5);
  flex-shrink: 0;
}

/* --- Embed Wrapper (16:9 ratio) --- */
.tour-embed-wrapper {
  padding: var(--space-6) var(--space-8) var(--space-8);
}

.tour-embed-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 */
  background: var(--navy-950);
}

.tour-embed-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.tour-embed-badge {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background: rgba(10, 18, 32, 0.75);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

/* ===================================================
   VIRTUAL TOUR LIGHTBOX
   =================================================== */
.tour-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Backdrop */
.tour-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}

/* Main Content Box */
.tour-lightbox-content {
  position: relative;
  z-index: 1;
  width: calc(100vw - 2rem);
  max-width: 1400px;
  height: calc(100vh - 4rem);
  max-height: 900px;
  background: var(--navy-900);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(226, 160, 78, 0.15);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tour-lightbox.active .tour-lightbox-content {
  transform: scale(1) translateY(0);
}

/* Lightbox Header Bar */
.tour-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--border-gold);
  background: rgba(226, 160, 78, 0.05);
  flex-shrink: 0;
  gap: var(--space-4);
}

.tour-lightbox-title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gold-400);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tour-lightbox-title svg {
  color: var(--gold-400);
  flex-shrink: 0;
}

/* Close Button */
.tour-lightbox-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--gray-400);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.tour-lightbox-close:hover {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
  transform: scale(1.1);
}

/* Iframe Area */
.tour-lightbox-iframe-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
}

.tour-lightbox-iframe-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tour-lightbox-content {
    width: 100vw;
    height: 100vh;
    max-height: none;
    border-radius: 0;
    border: none;
  }

  .tour-embed-wrapper {
    padding: var(--space-4);
  }

  .tour-header {
    padding: var(--space-4) var(--space-5);
  }

  .tour-header h2 {
    font-size: var(--text-xl);
  }

  .tour-lightbox-title {
    font-size: var(--text-base);
  }
}

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

.testimonial-card {
  position: relative;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-base);
  backdrop-filter: blur(12px);
}

.testimonial-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), 0 0 25px rgba(226, 160, 78, 0.1);
}

.testimonial-badge {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  background: linear-gradient(135deg, rgba(226, 160, 78, 0.2), rgba(226, 160, 78, 0.08));
  border: 1px solid var(--border-gold);
  color: var(--gold-400);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold-400);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--gray-300);
  font-style: italic;
  margin-bottom: var(--space-6);
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-light);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-400);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-lg);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--white);
}

.author-role {
  font-size: var(--text-xs);
  color: var(--gray-400);
  margin-top: 2px;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* ===================================================
   FAQ SECTION & ACCORDION
   =================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  backdrop-filter: blur(12px);
}

.faq-item:hover {
  border-color: rgba(226, 160, 78, 0.3);
}

.faq-item.active {
  border-color: var(--border-gold);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4), 0 0 20px rgba(226, 160, 78, 0.08);
}

.faq-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-8);
  background: transparent;
  border: none;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: background var(--transition-fast);
}

.faq-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-title-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.faq-cat-badge {
  background: rgba(226, 160, 78, 0.12);
  border: 1px solid rgba(226, 160, 78, 0.3);
  color: var(--gold-400);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-question-text {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.faq-toggle-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq-item.active .faq-toggle-icon {
  background: var(--gold-400);
  color: var(--navy-950);
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content {
  max-height: 400px;
}

.faq-content-inner {
  padding: 0 var(--space-8) var(--space-6) var(--space-8);
  font-size: var(--text-base);
  color: var(--gray-300);
  line-height: 1.8;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: var(--space-2);
  padding-top: var(--space-5);
}

@media (max-width: 640px) {
  .faq-header {
    padding: var(--space-5) var(--space-5);
  }
  .faq-question-text {
    font-size: var(--text-base);
  }
  .faq-content-inner {
    padding: 0 var(--space-5) var(--space-5) var(--space-5);
  }
}


