/* ==========================================================================
   SV PROPERTY & TOWNSHIP - LUXURY REAL ESTATE DESIGN SYSTEM
   Optimized for High Conversion Meta Ads & Ultra-Fast Performance
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-main: #080c14;
  --bg-surface: #0f172a;
  --bg-surface-elevated: #15203b;
  --bg-card: rgba(17, 26, 46, 0.88);
  --bg-glass: rgba(15, 23, 42, 0.85);
  --bg-glass-light: rgba(255, 255, 255, 0.05);
  
  /* Brand Accents */
  --gold-primary: #d4af37;
  --gold-light: #f5d77f;
  --gold-dark: #aa861d;
  --gold-gradient: linear-gradient(135deg, #f5d77f 0%, #d4af37 50%, #aa861d 100%);
  --gold-glow: rgba(212, 175, 55, 0.25);
  
  --emerald-accent: #10b981;
  --emerald-dark: #059669;
  --emerald-glow: rgba(16, 185, 129, 0.25);
  
  --blue-accent: #3b82f6;
  --whatsapp-color: #25D366;
  --whatsapp-glow: rgba(37, 211, 102, 0.3);
  --phone-color: #0284c7;

  /* Text Colors */
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-gold: #f5d77f;
  
  /* Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-hover: rgba(212, 175, 55, 0.65);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Spacing & Transitions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Gradient Text */
.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-emerald {
  color: var(--emerald-accent);
}

/* Section Common Layout */
.section-padding {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ==========================================================================
   PAGE BANNER (FOR SUBPAGES: ABOUT, PROPERTIES, SERVICES, CONTACT)
   ========================================================================== */
.page-banner {
  padding-top: 150px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, var(--bg-main) 100%),
              radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.breadcrumb-nav a {
  color: var(--gold-light);
}

.breadcrumb-nav span {
  color: var(--text-dim);
}

/* ==========================================================================
   NAVIGATION / HEADER & MOBILE DRAWER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(8, 12, 20, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(8, 12, 20, 0.98);
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(212, 175, 55, 0.25);
}

.site-header.menu-open {
  z-index: 9999999 !important;
  background: #080c14 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo img {
  height: 54px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(1.25) contrast(1.15) drop-shadow(0 0 10px rgba(212, 175, 55, 0.45));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.04);
  filter: brightness(1.4) contrast(1.2) drop-shadow(0 0 16px rgba(212, 175, 55, 0.7));
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  background: linear-gradient(135deg, #ffffff 30%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.brand-tagline {
  font-size: 0.74rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.nav-link .nav-link-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-link .nav-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-link .nav-icon-box i {
  font-size: 0.9rem;
  color: var(--gold-light);
}

.nav-link .nav-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-link .nav-subtitle {
  display: none;
}

.nav-link .nav-arrow {
  display: none;
}

.drawer-extra-content {
  display: none;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.btn-header-call:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 15px var(--whatsapp-glow);
  transition: var(--transition-fast);
}

.btn-header-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--whatsapp-glow);
}

.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--gold-light);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-primary);
}

/* ==========================================================================
   SLIDER REVOLUTION - FULL LUXURY REAL ESTATE HERO
   ========================================================================== */
/* ==========================================================================
   SLIDER REVOLUTION - FULL LUXURY REAL ESTATE HERO
   ========================================================================== */
.hero-rev-slider-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  min-height: 600px;
  max-height: 850px;
  margin-top: 80px;
  overflow: hidden;
  background: #080c14;
  user-select: none;
}

.hero-rev-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.rev-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease;
  z-index: 1;
}

.rev-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.rev-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 7s linear;
}

.rev-slide.active .rev-bg-image {
  transform: scale(1);
}

.rev-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.5) 0%, rgba(8, 12, 20, 0.72) 45%, rgba(8, 12, 20, 0.95) 100%),
              radial-gradient(circle at 60% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  z-index: 2;
}

.rev-content-layer {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
}

.rev-content-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 36px;
  align-items: center;
  width: 100%;
}

.rev-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.2);
}

.rev-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.rev-desc {
  font-size: 1.05rem;
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 580px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
}

.rev-metrics-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.rev-metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 12, 20, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.rev-metric-pill i {
  color: var(--gold-light);
}

.rev-metric-pill strong {
  color: var(--gold-light);
}

.rev-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Slider Controls: Arrows & Bullets & Progress */
.rev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(8, 12, 20, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.rev-arrow:hover {
  background: var(--gold-gradient);
  color: #080c14;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px var(--gold-glow);
}

.rev-arrow-prev {
  left: 20px;
}

.rev-arrow-next {
  right: 20px;
}

.rev-bullets {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rev-bullet {
  width: 32px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.rev-bullet.active {
  width: 50px;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
}

.rev-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gold-gradient);
  z-index: 20;
  width: 0%;
  box-shadow: 0 0 10px var(--gold-light);
}

/* Floating Live Radar Badge on Slide */
.rev-floating-tag {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

@media (max-width: 1024px) {
  .rev-content-grid {
    grid-template-columns: 1fr;
  }
  .rev-form-col {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-rev-slider-container {
    height: calc(100svh - 70px);
    min-height: 520px;
    max-height: 720px;
    margin-top: 70px;
    padding: 0;
  }
  .rev-content-layer {
    padding: 16px 16px 36px;
    align-items: center;
    justify-content: center;
  }
  .rev-content-grid {
    gap: 0;
  }
  .rev-badge {
    font-size: 0.72rem;
    padding: 4px 12px;
    margin-bottom: 10px;
    gap: 6px;
  }
  .rev-title {
    font-size: 1.65rem;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
  }
  .rev-desc {
    font-size: 0.86rem;
    line-height: 1.45;
    margin-bottom: 14px;
    color: #cbd5e1;
  }
  .rev-metrics-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }
  .rev-metric-pill {
    padding: 6px 10px;
    font-size: 0.75rem;
    justify-content: center;
    background: rgba(8, 12, 20, 0.82);
    border: 1px solid rgba(212, 175, 55, 0.3);
  }
  .rev-arrow {
    display: none;
  }
  .rev-bullets {
    bottom: 12px;
    gap: 6px;
  }
  .rev-bullet {
    width: 24px;
    height: 4px;
  }
  .rev-bullet.active {
    width: 36px;
  }
  .rev-floating-tag {
    display: none;
  }
  .rev-cta-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }
  .rev-cta-group .btn-primary {
    grid-column: span 2;
    padding: 12px 16px;
    font-size: 0.92rem;
    text-align: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  }
  .rev-cta-group .btn-whatsapp,
  .rev-cta-group .btn-outline {
    padding: 10px 12px;
    font-size: 0.84rem;
    text-align: center;
    justify-content: center;
  }
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.trust-avatars {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-media-frame {
    height: 220px;
  }
  .hero-float-badge {
    padding: 6px 11px;
    gap: 6px;
  }
  .badge-icon-gold {
    width: 22px;
    height: 22px;
    font-size: 0.72rem;
  }
  .badge-text-main {
    font-size: 0.72rem;
  }
  .badge-text-sub {
    font-size: 0.62rem;
  }
  .hero-float-badge.pos-top-left {
    top: 10px;
    left: 10px;
  }
  .hero-float-badge.pos-top-right {
    top: 10px;
    right: 10px;
  }
  .hero-float-badge.pos-bottom-left {
    bottom: 10px;
    left: 10px;
  }
  .hero-float-badge.pos-bottom-right {
    bottom: 10px;
    right: 10px;
  }
  .hero-showcase-ticker {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

.trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-surface);
  margin-left: -10px;
  background-color: var(--gold-dark);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.trust-text strong {
  color: #fff;
}

.trust-stars {
  color: #fbbf24;
  font-size: 0.8rem;
  margin-right: 4px;
}

/* ==========================================================================
   LEAD CAPTURE FORM CARDS
   ========================================================================== */
.lead-form-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(212, 175, 55, 0.1);
  position: relative;
  z-index: 10;
}

.lead-form-header {
  text-align: center;
  margin-bottom: 22px;
}

.lead-form-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--emerald-accent);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.lead-form-title {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.lead-form-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 14px;
  color: var(--text-dim);
  font-size: 0.95rem;
  pointer-events: none;
  transition: var(--transition-fast);
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 12px 14px 12px 42px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition-fast);
}

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

.form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-control:focus + i,
.input-with-icon:focus-within i {
  color: var(--gold-light);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

select.form-control option {
  background-color: var(--bg-surface-elevated);
  color: #fff;
}

textarea.form-control {
  padding: 12px 14px 12px 42px;
  resize: vertical;
  min-height: 90px;
}

.form-btn-submit {
  width: 100%;
  background: var(--gold-gradient);
  color: #080c14;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 14px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-normal);
  margin-top: 8px;
}

.form-btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.form-btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================================================
   STATS TICKER BAR
   ========================================================================== */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 30px 0;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  text-align: center;
  padding: 10px 15px;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-subtle);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   FEATURED PROJECTS SECTION & CAROUSEL CARDS
   ========================================================================== */
.projects-section {
  background: var(--bg-main);
}

.filter-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(212, 175, 55, 0.3);
}

.filter-btn.active {
  background: var(--gold-gradient);
  color: #080c14;
  font-weight: 700;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

/* Individual Luxury Property Card */
.luxury-prop-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 480px 1fr;
  transition: var(--transition-normal);
  position: relative;
}

.luxury-prop-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.12);
}

/* Property Media & Carousel */
.prop-media-wrapper {
  position: relative;
  background: #000;
  min-height: 360px;
  overflow: hidden;
}

.custom-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.carousel-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

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

.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

/* Media Badges */
.media-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.badge-featured {
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-zero-brokerage {
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
}

.media-badge-rera {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(8px);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.4);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Carousel Controls */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: var(--transition-fast);
}

.carousel-nav-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-50%) scale(1.08);
}

.carousel-nav-btn.prev {
  left: 10px;
}

.carousel-nav-btn.next {
  right: 10px;
}

.carousel-pill-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 15;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.carousel-thumbs {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 15;
  display: flex;
  gap: 6px;
  max-width: 70%;
  overflow-x: auto;
  scrollbar-width: none;
}

.carousel-thumbs::-webkit-scrollbar {
  display: none;
}

.thumb-btn {
  width: 44px;
  height: 30px;
  border-radius: 6px;
  border: 2px solid transparent;
  overflow: hidden;
  padding: 0;
  background: none;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.thumb-btn.active, .thumb-btn:hover {
  opacity: 1;
  border-color: var(--gold-primary);
  transform: scale(1.05);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Property Content & Details */
.prop-content {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.prop-header-info {
  margin-bottom: 16px;
}

.prop-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 6px;
}

.prop-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.prop-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Price Box */
.prop-price-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  margin-bottom: 18px;
}

.prop-price-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.prop-price-value {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gold-light);
  white-space: nowrap;
}

.prop-price-note {
  font-size: 0.82rem;
  color: var(--emerald-accent);
  font-weight: 600;
  margin-left: auto;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Specs Grid */
.prop-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.spec-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  padding: 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.spec-detail {
  display: flex;
  flex-direction: column;
}

.spec-title {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 600;
}

.spec-val {
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

/* Property Action Buttons */
.prop-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  align-items: stretch;
}

.btn-prop-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  padding: 11px 12px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.btn-prop-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--whatsapp-glow);
}

.btn-prop-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 11px 12px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.btn-prop-call:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.btn-prop-inquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--gold-gradient);
  color: #080c14;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.btn-prop-inquire:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 600px) {
  .prop-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .btn-prop-inquire {
    grid-column: span 2;
    order: -1;
    padding: 12px 16px;
    font-size: 0.94rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
  }

  .btn-prop-wa,
  .btn-prop-call {
    padding: 10px 14px;
    font-size: 0.88rem;
  }
  
  .prop-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   LOCATION ADVANTAGE & CONNECTIVITY HUB
   ========================================================================== */
.location-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-fast);
}

.location-card:hover {
  border-color: var(--border-gold);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

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

.location-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.location-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.location-time-badge {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--emerald-accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.location-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.location-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   AMENITIES GRID
   ========================================================================== */
.amenities-section {
  background: var(--bg-main);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
}

.amenity-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

.amenity-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  transition: var(--transition-fast);
}

.amenity-card:hover .amenity-icon-box {
  background: var(--gold-gradient);
  color: #080c14;
  transform: scale(1.1);
}

.amenity-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.amenity-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   INTERACTIVE PLOT COST & ROI CALCULATOR
   ========================================================================== */
.calculator-section {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.calc-container {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.calc-control-group {
  margin-bottom: 24px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calc-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.calc-val-pill {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-light);
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-result-box {
  background: rgba(8, 12, 20, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
}

.calc-result-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.calc-result-price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 14px;
}

.calc-roi-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.calc-roi-label {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

.calc-roi-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--emerald-accent);
}

/* ==========================================================================
   ABOUT / STORY / STATS / TIMELINE
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about-badge-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.about-badge-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-badge-item i {
  font-size: 1.4rem;
  color: var(--gold-light);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.vision-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(212, 175, 55, 0.12);
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card:hover .service-icon-box {
  background: var(--gold-gradient);
  color: #080c14;
  transform: scale(1.08);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ==========================================================================
   CONTACT SECTION & GRID
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition-fast);
}

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

.contact-icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ==========================================================================
   WHY CHOOSE SV TOWNSHIP TRUST PILLARS
   ========================================================================== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: var(--transition-normal);
}

.why-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #080c14;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.author-role {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--gold-gradient);
  color: #080c14;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */
.cta-banner-section {
  padding: 70px 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(15, 23, 42, 0.9) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.cta-banner-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.cta-banner-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #05080e;
  padding: 70px 0 30px;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--gold-gradient);
  color: #080c14;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact-item i {
  color: var(--gold-light);
  margin-top: 4px;
  font-size: 1rem;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-disclaimer {
  max-width: 600px;
  line-height: 1.4;
}

/* ==========================================================================
   FLOATING & STICKY ACTIONS
   ========================================================================== */
.floating-actions-desktop {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
}

.float-wa {
  background: #25D366;
  box-shadow: 0 4px 20px var(--whatsapp-glow);
  animation: pulse-wa 2.5s infinite;
}

.float-call {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.4);
}

.float-btn:hover {
  transform: scale(1.1) translateY(-3px);
}

/* Mobile Sticky Bottom Action Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 12, 20, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  padding: 10px 14px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
}

.mobile-sticky-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 8px;
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 8px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

.mobile-btn-call {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #fff;
}

.mobile-btn-call i,
.drawer-btn-call i,
.btn-header-call i,
.float-call i {
  display: inline-block !important;
  transform: none !important;
  font-style: normal !important;
  vertical-align: middle;
}

.mobile-btn-wa {
  background: #25D366;
  color: #fff;
}

.mobile-btn-inquire {
  background: var(--gold-gradient);
  color: #080c14;
  font-weight: 800;
}

/* ==========================================================================
   MODAL POPUPS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 35px 30px;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(212, 175, 55, 0.15);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold-light);
}

.success-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid var(--emerald-accent);
  color: var(--emerald-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  animation: scale-in 0.5s ease;
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-border {
  0%, 100% { border-color: rgba(239, 68, 68, 0.35); }
  50% { border-color: rgba(239, 68, 68, 0.85); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes scale-in {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   RESPONSIVE BREAKPOINTS & MOBILE DRAWER MENU
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .lead-form-card {
    max-width: 540px;
    margin: 0 auto;
  }
  
  .luxury-prop-card {
    grid-template-columns: 1fr;
  }
  
  .prop-media-wrapper {
    min-height: 280px;
  }
  
  .location-grid, .why-us-grid, .testimonials-grid, .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .calc-container, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  *, *::before, *::after {
    box-sizing: border-box !important;
  }
  
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }

  .container {
    padding: 0 12px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .site-header {
    height: 70px;
    z-index: 999999 !important;
  }
  
  .site-header.menu-open {
    z-index: 9999999 !important;
    background: #080c14 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .header-inner {
    height: 70px;
    position: relative;
    z-index: 10000000;
  }
  
  .header-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-size: 1.25rem;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.25s ease;
    z-index: 10000001;
  }

  .mobile-menu-toggle:active,
  .mobile-menu-toggle.active {
    background: var(--gold-gradient);
    color: #080c14;
    transform: scale(0.95);
  }

  /* FULL SCREEN / SOLID LUXURY MOBILE DRAWER - ZERO BLEED THROUGH */
  .nav-links {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    height: calc(100vh - 70px) !important;
    max-height: calc(100vh - 70px) !important;
    background: #080c14 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 16px 14px 100px !important;
    gap: 10px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-15px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease, visibility 0.28s ease;
    z-index: 9999999 !important;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.98);
  }

  .nav-links.mobile-active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: flex !important;
  }

  .nav-links li {
    width: 100% !important;
    list-style: none !important;
    opacity: 0;
    transform: translateX(18px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links.mobile-active li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.mobile-active li:nth-child(1) { transition-delay: 0.04s; }
  .nav-links.mobile-active li:nth-child(2) { transition-delay: 0.08s; }
  .nav-links.mobile-active li:nth-child(3) { transition-delay: 0.12s; }
  .nav-links.mobile-active li:nth-child(4) { transition-delay: 0.16s; }
  .nav-links.mobile-active li:nth-child(5) { transition-delay: 0.20s; }
  .nav-links.mobile-active li:nth-child(6) { transition-delay: 0.24s; }
  .nav-links.mobile-active .drawer-extra-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.28s;
  }

  .nav-links .nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    padding: 12px 14px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(15, 23, 42, 0.7) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
  }

  .nav-links .nav-link .nav-link-left {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-links .nav-link .nav-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-light);
    font-size: 1rem;
    transition: all 0.2s ease;
  }

  .nav-links .nav-link .nav-text-box {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .nav-links .nav-link .nav-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
  }

  .nav-links .nav-link .nav-subtitle {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
  }

  .nav-links .nav-link .nav-arrow {
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 0.82rem;
  }

  .nav-links .nav-link:hover, 
  .nav-links .nav-link.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(15, 23, 42, 0.95) 100%) !important;
    border-color: var(--gold-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15) !important;
  }

  .drawer-extra-content {
    display: block !important;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .drawer-trust-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px dashed rgba(212, 175, 55, 0.35);
    border-radius: 10px;
    font-size: 0.76rem;
    color: var(--gold-light);
    margin-bottom: 12px;
    font-weight: 600;
  }

  .drawer-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
  }

  .drawer-btn-call, .drawer-btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 700;
  }

  .drawer-btn-call {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    color: #ffffff;
  }

  .drawer-btn-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  }

  .drawer-btn-sitevisit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background: var(--gold-gradient);
    color: #080c14;
    font-size: 0.9rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
  }

  .drawer-contact-info {
    margin-top: 10px;
    text-align: center;
    font-size: 0.74rem;
    color: var(--text-dim);
  }
  
  /* PROPERTY CARDS - 100% SCREEN-FIT & ZERO CLIPPING */
  .luxury-prop-card {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 24px 0 !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .prop-media-wrapper {
    min-height: 240px !important;
    height: 240px !important;
  }

  .custom-carousel {
    min-height: 240px !important;
    height: 240px !important;
  }

  .prop-content {
    padding: 16px 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .prop-title {
    font-size: 1.3rem !important;
    line-height: 1.25 !important;
    margin-bottom: 6px !important;
    word-break: break-word !important;
  }

  .prop-subtitle {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
    word-break: break-word !important;
  }

  .prop-price-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 4px 8px !important;
    padding: 8px 10px !important;
    margin-bottom: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .prop-price-value {
    font-size: 1.25rem !important;
    white-space: nowrap !important;
  }

  .prop-price-note {
    font-size: 0.74rem !important;
    white-space: nowrap !important;
  }

  .prop-specs-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    margin-bottom: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .spec-box {
    padding: 6px 8px !important;
    gap: 6px !important;
    min-width: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .spec-icon {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.72rem !important;
    border-radius: 6px !important;
    flex-shrink: 0 !important;
  }

  .spec-detail {
    min-width: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .spec-title {
    font-size: 0.62rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .spec-val {
    font-size: 0.75rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .prop-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    padding-top: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .btn-prop-inquire {
    grid-column: span 2 !important;
    order: -1 !important;
    padding: 11px 12px !important;
    font-size: 0.88rem !important;
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .btn-prop-wa, .btn-prop-call {
    padding: 9px 8px !important;
    font-size: 0.82rem !important;
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .stat-card:nth-child(2)::after {
    display: none;
  }
  
  .location-grid, .why-us-grid, .testimonials-grid, .amenities-grid, .services-grid, .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .floating-actions-desktop {
    display: none;
  }
  
  .mobile-sticky-bar {
    display: block;
    height: 56px;
    padding: 8px 10px;
    z-index: 99999;
  }

  .mobile-sticky-grid {
    grid-template-columns: 1fr 1fr 1.25fr;
    gap: 6px;
  }

  .mobile-sticky-btn {
    padding: 8px 6px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
  
  body {
    padding-bottom: 70px;
  }
}
