/* ==========================================================================
   RAMAYAN VATIKA - LUXURY REAL ESTATE LANDING PAGE STYLES (REVISED V2)
   Font: Poppins (Google Fonts)
   Features: Glowing Animated Borders, Aspect Ratio Image Fixes, Mobile-Optimized Views,
             Future Property Appreciation Calculator, Animated Route Journey.
   ========================================================================== */

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

/* --- CSS Variables & Design System --- */
:root {
  /* Color Palette */
  --bg-main: #FAF9F5;
  --bg-surface: #FFFFFF;
  --bg-cream: #F4EFE6;
  --bg-dark: #0A140F;
  
  --primary-green: #113826;
  --primary-green-light: #1A5238;
  --primary-green-subtle: #E6F0EB;
  
  --accent-maroon: #8B2626;
  --accent-maroon-hover: #731F1F;
  --accent-maroon-subtle: #FDF2F2;
  
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #9A7B1C;
  --gold-glow: rgba(212, 175, 55, 0.4);
  
  --text-dark: #141A17;
  --text-body: #2D3631;
  --text-muted: #5C6861;
  --text-light: #F4F6F5;
  
  --border-light: #E4DFD3;
  --border-green: #B8D4C5;
  
  /* Fonts - Poppins */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Shadows & Glows */
  --shadow-sm: 0 4px 14px rgba(17, 56, 38, 0.05);
  --shadow-md: 0 8px 25px rgba(17, 56, 38, 0.09);
  --shadow-lg: 0 16px 45px rgba(17, 56, 38, 0.14);
  --glow-gold: 0 0 20px rgba(212, 175, 55, 0.4);
  --glow-green: 0 0 20px rgba(17, 56, 38, 0.3);
  --glow-maroon: 0 0 20px rgba(139, 38, 38, 0.35);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 50px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

.heading-royal {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1rem;
}

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

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

/* --- Glowing Keyframe Animations --- */
@keyframes glowPulseGold {
  0% {
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3), inset 0 0 8px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.6);
  }
  50% {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.7), inset 0 0 15px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 1);
  }
  100% {
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3), inset 0 0 8px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.6);
  }
}

@keyframes glowPulseGreen {
  0% {
    box-shadow: 0 0 10px rgba(17, 56, 38, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(17, 56, 38, 0.5);
  }
  100% {
    box-shadow: 0 0 10px rgba(17, 56, 38, 0.2);
  }
}

@keyframes routeLinePulse {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.glowing-border-gold {
  animation: glowPulseGold 3s infinite ease-in-out;
}

.glowing-border-green {
  animation: glowPulseGreen 3s infinite ease-in-out;
}

.glow-card-hover:hover {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  border-color: var(--gold-primary) !important;
  transform: translateY(-4px);
}

/* --- Container & Utilities --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 4.5rem 0;
}

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

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge-approved {
  background-color: var(--primary-green-subtle);
  color: var(--primary-green);
  border: 1px solid var(--border-green);
}

.badge-gold {
  background-color: #FFFDF0;
  color: #8C6A21;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.badge-maroon {
  background-color: var(--accent-maroon-subtle);
  color: var(--accent-maroon);
  border: 1px solid rgba(139, 38, 38, 0.25);
}

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

.section-title {
  font-size: 2.2rem;
  margin: 0.75rem 0 1rem 0;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-maroon) 0%, #A32E2E 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(139, 38, 38, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-maroon-hover) 0%, var(--accent-maroon) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 38, 38, 0.45);
}

.btn-secondary {
  background-color: var(--primary-green);
  color: white;
  box-shadow: 0 4px 15px rgba(17, 56, 38, 0.3);
}

.btn-secondary:hover {
  background-color: var(--primary-green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(17, 56, 38, 0.45);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-outline:hover {
  background-color: var(--primary-green);
  color: white;
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary) 0%, #B89228 100%);
  color: #120F05;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #E6C248 0%, var(--gold-primary) 100%);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.55);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #1EBE5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-call {
  background-color: #0275D8;
  color: white;
}

/* --- Header & Top Bar --- */
.top-bar {
  background-color: var(--primary-green);
  color: var(--gold-light);
  padding: 0.55rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-link {
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(250, 249, 245, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  color: var(--gold-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gold-primary);
}

.brand-text h1 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--primary-green);
  margin: 0;
  line-height: 1.1;
  font-weight: 800;
}

.brand-text span {
  font-size: 0.72rem;
  color: var(--accent-maroon);
  font-weight: 700;
  letter-spacing: 0.03em;
  display: block;
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-maroon);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--accent-maroon);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  font-size: 1.5rem;
  color: var(--primary-green);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 3.5rem 0 4.5rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 45%),
              radial-gradient(circle at 10% 80%, rgba(17, 56, 38, 0.06) 0%, transparent 45%);
}

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

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

.hero-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 2.65rem;
  margin-bottom: 1.25rem;
  color: var(--primary-green);
  line-height: 1.2;
  font-weight: 800;
}

.hero-title span {
  color: var(--accent-maroon);
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.trust-bullet {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.trust-bullet i {
  color: var(--primary-green);
  font-size: 1.1rem;
}

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

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold-primary);
}

.hero-image-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: pointer;
}

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

.hero-floating-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: white;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-left: 4px solid var(--accent-maroon);
  border-top: 1px solid var(--border-light);
  z-index: 2;
}

.floating-icon {
  width: 40px;
  height: 40px;
  background-color: var(--accent-maroon-subtle);
  color: var(--accent-maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-text h4 {
  font-size: 0.925rem;
  color: var(--text-dark);
  font-weight: 700;
}

.floating-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- Trust Strip --- */
.trust-strip-section {
  background-color: var(--bg-surface);
  padding: 2.25rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background-color: var(--bg-main);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

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

.trust-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background-color: var(--primary-green-subtle);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.trust-card-info h4 {
  font-size: 0.925rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.trust-card-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}

/* --- Features Section --- */
.features-section {
  background-color: var(--bg-main);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feature-card {
  background-color: var(--bg-surface);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--gold-primary) 100%);
  opacity: 0;
  transition: var(--transition-fast);
}

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

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

.feature-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--primary-green-subtle);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* --- Gallery Section (Responsive Aspect Ratio Fixes) --- */
.gallery-section {
  background-color: var(--bg-surface);
}

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

.gallery-filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-body);
}

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

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border-light);
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 20, 15, 0.88) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

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

.gallery-caption {
  color: white;
}

.gallery-caption h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.gallery-caption p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  margin: 0;
}

/* --- Project Development Section --- */
.development-section {
  background-color: var(--bg-cream);
}

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

.dev-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid white;
  aspect-ratio: 4 / 3;
}

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

.dev-content h2 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.dev-content p {
  font-size: 1.025rem;
  color: var(--text-body);
  margin-bottom: 1.75rem;
}

.dev-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.925rem;
}

.check-item i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--primary-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* --- Master Layout Section --- */
.layout-section {
  background-color: var(--bg-surface);
}

.layout-card-wrapper {
  background-color: var(--bg-main);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.layout-image-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: white;
  border: 2px solid var(--border-light);
  cursor: pointer;
}

.layout-image-box img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background-color: #FAFAFA;
}

.layout-zoom-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(17, 56, 38, 0.92);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.layout-details h3 {
  font-size: 1.7rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.layout-details p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.layout-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.layout-specs-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--text-dark);
}

.layout-specs-list li i {
  color: var(--accent-maroon);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

/* --- Plot Options Section --- */
.plots-section {
  background-color: var(--bg-main);
}

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

.plot-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition-fast);
  cursor: pointer;
  position: relative;
}

.plot-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--glow-gold);
}

.plot-card-size {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 0.2rem;
}

.plot-card-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1rem;
}

.plot-card-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.725rem;
  font-weight: 700;
  background-color: var(--primary-green-subtle);
  color: var(--primary-green);
}

/* --- Pricing & Future Appreciation Calculator --- */
.pricing-section {
  background-color: var(--bg-surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.pricing-card {
  background-color: var(--bg-main);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-light);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition-normal);
}

.pricing-card.popular {
  border-color: var(--gold-primary);
  background-color: #FFFDF8;
  animation: glowPulseGold 3s infinite ease-in-out;
}

.pricing-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-primary) 0%, #B89228 100%);
  color: #120F05;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.pricing-rate {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-maroon);
  margin: 1rem 0;
  line-height: 1;
}

.pricing-rate span {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.pricing-features li i {
  color: var(--primary-green);
}

/* --- Future Growth / Property Appreciation Calculator --- */
.calc-wrapper {
  background: linear-gradient(135deg, var(--primary-green) 0%, #082116 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
  border: 2px solid var(--gold-primary);
  animation: glowPulseGold 4s infinite ease-in-out;
}

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

.calc-title h3 {
  color: var(--gold-light);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.calc-title p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.925rem;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.calc-control-group label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.925rem;
  margin-bottom: 0.5rem;
  color: white;
}

.calc-slider {
  width: 100%;
  accent-color: var(--gold-primary);
  height: 8px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}

.calc-results-box {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--glow-gold);
}

.calc-res-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.85rem;
}

.calc-res-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.calc-res-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.calc-res-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
}

/* --- Parks & Security & Community Sections --- */
.split-feature-section {
  padding: 4.5rem 0;
}

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

.split-feature-grid.reverse {
  direction: rtl;
}

.split-feature-grid.reverse > * {
  direction: ltr;
}

.sf-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid white;
  aspect-ratio: 4 / 3;
}

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

.sf-content h2 {
  font-size: 2.1rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.sf-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.sf-stat-box {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--transition-fast);
}

.sf-stat-box:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--glow-gold);
}

.sf-stat-box h3 {
  font-size: 1.6rem;
  color: var(--accent-maroon);
  font-weight: 800;
}

.sf-stat-box p {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 600;
}

/* --- Location Section & Animated Distance Journey --- */
.location-section {
  background-color: var(--bg-main);
}

.location-journey-wrapper {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-light);
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}

.location-journey-wrapper:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--glow-gold);
}

.location-journey-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 2.5rem;
}

.journey-path {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  gap: 1rem;
}

/* Animated Connecting Line */
.journey-path::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 5%;
  width: 90%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-maroon) 0%, var(--primary-green) 50%, var(--gold-primary) 100%);
  background-size: 200% 200%;
  animation: routeLinePulse 4s infinite linear;
  z-index: 1;
  border-radius: 2px;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
  flex: 1;
  position: relative;
}

.journey-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--bg-surface);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
  border: 3px solid var(--primary-green);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-bounce);
}

.journey-step:hover .journey-icon {
  transform: scale(1.15);
  box-shadow: var(--glow-gold);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.journey-step.main .journey-icon {
  background-color: var(--accent-maroon);
  color: white;
  border-color: var(--gold-primary);
  width: 62px;
  height: 62px;
  font-size: 1.5rem;
  box-shadow: var(--glow-maroon);
}

.journey-step h4 {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.journey-step span {
  font-size: 0.78rem;
  color: var(--accent-maroon);
  font-weight: 700;
  background-color: var(--accent-maroon-subtle);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}

.location-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.location-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.location-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.location-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.location-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-dist-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(139, 38, 38, 0.95);
  color: white;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
}

.location-card-body {
  padding: 1.5rem;
}

.location-card-body h3 {
  font-size: 1.15rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.location-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- Real Site & Real People Section --- */
.real-site-section {
  background-color: var(--bg-cream);
  padding: 4.5rem 0;
}

.real-site-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.real-site-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.real-site-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Developer & Approval Section --- */
.trust-approval-section {
  background-color: var(--bg-surface);
}

.developer-card {
  background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-cream) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 2px solid var(--gold-primary);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--glow-gold);
}

.dev-info h3 {
  font-size: 1.8rem;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
}

.dev-address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-top: 1rem;
  font-weight: 600;
}

.dev-address i {
  color: var(--accent-maroon);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

/* --- Lead Form Section --- */
.lead-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, #071F15 100%);
  color: white;
  padding: 5rem 0;
}

.lead-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--glow-gold);
}

.lead-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.lead-header h2 {
  color: var(--gold-light);
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.lead-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

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

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

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.form-input, .form-select {
  width: 100%;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-select option {
  background-color: var(--primary-green);
  color: white;
}

.form-input:focus, .form-select:focus {
  border-color: var(--gold-primary);
  background-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.form-actions {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* --- FAQ Section --- */
.faq-section {
  background-color: var(--bg-main);
}

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

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

.faq-question {
  padding: 1.35rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}

.faq-question i {
  color: var(--accent-maroon);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.35rem 1.5rem;
  display: none;
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* --- Closing CTA Section --- */
.closing-cta-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(rgba(10, 20, 15, 0.88), rgba(10, 20, 15, 0.88)),
              url('assets/images/hero-poster.png') center/cover no-repeat;
  color: white;
  text-align: center;
}

.closing-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.closing-cta-content h2 {
  color: white;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.closing-cta-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

/* --- Footer --- */
.footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

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

.footer-col h4 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

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

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* --- Emotion Features Grid --- */
.emotion-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: left;
}

/* --- Sticky Mobile Footer CTA --- */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(135deg, #061A11 0%, #0D2D1F 100%);
  box-shadow: 0 -4px 25px rgba(212, 175, 55, 0.5), 0 0 15px rgba(37, 211, 102, 0.4);
  padding: 0.65rem 0.85rem;
  border-top: 2px solid var(--gold-primary);
  animation: stickyGlowPulse 2.5s infinite ease-in-out;
}

@keyframes stickyGlowPulse {
  0%, 100% {
    box-shadow: 0 -4px 20px rgba(212, 175, 55, 0.5), 0 0 10px rgba(82, 224, 128, 0.3);
    border-top-color: #F3E5AB;
  }
  50% {
    box-shadow: 0 -6px 30px rgba(212, 175, 55, 0.9), 0 0 20px rgba(37, 211, 102, 0.7);
    border-top-color: #D4AF37;
  }
}

.sticky-mobile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.sticky-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.55rem 0.4rem;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.sticky-btn i {
  font-size: 1.25rem;
}

.sticky-btn.call { background: linear-gradient(135deg, #0052D4, #4364F7); }
.sticky-btn.whatsapp { background: linear-gradient(135deg, #11998e, #38ef7d); }
.sticky-btn.visit { background: linear-gradient(135deg, #800020, #b22222); animation: buttonPulse 2s infinite ease-in-out; }

@keyframes buttonPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* --- Lightbox & Modal Overlay --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold-primary);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-main);
  color: var(--text-dark);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 95vw;
  max-height: 95vh;
  background: transparent;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-caption {
  color: white;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* --- Mobile Specific Aspect Ratios & Responsiveness --- */
@media (max-width: 1024px) {
  .hero-grid, .split-dev-grid, .layout-card-wrapper, .split-feature-grid, .real-site-card, .developer-card, .calc-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .features-grid, .pricing-grid, .location-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .features-grid, .pricing-grid, .location-cards-grid, .gallery-grid, .plots-grid, .emotion-features-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .gallery-item, .gallery-item.wide {
    aspect-ratio: 4 / 3;
    grid-column: span 1;
  }

  /* Lead Form Mobile Fixes (Screenshot 1) */
  .lead-wrapper {
    padding: 1.75rem 1.15rem !important;
    border-radius: var(--radius-md) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .lead-header h2 {
    font-size: 1.55rem !important;
    line-height: 1.35 !important;
  }

  .lead-header p {
    font-size: 0.88rem !important;
  }

  .lead-form {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 1.15rem !important;
  }

  .form-group {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    align-items: flex-start !important;
    gap: 0.4rem !important;
    margin: 0 !important;
  }

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

  .form-group label {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  .form-input, .form-select {
    width: 100% !important;
    max-width: 100% !important;
    height: 48px !important;
    font-size: 0.95rem !important;
    padding: 0.65rem 0.9rem !important;
    box-sizing: border-box !important;
    display: block !important;
    border-radius: var(--radius-md) !important;
  }

  /* Option dropdown contrast in standard selects */
  .form-select option {
    background-color: #071F15 !important;
    color: white !important;
  }

  .form-actions {
    width: 100% !important;
    margin-top: 0.5rem !important;
  }

  .form-actions .btn {
    width: 100% !important;
    max-width: 100% !important;
  }

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

  .sticky-mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }

  .journey-path {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .journey-path::before {
    top: 5%;
    left: 26px;
    width: 4px;
    height: 90%;
  }

  .journey-step {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    text-align: left;
    width: 100%;
  }

  .journey-step span {
    margin-top: 0.2rem;
  }
}
