/* ==========================================================================
   ATS LIFESTYLE - ULTRA LUXURY STYLESHEET
   Signature Emerald Forest Green, Champagne Gold & Ivory Cream Theme
   ========================================================================== */

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

:root {
  /* Signature Brand Green (From ATS Lifestyle Logo) */
  --green-primary: #1b5e39;
  --green-dark: #134529;
  --green-deep: #0d2e1c;
  --green-light: #257b4c;
  --green-soft: rgba(27, 94, 57, 0.08);
  --green-subtle-border: rgba(27, 94, 57, 0.22);
  --green-bright-border: rgba(27, 94, 57, 0.5);
  
  /* Green Gradients */
  --green-gradient: linear-gradient(135deg, #1b5e39 0%, #134529 60%, #288150 100%);
  --green-gradient-hover: linear-gradient(135deg, #247547 0%, #1b5e39 50%, #0d2e1c 100%);
  --green-gradient-subtle: linear-gradient(135deg, rgba(27, 94, 57, 0.08) 0%, rgba(27, 94, 57, 0.02) 100%);

  /* Champagne Gold & Bronze Accents (From Logo Flourish) */
  --gold-primary: #c59b27;
  --gold-light: #dfba73;
  --gold-dark: #8b6508;
  --gold-gradient: linear-gradient(135deg, #dfba73 0%, #c59b27 50%, #8b6508 100%);
  --gold-border: rgba(197, 155, 39, 0.35);

  /* Ivory Cream & Alabaster Backgrounds */
  --bg-primary: #fcfbf8;
  --bg-secondary: #f4eee1;
  --bg-tertiary: #eae2d0;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.96);
  --bg-glass-light: rgba(255, 255, 255, 0.75);

  /* Borders & Shadows */
  --border-subtle: rgba(27, 94, 57, 0.18);
  --border-gold-subtle: rgba(197, 155, 39, 0.3);
  --border-gold-bright: rgba(197, 155, 39, 0.6);
  --shadow-sm: 0 4px 20px rgba(13, 46, 28, 0.06);
  --shadow-md: 0 10px 30px rgba(13, 46, 28, 0.09);
  --shadow-lg: 0 20px 50px rgba(13, 46, 28, 0.14);
  --shadow-green: 0 8px 30px rgba(27, 94, 57, 0.22);
  --shadow-gold: 0 8px 30px rgba(197, 155, 39, 0.25);

  /* Typography */
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-body-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Text Colors */
  --text-primary: #102619;
  --text-secondary: #33483b;
  --text-muted: #647a6d;
  --text-green: #1b5e39;
  --text-gold: #9e740d;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);

  /* Sizing */
  --nav-height: 84px;
  --container-max: 1360px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* ==========================================================================
   RESET & GLOBAL BASE
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: light;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
  margin: 0;
  padding: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(27, 94, 57, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(197, 155, 39, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(244, 238, 225, 0.7) 0%, transparent 100%);
  background-attachment: fixed;
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: #f4eee1;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #257b4c, #1b5e39, #c59b27);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--green-dark);
}

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

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   TYPOGRAPHY & ACCENTS
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.gold-text {
  background: var(--green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
}

.green-text {
  color: var(--green-primary);
  font-weight: 700;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--green-primary);
  background: rgba(27, 94, 57, 0.08);
  border: 1px solid var(--border-subtle);
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 10px rgba(27, 94, 57, 0.08);
}

.section-tag::before,
.section-tag::after {
  content: '✤';
  font-size: 0.75rem;
  color: var(--gold-primary);
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  margin-bottom: 1rem;
  font-weight: 700;
  color: #102619;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.7;
}

.divider-gold {
  height: 2px;
  width: 90px;
  background: linear-gradient(90deg, #1b5e39 0%, #c59b27 50%, #1b5e39 100%);
  margin: 1.2rem auto;
  border-radius: var(--radius-full);
  position: relative;
}

.divider-gold::after {
  content: '✤';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.85rem;
  color: var(--gold-primary);
  background: var(--bg-primary);
  padding: 0 6px;
}

.section-header.text-left .divider-gold {
  margin-left: 0;
}

/* ==========================================================================
   BUTTONS & LUXURY CTAS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: none;
  white-space: nowrap;
  z-index: 1;
}

.btn-primary {
  background: var(--green-gradient);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(27, 94, 57, 0.35);
  font-weight: 700;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: 0.6s;
  z-index: -1;
}

.btn-primary:hover {
  background: var(--green-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 94, 57, 0.45);
  color: #ffffff;
}

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

.btn-outline-gold {
  background: #ffffff;
  color: var(--green-primary);
  border: 1.5px solid var(--green-primary);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

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

.btn-glass {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  border: 1.5px solid var(--green-primary);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

.btn-glass:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-glass:hover i {
  color: #ffffff !important;
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */

.top-bar {
  background: linear-gradient(90deg, #f4eee1 0%, #eae2d0 50%, #f4eee1 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.45rem 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.top-bar-item i, .top-bar-item svg {
  color: var(--green-primary);
  font-size: 0.88rem;
}

.top-bar-item a {
  transition: color var(--transition-fast);
}

.top-bar-item a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1.5px solid rgba(27, 94, 57, 0.15);
  box-shadow: 0 4px 25px rgba(13, 46, 28, 0.07);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 8px 30px rgba(13, 46, 28, 0.12);
  border-bottom: 2px solid var(--green-primary);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: 1560px;
  width: 100%;
  padding: 0 clamp(1rem, 2vw, 2.5rem);
  margin: 0 auto;
  transition: height var(--transition-smooth);
}

.site-header.scrolled .header-container {
  height: 72px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: clamp(0.8rem, 1.5vw, 1.8rem);
}

.logo-graphic-img {
  height: 42px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: height var(--transition-smooth);
}

.site-header.scrolled .logo-graphic-img {
  height: 38px;
}

/* Navigation Menu */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 2.2rem);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #102619;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0.2rem;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

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

.nav-link:hover {
  color: var(--green-primary);
}

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

.nav-link.active {
  color: var(--green-primary);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: clamp(0.8rem, 1.5vw, 1.8rem);
}

.nav-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-primary);
  padding: 0.5rem 1.05rem;
  border: 1.5px solid var(--green-primary);
  border-radius: var(--radius-full);
  background: rgba(27, 94, 57, 0.06);
  white-space: nowrap;
  transition: var(--transition-fast);
}

.nav-call-btn i {
  color: var(--green-primary);
  font-size: 0.85rem;
  transition: transform var(--transition-fast);
}

.nav-call-btn:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 94, 57, 0.25);
}

.nav-call-btn:hover i {
  color: #ffffff;
  transform: scale(1.1);
}

.header-actions .btn-primary {
  padding: 0.52rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(27, 94, 57, 0.25);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1.5px solid var(--green-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 100%;
  height: 2.5px;
  background: var(--green-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Mobile Slide-Over Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 380px);
  height: 100vh;
  background: #ffffff;
  backdrop-filter: blur(25px);
  border-left: 2px solid var(--green-primary);
  z-index: 2000;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-smooth);
  box-shadow: -10px 0 40px rgba(13, 46, 28, 0.15);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 46, 28, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.drawer-logo-img {
  height: 40px;
  width: auto;
}

.drawer-close {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--green-primary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.drawer-link {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-primary);
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(27, 94, 57, 0.1);
}

.drawer-link:hover {
  color: var(--green-primary);
  padding-left: 0.5rem;
}

.drawer-footer {
  margin-top: 2rem;
}

/* ==========================================================================
   HERO SECTION - 100% FULL COVER CINEMATIC 1080P HD VIDEO
   ========================================================================== */

.hero-section {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 580px;
  max-height: 960px;
  overflow: hidden;
  background: #0d2e1c;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0;
}

.hero-video-full-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  overflow: hidden !important;
  z-index: 1;
  background: #0d2e1c;
}

.hero-full-video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.04) brightness(0.98);
}

.hero-video-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 46, 28, 0.08) 0%,
    transparent 30%,
    transparent 70%,
    rgba(13, 46, 28, 0.4) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Floating Luxury Controls */
.hero-floating-controls {
  position: absolute;
  bottom: 2.2rem;
  right: 2.2rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-video-btn {
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid var(--green-primary);
  color: var(--green-primary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(13, 46, 28, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-fast);
}

.hero-video-btn:hover {
  background: var(--green-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(27, 94, 57, 0.4);
}

.hero-video-btn.active {
  background: var(--green-primary);
  color: #ffffff;
}

/* Elegant Bottom Scroll Cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 2.2rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid var(--green-primary);
  color: var(--green-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 30px rgba(13, 46, 28, 0.25);
  backdrop-filter: blur(12px);
  transition: all var(--transition-fast);
}

.hero-scroll-cue:hover {
  background: var(--green-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-scroll-cue i {
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(4px); }
  60% { transform: translateY(2px); }
}

/* ==========================================================================
   PROMOTIONAL CAMPAIGN RIBBON
   ========================================================================== */

.promo-ribbon-section {
  background: linear-gradient(90deg, #134529 0%, #1b5e39 50%, #134529 100%);
  color: #ffffff;
  padding: 1.2rem 0;
  border-top: 1px solid var(--gold-primary);
  border-bottom: 1px solid var(--gold-primary);
}

.promo-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.promo-badge-tag {
  background: var(--gold-gradient);
  color: #102619;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.1em;
}

.promo-text {
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  letter-spacing: 0.03em;
}

/* ==========================================================================
   STATS & COUNTERS SECTION - ULTRA LUXURY METRICS
   ========================================================================== */

.stats-section {
  position: relative;
  z-index: 10;
  padding: 4.5rem 0 2.5rem 0;
  background: linear-gradient(180deg, #fcfbf8 0%, #f7f3ea 100%);
  border-bottom: 1px solid rgba(27, 94, 57, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: linear-gradient(165deg, #ffffff 0%, #fdfbf7 100%);
  border: 1.5px solid rgba(197, 155, 39, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.2rem 1.8rem;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(13, 46, 28, 0.06), 0 1px 3px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  opacity: 0.8;
  transition: all var(--transition-fast);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--green-primary);
  box-shadow: 0 20px 45px rgba(27, 94, 57, 0.16), 0 0 0 1px rgba(197, 155, 39, 0.4);
}

.stat-card:hover::before {
  opacity: 1;
  height: 5px;
  background: linear-gradient(90deg, #c59b27, #1b5e39, #c59b27);
}

.stat-icon-emblem {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27, 94, 57, 0.08) 0%, rgba(197, 155, 39, 0.12) 100%);
  border: 1.5px solid var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1.3rem;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(27, 94, 57, 0.08);
}

.stat-card:hover .stat-icon-emblem {
  background: var(--green-primary);
  color: #f7e199;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 18px rgba(27, 94, 57, 0.3);
}

.stat-number-wrap {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 0.45rem;
  color: var(--green-primary);
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  letter-spacing: -0.02em;
}

.stat-plus {
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-left: 2px;
}

.stat-label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #173322;
  line-height: 1.35;
  margin-bottom: 0.9rem;
  flex-grow: 1;
}

.stat-pill-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-primary);
  background: rgba(27, 94, 57, 0.07);
  border: 1px solid rgba(197, 155, 39, 0.4);
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-full);
  margin-top: auto;
}

/* ==========================================================================
   ABOUT / ARCHITECTURE SHOWCASE - ULTRA LUXURY ALIGNMENT
   ========================================================================== */

.about-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #fbf8f0 50%, var(--bg-primary) 100%);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 0.8rem;
  background: #ffffff;
  border: 1.5px solid var(--green-primary);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(197, 155, 39, 0.3);
}

.about-image-inner {
  position: relative;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  height: 560px;
  background: #f4eee1;
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.about-image-wrapper:hover .about-main-img {
  transform: scale(1.04);
}

.about-top-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid var(--green-primary);
  color: var(--green-primary);
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.about-image-badge {
  position: absolute;
  bottom: 1.8rem;
  right: 1.8rem;
  background: rgba(255, 255, 255, 0.97);
  border: 2px solid var(--green-primary);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.6rem;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(13, 46, 28, 0.2);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  backdrop-filter: blur(12px);
  max-width: 320px;
}

.badge-number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.badge-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
  line-height: 1.35;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-lead-text {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.about-feature-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 1.3rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.about-feature-item:hover {
  border-color: var(--green-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}

.about-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(27, 94, 57, 0.08);
  border: 1px solid rgba(27, 94, 57, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.about-feature-item h4 {
  font-size: 0.98rem;
  color: #102619;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.about-feature-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.about-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   ARCHITECTURAL ELEVATION & TOWNSHIP PANORAMA
   ========================================================================== */

.elevation-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
  position: relative;
}

.elevation-featured-card {
  position: relative;
  background: #ffffff;
  border: 2px solid var(--green-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(13, 46, 28, 0.15), 0 0 0 1px rgba(197, 155, 39, 0.35);
  margin-bottom: 3.5rem;
}

.elevation-featured-img-wrap {
  height: 520px;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: #eae2d0;
}

.elevation-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.elevation-featured-card:hover .elevation-featured-img {
  transform: scale(1.03);
}

.elevation-badge-float {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid var(--green-primary);
  color: var(--green-primary);
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.elevation-zoom-hint {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(19, 69, 41, 0.92);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  z-index: 2;
  cursor: pointer;
}

.elevation-featured-info {
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: #ffffff;
  border-top: 1.5px solid rgba(27, 94, 57, 0.15);
}

.elevation-info-text h3 {
  font-size: 1.7rem;
  color: #102619;
  margin-bottom: 0.4rem;
}

.elevation-info-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 680px;
  line-height: 1.6;
}

.elevation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.elevation-thumb-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.elevation-thumb-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-green);
}

.elevation-thumb-img-wrap {
  height: 250px;
  overflow: hidden;
  position: relative;
  background: #f4eee1;
}

.elevation-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.img-pos-master {
  object-position: center 65% !important;
}

.img-pos-arcades {
  object-position: center 35% !important;
}

.img-pos-pool {
  object-position: center 96% !important;
}

.img-pos-towers {
  object-position: center 25% !important;
}

.img-pos-water {
  object-position: center 95% !important;
}

.img-pos-champa {
  object-position: center 90% !important;
}

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

.elevation-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 46, 28, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.2rem;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.elevation-thumb-card:hover .elevation-thumb-overlay {
  opacity: 1;
}

.elevation-thumb-tag {
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(27, 94, 57, 0.9);
  border: 1px solid var(--gold-primary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.elevation-expand-icon {
  color: #ffffff;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.elevation-thumb-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.elevation-thumb-body h4 {
  font-size: 1.15rem;
  color: #102619;
  font-weight: 700;
}

.elevation-thumb-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   DEDICATED 9-HOLE GOLF COURSE & COUNTRY CLUB SECTION
   ========================================================================== */

.golf-section {
  position: relative;
  padding: 6.5rem 0;
  background: linear-gradient(180deg, #fcfbf8 0%, #f3eee3 50%, #fcfbf8 100%);
  overflow: hidden;
}

.golf-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(27, 94, 57, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(197, 155, 39, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Master Golf Showcase Hero Card */
.golf-showcase-card {
  position: relative;
  background: #ffffff;
  border: 2px solid var(--green-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(13, 46, 28, 0.14), 0 0 0 1px rgba(197, 155, 39, 0.35);
  margin-bottom: 3.5rem;
}

.golf-showcase-media {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
}

.golf-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.golf-showcase-card:hover .golf-showcase-img {
  transform: scale(1.04);
}

.golf-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 46, 28, 0.15) 0%,
    rgba(13, 46, 28, 0.35) 40%,
    rgba(13, 46, 28, 0.92) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
}

.golf-badge-floating {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid var(--green-primary);
  color: var(--green-primary);
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.golf-overlay-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #ffffff;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.golf-overlay-text h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.golf-overlay-text p {
  font-size: 1.05rem;
  color: #f0f7f3;
  max-width: 680px;
  line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Quick Metrics Ribbon on the Golf Card */
.golf-metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ffffff;
  border-top: 1.5px solid rgba(27, 94, 57, 0.15);
}

.golf-metric-cell {
  padding: 1.8rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(27, 94, 57, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.golf-metric-cell:last-child {
  border-right: none;
}

.golf-metric-cell:hover {
  background: #fdfbf7;
}

.golf-metric-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.golf-metric-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.golf-metric-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* 4-Pillar Golf Grid */
.golf-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

.golf-pillar-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.golf-pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-primary);
  box-shadow: 0 15px 40px rgba(13, 46, 28, 0.12), 0 0 0 1px rgba(197, 155, 39, 0.3);
}

.golf-pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: rgba(27, 94, 57, 0.08);
  border: 1.5px solid var(--green-primary);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  transition: all var(--transition-fast);
}

.golf-pillar-card:hover .golf-pillar-icon {
  background: var(--green-primary);
  color: #ffffff;
  transform: scale(1.08);
}

.golf-pillar-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #102619;
  margin-bottom: 0.8rem;
}

.golf-pillar-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex-grow: 1;
}

/* Interactive Golf Gallery Duo */
.golf-gallery-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.golf-duo-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--green-primary);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.golf-duo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.pos-golf-master {
  object-position: center 75% !important;
}

.pos-golf-botanical {
  object-position: center bottom !important;
}

.golf-duo-card:hover .golf-duo-img {
  transform: scale(1.06);
}

.golf-duo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 46, 28, 0.88) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  color: #ffffff;
}

.golf-duo-overlay h4 {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.golf-duo-overlay p {
  font-size: 0.88rem;
  color: #f0f7f3;
}

.golf-duo-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: rgba(13, 46, 28, 0.92);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-primary);
}

/* Bottom CTA Banner */
.golf-cta-banner {
  background: linear-gradient(135deg, #0d2e1c 0%, #1b5e39 100%);
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 15px 50px rgba(13, 46, 28, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.golf-cta-text {
  text-align: left;
  max-width: 680px;
}

.golf-cta-text h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.golf-cta-text p {
  font-size: 1rem;
  color: #dbebe2;
  line-height: 1.6;
}

.golf-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   KEY HIGHLIGHTS & CRAFTSMANSHIP
   ========================================================================== */

.highlights-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  position: relative;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.highlight-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

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

.highlight-icon-box {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-md);
  background: rgba(27, 94, 57, 0.08);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--green-primary);
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.highlight-card:hover .highlight-icon-box {
  background: var(--green-gradient);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(27, 94, 57, 0.3);
}

.highlight-title {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
  color: #102619;
}

.highlight-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Specifications Matrix */
.specs-matrix {
  margin-top: 4rem;
  background: #ffffff;
  border: 1.5px solid var(--green-primary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.spec-category h4 {
  font-size: 1.1rem;
  color: var(--green-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.spec-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.spec-list li i, .spec-list li svg {
  color: var(--green-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ==========================================================================
   RESIDENCES & FLOOR PLANS - ULTRA LUXURY STUDIO
   ========================================================================== */

.residences-section {
  padding: 6rem 0;
  position: relative;
  background: var(--bg-primary);
}

.plan-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.plan-tab-btn {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  padding: 1.4rem 1.2rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: left;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.plan-tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: var(--green-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.plan-tab-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-primary);
  display: block;
}

.plan-tab-btn .tab-unit-type {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: #102619;
  line-height: 1.2;
  display: block;
}

.plan-tab-btn .tab-unit-size {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.3rem;
  display: block;
}

.plan-tab-btn .tab-carpet-highlight {
  font-size: 0.78rem;
  color: var(--green-dark);
  font-weight: 700;
}

.plan-tab-btn:hover {
  border-color: var(--green-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.plan-tab-btn.active {
  background: #ffffff;
  border: 2px solid var(--green-primary);
  box-shadow: var(--shadow-green), 0 0 0 1px rgba(197, 155, 39, 0.4);
  transform: translateY(-4px);
}

.plan-tab-btn.active::before {
  opacity: 1;
}

.plan-tab-btn.active .tab-unit-type {
  color: var(--green-primary);
}

.plan-panel {
  display: none;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.plan-panel.active {
  display: block;
}

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

.plan-layout-card {
  background: #ffffff;
  border: 2px solid var(--green-primary);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: 0 25px 70px rgba(13, 46, 28, 0.12), 0 0 0 1px rgba(197, 155, 39, 0.35);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
}

.plan-viewer {
  position: relative;
  background: #fdfbf7;
  border: 1.5px solid rgba(27, 94, 57, 0.2);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.plan-view-toggle {
  display: inline-flex;
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.3rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.view-toggle-btn {
  background: transparent;
  border: none;
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.view-toggle-btn.active {
  background: var(--green-gradient);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(27, 94, 57, 0.35);
}

.plan-img-container {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #ffffff;
  background-image: radial-gradient(#d5e4dc 1.2px, transparent 1.2px);
  background-size: 18px 18px;
  border: 1px solid rgba(27, 94, 57, 0.12);
  padding: 1rem;
}

.plan-img-container img {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.08));
  transition: transform 0.4s ease;
}

.plan-img-container:hover img {
  transform: scale(1.04);
}

.plan-zoom-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: #ffffff;
  border: 1.5px solid var(--green-primary);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: var(--green-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.plan-feature-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.plan-feat-pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-primary);
  background: rgba(27, 94, 57, 0.06);
  border: 1px solid rgba(27, 94, 57, 0.2);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
}

.plan-details {
  display: flex;
  flex-direction: column;
}

.plan-unit-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--green-primary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.plan-unit-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #102619;
  line-height: 1.2;
}

/* Key Metrics Quick Row */
.plan-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.8rem;
}

.metric-pill-box {
  background: #fdfbf7;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  text-align: center;
}

.metric-pill-val {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1.1;
}

.metric-pill-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 0.2rem;
}

.plan-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.8rem;
}

.plan-specs-table tr {
  border-bottom: 1px solid rgba(27, 94, 57, 0.12);
}

.plan-specs-table td {
  padding: 0.85rem 0;
  font-size: 0.92rem;
}

.plan-specs-table td:first-child {
  color: var(--text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.plan-specs-table td:first-child i {
  color: var(--green-primary);
  font-size: 0.9rem;
  width: 18px;
}

.plan-specs-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--text-primary);
}

.plan-specs-table td .highlight-value {
  color: var(--green-primary);
  font-weight: 800;
}

.plan-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.plan-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  line-height: 1.5;
  border-left: 2.5px solid var(--green-primary);
  padding-left: 0.85rem;
}

.plan-specs-table td .highlight-value {
  color: var(--green-primary);
  font-weight: 700;
}

.plan-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.plan-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1.2rem;
  line-height: 1.4;
  border-left: 2px solid var(--green-primary);
  padding-left: 0.75rem;
}

/* ==========================================================================
   RESORT AMENITIES SHOWCASE
   ========================================================================== */

.amenities-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.amenity-categories {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.amenity-cat-btn {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
}

.amenity-cat-btn:hover,
.amenity-cat-btn.active {
  background: var(--green-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-green);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}

.amenity-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-green);
  border-color: var(--green-primary);
}

.amenity-icon {
  font-size: 2.2rem;
  color: var(--green-primary);
}

.amenity-name {
  font-size: 1.2rem;
  font-family: var(--font-serif);
  color: var(--text-primary);
}

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

/* ==========================================================================
   PRICING & EMI CALCULATOR
   ========================================================================== */

.pricing-section {
  padding: 6rem 0;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.price-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  border: 2px solid var(--green-primary);
  box-shadow: var(--shadow-green);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
  transform: scale(1.03);
}

.price-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--green-primary);
  box-shadow: var(--shadow-green);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-gradient);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(27, 94, 57, 0.35);
}

.price-unit-name {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  color: #102619;
}

.price-unit-size {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.price-amount-box {
  margin-bottom: 1.6rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(27, 94, 57, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-tag-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-primary);
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.price-val {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 800;
  color: #102619;
  letter-spacing: 0.02em;
  margin: 0.2rem 0 0.4rem 0;
  white-space: nowrap;
}

.price-card.featured .price-val {
  color: var(--green-primary);
}

.price-perk-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(197, 155, 39, 0.08);
  border: 1px solid rgba(197, 155, 39, 0.35);
  padding: 0.22rem 0.8rem;
  border-radius: var(--radius-full);
  margin-top: 0.2rem;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.price-features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.price-features li i, .price-features li svg {
  color: var(--green-primary);
  font-size: 0.85rem;
}

/* EMI Calculator */
.calculator-box {
  background: #ffffff;
  border: 1.5px solid var(--green-primary);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.calc-sliders {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.calc-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.calc-display-val {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-primary);
}

.calc-range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #d8e5dd;
  border-radius: 3px;
  outline: none;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(27, 94, 57, 0.4);
  border: 2px solid #fff;
  transition: transform 0.1s ease;
}

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

.calc-result-panel {
  background: #fdfbf7;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.emi-amount-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 600;
}

.emi-amount-val {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0.4rem 0 1.5rem 0;
}

.emi-breakdown-bar {
  width: 100%;
  height: 10px;
  background: #d6e2da;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  margin-bottom: 1.2rem;
}

.bar-principal {
  height: 100%;
  background: var(--green-primary);
  width: 60%;
  transition: width 0.3s ease;
}

.bar-interest {
  height: 100%;
  background: #94a39b;
  width: 40%;
  transition: width 0.3s ease;
}

.emi-legend {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.principal { background: var(--green-primary); }
.legend-dot.interest { background: #94a39b; }

/* ==========================================================================
   VIRTUAL TOUR & VIDEO SHOWCASE
   ========================================================================== */

.video-section {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.video-banner-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--green-primary);
  box-shadow: var(--shadow-green);
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  transition: transform 0.8s ease;
}

.video-banner-card:hover .video-banner-bg {
  transform: scale(1.04);
}

.video-banner-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid var(--green-primary);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-lg);
}

.play-video-btn {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: var(--green-gradient);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 0 35px rgba(27, 94, 57, 0.5);
  border: 3px solid #fff;
  transition: var(--transition-smooth);
  margin-bottom: 1.5rem;
  animation: pulseGreen 2.5s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(27, 94, 57, 0.7); }
  70% { box-shadow: 0 0 0 25px rgba(27, 94, 57, 0); }
  100% { box-shadow: 0 0 0 0 rgba(27, 94, 57, 0); }
}

.play-video-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 0 45px rgba(27, 94, 57, 0.8);
}

/* ==========================================================================
   VISUAL GALLERY & LIGHTBOX
   ========================================================================== */

.gallery-section {
  padding: 6rem 0;
  position: relative;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-green);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: var(--green-primary);
  box-shadow: var(--shadow-green);
}

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

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--green-primary);
  font-weight: 700;
}

.gallery-item-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ==========================================================================
   LOCATION ADVANTAGE & STRATEGIC CONNECTIVITY
   ========================================================================== */

.location-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.distance-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.dist-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.dist-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
}

.dist-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(27, 94, 57, 0.08);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green-primary);
  flex-shrink: 0;
}

.dist-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.dist-time {
  font-size: 0.8rem;
  color: var(--green-primary);
  font-weight: 700;
  margin-top: 0.2rem;
}

.map-embed-wrapper {
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--green-primary);
  box-shadow: var(--shadow-md);
  position: relative;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   TESTIMONIALS & ATS LEGACY
   ========================================================================== */

.testimonials-section {
  padding: 6rem 0;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-green);
}

.quote-icon {
  font-size: 2.2rem;
  color: var(--green-primary);
  opacity: 0.35;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-body-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(27, 94, 57, 0.15);
  padding-top: 1.2rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.1rem;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.author-unit {
  font-size: 0.78rem;
  color: var(--green-primary);
  font-weight: 600;
}

.stars-row {
  color: var(--gold-primary);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

/* ATS Developer Legacy Bar */
.legacy-bar {
  background: #ffffff;
  border: 1.5px solid var(--green-primary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-green);
}

.legacy-brand-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.legacy-brand-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
}

.legacy-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.legacy-stat-item {
  text-align: center;
  background: #fdfbf7;
  border: 1px solid var(--border-subtle);
  padding: 1.2rem;
  border-radius: var(--radius-md);
}

.legacy-stat-val {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-primary);
}

.legacy-stat-txt {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 0.2rem;
}

/* ==========================================================================
   BANKING & HOME LOAN PARTNERS
   ========================================================================== */
.banking-partners-bar {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-top: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.banking-info {
  max-width: 420px;
}

.banking-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #102619;
  margin-bottom: 0.3rem;
}

.banking-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.banking-logos-grid {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.bank-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fdfbf7;
  border: 1px solid rgba(27, 94, 57, 0.2);
  border-radius: 9999px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-primary);
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  transition: all var(--transition-fast);
}

.bank-pill-badge:hover {
  background: var(--green-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   LIVE CONSTRUCTION STATUS SECTION
   ========================================================================== */
.construction-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, #fcfbf8 0%, #f7f2e8 100%);
  position: relative;
}

.construction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.progress-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
}

.progress-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-green);
}

.progress-card-top {
  margin-bottom: 1.5rem;
}

.progress-tower-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #102619;
  margin-bottom: 0.3rem;
}

.progress-status-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  margin-bottom: 0.8rem;
}

.status-badge-ready {
  background: rgba(27, 94, 57, 0.1);
  color: var(--green-primary);
  border: 1px solid var(--green-primary);
}

.status-badge-progress {
  background: rgba(197, 155, 39, 0.12);
  color: #8b6b14;
  border: 1px solid var(--gold-primary);
}

.progress-details-txt {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.progress-meter-box {
  margin-top: 1rem;
}

.progress-meter-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
  color: #102619;
  margin-bottom: 0.4rem;
}

.progress-bar-track {
  width: 100%;
  height: 8px;
  background: #eae3d2;
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 9999px;
  background: var(--green-gradient);
}

.progress-bar-fill.gold {
  background: var(--gold-gradient);
}

/* ==========================================================================
   WHY INVEST IN DERA BASSI / AMBALA-CHANDIGARH HIGHWAY
   ========================================================================== */
.investment-section {
  padding: var(--section-padding);
  background: #ffffff;
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.investment-card {
  background: #fdfbf7;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  text-align: left;
  transition: all var(--transition-smooth);
}

.investment-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(197, 155, 39, 0.15);
}

.invest-icon-emblem {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0d2e1c 0%, #1b5e39 100%);
  border: 1.5px solid var(--gold-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 16px rgba(27, 94, 57, 0.2);
}

.invest-stat-value {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-primary);
  margin-bottom: 0.3rem;
}

.invest-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #102619;
  margin-bottom: 0.6rem;
}

.invest-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   INTERACTIVE FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, #f7f2e8 0%, #fcfbf8 100%);
}

.faq-accordion-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-sm);
}

.faq-question-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  color: #102619;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-item.active .faq-question-btn {
  color: var(--green-primary);
}

.faq-icon-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fdfbf7;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  background: var(--green-primary);
  color: #ffffff;
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.6rem;
}

.faq-item.active .faq-answer-panel {
  max-height: 300px;
  padding: 0 1.6rem 1.4rem;
}

.faq-answer-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  border-top: 1px solid rgba(27, 94, 57, 0.1);
  padding-top: 0.9rem;
}

/* ==========================================================================
   VIP CONTACT & ENQUIRY SECTION
   ========================================================================== */

.contact-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: #ffffff;
  border: 1.5px solid var(--green-primary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin: 2.5rem 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(27, 94, 57, 0.08);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green-primary);
  flex-shrink: 0;
}

.contact-info-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-info-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 0.2rem;
}

.rera-badge-box {
  background: rgba(27, 94, 57, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.rera-badge-box strong {
  color: var(--green-primary);
}

/* Contact Form */
.contact-form-card {
  background: #ffffff;
  border: 1.5px solid var(--green-primary);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-green);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.form-control {
  background: #fcfbf8;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 15px rgba(27, 94, 57, 0.2);
  background: #ffffff;
}

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

select.form-control option {
  background: #ffffff;
  color: var(--text-primary);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-check input {
  margin-top: 0.2rem;
  accent-color: var(--green-primary);
}

/* ==========================================================================
   FOOTER & DISCLAIMER
   ========================================================================== */

.site-footer {
  background: #ffffff;
  border-top: 2px solid var(--green-primary);
  padding: 4.5rem 0 2rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 1.2rem;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--green-primary);
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: var(--text-secondary);
}

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

.footer-disclaimer-box {
  background: #fdfbf7;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-disclaimer-box p {
  margin-bottom: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(27, 94, 57, 0.15);
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   FLOATING ACTION HUB & MODALS
   ========================================================================== */

.floating-hub {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-decoration: none;
  position: relative;
}

.floating-btn.whatsapp {
  background: #25d366;
}

.floating-btn.phone {
  background: var(--green-primary);
  color: #ffffff;
}

.floating-btn.enquire {
  background: #ffffff;
  border: 2px solid var(--green-primary);
  color: var(--green-primary);
}

.floating-btn.scroll-top {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--green-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.floating-btn.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 94, 57, 0.4);
}

/* Custom Tooltip */
.floating-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 65px;
  background: #ffffff;
  border: 1px solid var(--green-primary);
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}

.floating-btn:hover::before {
  opacity: 1;
  visibility: visible;
}

/* MODALS */
.luxury-modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 46, 28, 0.65);
  backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.luxury-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #ffffff;
  border: 2px solid var(--green-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 750px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 3rem;
  transform: scale(0.92);
  transition: transform var(--transition-smooth);
}

.luxury-modal.open .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  transform: rotate(90deg);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 46, 28, 0.9);
  backdrop-filter: blur(20px);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 88vh;
  position: relative;
  text-align: center;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--green-primary);
  box-shadow: var(--shadow-lg);
}

.lightbox-content img {
  max-height: 75vh;
  max-width: 82vw;
  object-fit: contain;
  border-radius: var(--radius-sm);
  margin: 0 auto;
}

.lightbox-caption {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--green-primary);
  margin-top: 1rem;
  font-weight: 700;
}

/* Video Modal */
.video-modal .modal-container {
  max-width: 960px;
  padding: 1rem;
  background: #000;
}

.video-player-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  border: 0;
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: #ffffff;
  border: 2px solid var(--green-primary);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.8rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-green);
  z-index: 4000;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transform: translateX(120%);
  transition: transform var(--transition-smooth);
}

.toast-notification.show {
  transform: translateX(0);
}

.toast-icon {
  font-size: 1.4rem;
  color: var(--green-primary);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1280px) {
  .nav-menu {
    gap: 1.2rem;
  }
  .nav-link {
    font-size: 0.8rem;
  }
  .brand-logo {
    margin-right: 1rem;
  }
  .header-actions {
    margin-left: 1rem;
    gap: 0.65rem;
  }
}

@media (max-width: 1080px) {
  :root {
    --nav-height: 72px;
  }
  
  .nav-container {
    display: none;
  }
  
  .header-actions .nav-call-btn,
  .header-actions .btn-primary {
    display: none !important;
  }

  .mobile-toggle {
    display: flex;
  }

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

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 992px) {
  .golf-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

  .golf-metric-cell:nth-child(2) {
    border-right: none;
  }

  .golf-metric-cell:nth-child(1),
  .golf-metric-cell:nth-child(2) {
    border-bottom: 1px solid rgba(27, 94, 57, 0.12);
  }

  .golf-gallery-duo {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .golf-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.2rem 1.8rem;
  }

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

  .golf-cta-buttons {
    justify-content: center;
  }

  .about-grid,
  .location-grid,
  .contact-grid,
  .legacy-bar,
  .calculator-box,
  .plan-layout-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .construction-grid,
  .investment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .banking-partners-bar {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .banking-info {
    max-width: 100%;
  }

  .banking-logos-grid {
    justify-content: center;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .about-image-badge {
    position: static;
    margin-top: 1.5rem;
    max-width: 100%;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .golf-pillars-grid {
    grid-template-columns: 1fr;
  }

  .golf-metrics-strip {
    grid-template-columns: 1fr;
  }

  .golf-metric-cell {
    border-right: none;
    border-bottom: 1px solid rgba(27, 94, 57, 0.12);
  }

  .golf-showcase-media {
    height: 400px;
  }

  .top-bar {
    display: none;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .hero-section {
    padding: 2.5rem 0 3.5rem 0;
  }

  .hero-card {
    padding: 2rem 1.5rem;
  }

  .hero-highlights-pill {
    flex-direction: column;
    gap: 0.8rem;
    border-radius: var(--radius-lg);
    padding: 1.2rem;
  }

  .pill-separator {
    display: none;
  }

  .about-features-list,
  .distance-cards-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .calculator-box,
  .plan-layout-card,
  .contact-form-card,
  .contact-info-card,
  .specs-matrix {
    padding: 2rem 1.5rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .floating-contact-hub,
  .floating-hub {
    display: none !important;
  }
}

/* Mobile Bottom Conversion Sticky Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: #ffffff;
  border-top: 1.5px solid var(--green-primary);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  z-index: 998;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100%;
  text-decoration: none;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0 4px;
  transition: all 0.2s ease;
}

.mobile-bar-btn i {
  font-size: 1.15rem;
}

.mobile-bar-btn.call {
  color: var(--green-primary);
}

.mobile-bar-btn.whatsapp {
  color: #128c7e;
}

.mobile-bar-btn.price {
  color: #8b6b14;
}

.mobile-bar-btn.visit {
  background: linear-gradient(135deg, #0d2e1c 0%, #1b5e39 100%);
  color: #ffffff;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 62px; /* space for sticky mobile bar */
  }

  .mobile-bottom-bar {
    display: grid;
  }

  /* Hero Section Clean Mobile Layout - Prevent Overlapping */
  .hero-scroll-cue {
    display: none !important;
  }

  .hero-floating-controls {
    bottom: 1.2rem !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    max-width: calc(100% - 2rem);
    display: flex !important;
    justify-content: center;
    gap: 0.6rem;
    z-index: 20;
  }

  .hero-video-btn {
    padding: 0.45rem 0.95rem !important;
    font-size: 0.76rem !important;
    white-space: nowrap;
    gap: 0.4rem;
  }

  /* Promotional Ribbon Mobile Stacking */
  .promo-ribbon-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 0.75rem;
  }

  .promo-text {
    flex-direction: column;
    font-size: 0.82rem;
    text-align: center;
    gap: 0.45rem;
    line-height: 1.45;
  }

  .floating-hub {
    display: none !important;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .stat-card {
    padding: 1.4rem 1rem;
  }

  .elevation-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 580px) {
  .plan-tabs {
    grid-template-columns: 1fr;
  }
  .plan-metrics-row {
    grid-template-columns: 1fr;
  }
  .construction-grid,
  .investment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

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

  .header-actions .btn-primary {
    display: none;
  }

  .golf-showcase-media {
    height: 280px;
  }

  .section-title {
    font-size: 1.6rem;
  }
}
