/* ==========================================================================
   LAKE VALLEY FLOWER CITY & GREEN GARDEN RESORTS - LUXURY DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Color Palette - Dark Theme Defaults */
  --bg-primary: #080b10;
  --bg-secondary: #0f141f;
  --bg-tertiary: #161d2c;
  --bg-card: rgba(18, 24, 37, 0.88);
  --bg-glass: rgba(255, 255, 255, 0.04);
  
  --border-color: rgba(243, 192, 107, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.08);

  --text-main: #f3f6fc;
  --text-muted: #949eb5;
  --text-dark: #080b10;

  --gold-primary: #f3c06b;
  --gold-secondary: #df9938;
  --gold-accent: #ffe2b3;
  --gold-gradient: linear-gradient(135deg, #ffe2b3 0%, #f3c06b 45%, #ca8725 100%);
  --gold-glow: 0 0 25px rgba(243, 192, 107, 0.3);

  --emerald-primary: #0d9488;
  --emerald-gradient: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);

  --shadow-card: 0 16px 45px rgba(0, 0, 0, 0.65);
  --shadow-hover: 0 25px 55px rgba(243, 192, 107, 0.2);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Playfair Display', 'Noto Serif Bengali', 'Cinzel', serif;
  --font-body: 'Inter', 'Noto Serif Bengali', system-ui, -apple-system, sans-serif;
}

[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-secondary: #eef2f6;
  --bg-tertiary: #e2e8f0;
  --bg-card: rgba(255, 255, 255, 0.95);
  --bg-glass: rgba(0, 0, 0, 0.03);

  --border-color: rgba(197, 138, 38, 0.35);
  --border-subtle: rgba(0, 0, 0, 0.09);

  --text-main: #0f172a;
  --text-muted: #475569;

  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 40px rgba(197, 138, 38, 0.18);
}

/* Base Resets & Global Styles */
*, *::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-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 100px;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: rgba(243, 192, 107, 0.35);
  border-radius: 10px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-primary); }

/* Container */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text-main);
}

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

.gold-icon { color: var(--gold-primary); }
.gold-text { color: var(--gold-primary); font-weight: 700; }
.text-center { text-align: center; }
.mb-3 { margin-bottom: 12px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-gold {
  background: var(--gold-gradient);
  color: #080b10;
  box-shadow: 0 8px 22px rgba(243, 192, 107, 0.35);
  font-weight: 700;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(243, 192, 107, 0.5);
}

/* Sheen sweep animation on gold buttons */
.sheen-btn {
  position: relative;
  overflow: hidden;
}
.sheen-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  transform: rotate(30deg) translateX(-100%);
  transition: transform 0.8s ease;
}
.sheen-btn:hover::after {
  transform: rotate(30deg) translateX(100%);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  color: var(--text-main);
}
.btn-glass:hover {
  background: rgba(243, 192, 107, 0.15);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--gold-primary);
}
.btn-outline:hover {
  background: var(--gold-primary);
  color: #080b10;
  transform: translateY(-3px);
}

/* Glass Panels */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   TOP EXECUTIVE HEADER BAR
   ========================================================================== */
.top-header-bar {
  background: linear-gradient(90deg, #05070a 0%, #111726 50%, #05070a 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  position: relative;
  z-index: 102;
}
.top-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-header-left, .top-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sister-tag-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(243, 192, 107, 0.1);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  font-size: 0.78rem;
}
.sister-tag-badge strong { color: var(--gold-primary); letter-spacing: 0.5px; }
.header-divider { color: rgba(255, 255, 255, 0.15); font-weight: 300; }
.header-info-item { display: flex; align-items: center; gap: 6px; }

.top-hotline-link {
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}
.top-hotline-link strong { color: var(--gold-primary); }
.top-hotline-link:hover { opacity: 0.9; transform: translateY(-1px); }

/* Language & Currency Selectors */
.lang-selector, .currency-selector {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-selector select, .currency-selector select {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
}
.lang-selector select option, .currency-selector select option {
  background: #111726;
  color: #fff;
}

.theme-toggle-btn {
  background: transparent;
  border: none;
  color: var(--gold-primary);
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 2px 6px;
}
.theme-toggle-btn:hover { transform: rotate(20deg) scale(1.15); }

/* ==========================================================================
   UNCONGESTED MAIN NAVBAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 16, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(243, 192, 107, 0.15);
  transition: var(--transition-smooth);
}
.navbar.scrolled {
  background: rgba(6, 8, 12, 0.97);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 1px 0 rgba(243, 192, 107, 0.25);
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 82px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-emblem {
  width: 46px;
  height: 46px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #080b10;
  font-size: 1.35rem;
  box-shadow: 0 4px 18px rgba(243, 192, 107, 0.4);
  transition: var(--transition-fast);
}
.brand-logo:hover .logo-emblem { transform: scale(1.05) rotate(-5deg); }
.logo-text { display: flex; flex-direction: column; }
.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  color: var(--text-main);
  line-height: 1;
}
.brand-subtitle {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  color: var(--gold-primary);
  font-weight: 700;
  margin-top: 3px;
}

/* Streamlined Uncongested Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.98rem;
  font-weight: 600;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 8px 0;
}
.nav-link i {
  font-size: 0.9rem;
  color: var(--gold-primary);
  opacity: 0.8;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--gold-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu-toggle {
  display: none;
  background: rgba(243, 192, 107, 0.1);
  border: 1px solid var(--border-color);
  color: var(--gold-primary);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition-fast);
}
.mobile-menu-toggle:hover {
  background: var(--gold-primary);
  color: #080b10;
}

/* ==========================================================================
   MOBILE DRAWER OVERLAY
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-drawer-overlay.active { opacity: 1; visibility: visible; }

.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85%;
  height: 100%;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
}
.mobile-drawer-overlay.active .mobile-drawer-content { transform: translateX(0); }

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}
.drawer-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.drawer-close-btn:hover { color: var(--gold-primary); }

.drawer-body {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.mobile-nav-link {
  text-decoration: none;
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition-fast);
}
.mobile-nav-link:hover {
  background: rgba(243, 192, 107, 0.12);
  color: var(--gold-primary);
}

.drawer-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(243, 192, 107, 0.09) 0%, transparent 60%);
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: rgba(243, 192, 107, 0.12);
  border: 1px solid var(--border-color);
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 580px;
}
.hero-features-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 35px;
}
.hero-feature-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-glass);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}
.hero-feature-card i {
  font-size: 1.4rem;
  color: var(--gold-primary);
  width: 32px;
  text-align: center;
}
.hero-feature-card strong { display: block; font-size: 0.95rem; }
.hero-feature-card span { font-size: 0.82rem; color: var(--text-muted); }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 16px; }

/* Featured Hero Card Preview */
.hero-card-preview { position: relative; }
.featured-hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}
.hero-card-img-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.hero-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-hero-card:hover .hero-card-img-wrapper img { transform: scale(1.05); }
.hero-card-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(8, 11, 16, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  color: var(--gold-primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}
.hero-card-body { padding: 24px; }
.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.hero-card-header h3 { font-size: 1.5rem; color: var(--gold-primary); }
.location-tag { font-size: 0.85rem; color: var(--text-muted); }
.hero-card-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
.hero-card-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--border-subtle);
}
.hero-stat .number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-primary);
}
.hero-stat .label { font-size: 0.75rem; color: var(--text-muted); }

/* ==========================================================================
   STATS BAR SECTION
   ========================================================================== */
.stats-bar-section {
  padding: 40px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: var(--bg-glass);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}
.stat-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
}
.stat-icon { font-size: 1.8rem; color: var(--gold-primary); margin-bottom: 8px; }
.stat-number, .stat-number-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* Section Common Header */
.section-header { margin-bottom: 50px; }
.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 8px;
}
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 12px; }
.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* ==========================================================================
   VILLAS SECTION
   ========================================================================== */
.villas-section { padding: 100px 0; }
.villas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.villa-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.villa-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-hover);
}
.villa-card.featured {
  border-width: 2px;
  border-color: var(--gold-primary);
}
.villa-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  background: rgba(8, 11, 16, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  color: var(--gold-primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.villa-badge.popular { background: var(--gold-gradient); color: #080b10; }
.villa-badge.premium {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
  border: none;
}
.villa-image-container {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.villa-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.villa-card:hover .villa-image-container img { transform: scale(1.08); }
.villa-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 16, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}
.villa-image-container:hover .villa-overlay { opacity: 1; }

.villa-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.villa-title { font-size: 1.6rem; font-weight: 800; color: var(--text-main); margin-bottom: 4px; }
.villa-subtitle { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; }
.villa-price-box {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.price-label { display: block; font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; }
.price-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1.2;
}
.price-words { display: block; font-size: 0.78rem; color: var(--text-muted); font-style: italic; }

.specs-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.88rem;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-subtle);
}
.spec-row span { color: var(--text-muted); }
.spec-row.highlight {
  border-bottom: none;
  background: rgba(243, 192, 107, 0.08);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--gold-primary);
}

.villa-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.villa-features-list span {
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  color: var(--text-muted);
}
.villa-actions { margin-top: auto; }

/* ==========================================================================
   CALCULATOR SECTION
   ========================================================================== */
.calculator-section { padding: 80px 0; background: var(--bg-secondary); }
.calculator-panel { padding: 48px; }
.calc-body-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 30px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--text-main);
}
.villa-selector-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.calc-villa-btn {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 12px 10px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}
.calc-villa-btn.active, .calc-villa-btn:hover {
  background: rgba(243, 192, 107, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.label-with-value {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.range-val { font-weight: 700; color: var(--gold-primary); }
input[type="range"] {
  width: 100%;
  accent-color: var(--gold-primary);
  cursor: pointer;
  height: 6px;
  border-radius: 4px;
}

.calc-results-card {
  background: rgba(8, 11, 16, 0.75);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.results-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.92rem;
}
.calc-divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 16px 0;
}
.result-row.total-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.big-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-primary);
}
.calc-book-btn { margin-top: 20px; }

/* ==========================================================================
   SHARES SECTION & MEMBERSHIP CARDS
   ========================================================================== */
.shares-section { padding: 100px 0; }
.table-wrapper {
  overflow-x: auto;
  margin-bottom: 50px;
  position: relative;
}
.scroll-hint-bar {
  display: none;
  font-size: 0.78rem;
  color: var(--gold-primary);
  padding: 8px 16px;
  background: rgba(243, 192, 107, 0.1);
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.shares-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}
.shares-table th, .shares-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}
.shares-table th {
  font-family: var(--font-heading);
  color: var(--gold-primary);
  font-weight: 700;
  background: rgba(0, 0, 0, 0.25);
}
.shares-table tr:hover td { background: rgba(243, 192, 107, 0.04); }

.tier-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}
.tier-special { background: rgba(255, 255, 255, 0.1); color: #fff; }
.tier-silver { background: rgba(192, 192, 192, 0.2); color: #e0e0e0; }
.tier-gold { background: rgba(243, 192, 107, 0.2); color: var(--gold-primary); }
.tier-platinum { background: rgba(13, 148, 136, 0.2); color: #2dd4bf; }
.tier-diamond { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.tier-vip { background: var(--gold-gradient); color: #080b10; }

.cards-showcase-title { margin-bottom: 30px; }
.cards-showcase-title h3 { font-size: 1.5rem; color: var(--gold-primary); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.member-card {
  aspect-ratio: 1.58 / 1;
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition: var(--transition-fast);
}
.member-card:hover { transform: translateY(-6px) scale(1.03); }
.member-card.bronze { background: linear-gradient(135deg, #4a3b32 0%, #2b211b 100%); border: 1px solid #7c5c49; }
.member-card.silver { background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%); border: 1px solid #a0aec0; }
.member-card.gold { background: linear-gradient(135deg, #74511d 0%, #422d0c 100%); border: 1px solid var(--gold-primary); }
.member-card.platinum { background: linear-gradient(135deg, #0f4c47 0%, #082926 100%); border: 1px solid #2dd4bf; }
.member-card.diamond { background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%); border: 1px solid #60a5fa; }
.member-card.vip { background: var(--gold-gradient); color: #080b10; border: none; }

.card-chip { font-size: 1.2rem; opacity: 0.8; }
.card-tier-name { font-weight: 800; font-size: 0.82rem; letter-spacing: 1px; }
.card-discount { font-weight: 900; font-size: 1.1rem; }
.card-subtitle { font-size: 0.65rem; opacity: 0.8; }

/* ==========================================================================
   TOWER SECTION
   ========================================================================== */
.tower-section { padding: 80px 0; background: var(--bg-secondary); }
.tower-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  transition: var(--transition-fast);
}
.product-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-6px);
}
.product-icon { font-size: 2.2rem; color: var(--gold-primary); margin-bottom: 16px; }
.product-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
.product-card p { font-size: 0.88rem; color: var(--text-muted); }
.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.72rem;
  background: rgba(243, 192, 107, 0.15);
  color: var(--gold-primary);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

/* ==========================================================================
   AMENITIES SECTION
   ========================================================================== */
.amenities-section { padding: 100px 0; }
.amenity-filter-bar {
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
}
.amenity-filter-bar .filter-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
}
.amenity-filter-bar input {
  width: 100%;
  padding: 14px 22px 14px 48px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
}
.amenity-filter-bar input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(243, 192, 107, 0.25);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.amenity-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 20px 14px;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}
.amenity-item:hover {
  border-color: var(--gold-primary);
  background: rgba(243, 192, 107, 0.08);
  transform: translateY(-4px);
}
.amenity-item i { font-size: 1.8rem; color: var(--gold-primary); }
.amenity-item span { font-size: 0.82rem; font-weight: 600; }

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section { padding: 80px 0; background: var(--bg-secondary); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gallery-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-color);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-card:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 16, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--transition-fast);
  color: var(--gold-primary);
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; }
.gallery-overlay span { font-size: 1.1rem; font-weight: 700; color: #fff; }

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer-section {
  background: #05070a;
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-color);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 16px 0 20px;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-fast);
}
.social-links a:hover { background: var(--gold-primary); color: #080b10; }

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.88rem;
}
.contact-list i { color: var(--gold-primary); width: 20px; }
.contact-list a { color: var(--gold-primary); text-decoration: none; }

.location-box { margin-bottom: 16px; font-size: 0.85rem; }
.location-box strong { color: var(--gold-primary); display: block; }
.location-box p { color: var(--text-muted); }

.quick-form { display: flex; flex-direction: column; gap: 12px; }
.quick-form input, .quick-form select {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 0.85rem;
  outline: none;
}
.quick-form input:focus, .quick-form select:focus { border-color: var(--gold-primary); }

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 36px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
}
.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}
.lightbox-caption {
  margin-top: 16px;
  color: var(--gold-primary);
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

/* Booking Modal */
.booking-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.booking-modal-content {
  width: 100%;
  max-width: 500px;
  padding: 36px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
}
.modal-close:hover { color: var(--gold-primary); }
.modal-icon { font-size: 2rem; margin-bottom: 8px; }
.modal-form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal-form input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 0.9rem;
}
.modal-form input[readonly] {
  background: rgba(243, 192, 107, 0.1);
  color: var(--gold-primary);
  font-weight: 700;
}

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

/* Laptop / Small Desktop (max-width: 1200px) */
@media (max-width: 1200px) {
  .villas-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
  .tower-products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 24px; }
}

/* Tablet Responsive (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title { font-size: 2.7rem; }
  .calc-body-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  
  .hide-mobile { display: none !important; }
  .hide-desktop { display: block !important; }
  .scroll-hint-bar { display: block; }

  .nav-links { display: none; }
  .mobile-menu-toggle { display: flex; align-items: center; justify-content: center; }
}

/* Mobile Responsive (max-width: 768px) */
@media (max-width: 768px) {
  .top-header-container { flex-direction: column; gap: 8px; text-align: center; }
  .top-header-left, .top-header-right { justify-content: center; flex-wrap: wrap; }
  .navbar-container { height: 70px; }
  
  .hero-section { padding: 60px 0 50px; }
  .hero-title { font-size: 2.2rem; }
  .hero-description { font-size: 1rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; }

  .villas-section { padding: 60px 0; }
  .villas-grid { grid-template-columns: 1fr; }
  .villa-card { max-width: 500px; margin: 0 auto; }

  .calculator-panel { padding: 24px 18px; }
  .villa-selector-buttons { grid-template-columns: 1fr; }
  .big-price { font-size: 1.4rem; }

  .shares-section { padding: 60px 0; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }

  .tower-section { padding: 60px 0; }
  .tower-products-grid { grid-template-columns: 1fr; }

  .amenities-section { padding: 60px 0; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-section { padding: 60px 0; }
  .gallery-grid { grid-template-columns: 1fr; }

  .footer-section { padding: 60px 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* Small Mobile Responsive (max-width: 480px) */
@media (max-width: 480px) {
  .hero-title { font-size: 1.85rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number, .stat-number-text { font-size: 1.3rem; }
  .booking-modal-content { padding: 24px 16px; }
}
