/* ===================================================================
   NORTH TOWN LUXURY TOWNSHIP - DESIGN SYSTEM & STYLESHEET
   33 High-Rise Towers & 111 Signature Luxury Villas
   =================================================================== */

/* CSS Reset & Variables */
:root {
  --bg-dark: #070a10;
  --bg-deep: #0c101b;
  --bg-card: rgba(16, 23, 37, 0.78);
  --bg-card-hover: rgba(24, 34, 54, 0.88);
  --border-gold: rgba(230, 200, 117, 0.22);
  --border-gold-glow: rgba(230, 200, 117, 0.5);
  --border-subtle: rgba(255, 255, 255, 0.08);

  --gold-primary: #e6c875;
  --gold-light: #fef0c7;
  --gold-dark: #b89130;
  --gold-gradient: linear-gradient(135deg, #f9e295 0%, #c99c36 50%, #8c671b 100%);
  --gold-glow: 0 0 25px rgba(230, 200, 117, 0.25);

  --cyan-primary: #00e5ff;
  --cyan-glow: 0 0 25px rgba(0, 229, 255, 0.35);

  --text-primary: #f5f7fa;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-gold: #f3d789;

  --font-display: 'Cinzel', serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border-subtle);
  --shadow-card-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 25px rgba(230, 200, 117, 0.2), 0 0 0 1px var(--border-gold);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: #080c14;
}
::-webkit-scrollbar-thumb {
  background: #242e42;
  border-radius: var(--radius-full);
  border: 2px solid #080c14;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

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

/* Top Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px var(--gold-primary);
  z-index: 1000;
  transition: width 0.1s ease-out;
}

/* Status Bar */
.top-status-bar {
  background: rgba(10, 14, 23, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  padding: 0.4rem 0;
  position: relative;
  z-index: 101;
}
.status-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.status-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 229, 255, 0.1);
  color: var(--cyan-primary);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan-primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7); }
  70% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 7px rgba(0, 229, 255, 0); }
  100% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}
.status-stat {
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.status-stat i {
  color: var(--gold-primary);
}
.sound-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}
.sound-toggle-btn:hover {
  color: var(--gold-primary);
  border-color: var(--border-gold);
}
.sound-toggle-btn.playing {
  background: rgba(230, 200, 117, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

/* Main Fixed Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(7, 10, 16, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}
.main-header.scrolled {
  background: rgba(6, 9, 15, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  border-bottom-color: var(--border-gold);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-primary);
}
.logo-emblem {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(230, 200, 117, 0.2), rgba(12, 16, 27, 0.9));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.25rem;
  box-shadow: 0 0 15px rgba(230, 200, 117, 0.2);
}
.logo-text-group {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  background: linear-gradient(120deg, #ffffff 40%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
}

/* Nav Menu */
.desktop-nav {
  display: flex;
  align-items: center;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: var(--transition-fast);
}
.nav-link i {
  font-size: 0.8rem;
  color: var(--gold-primary);
  opacity: 0.7;
  transition: var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}
.nav-link:hover i,
.nav-link.active i {
  opacity: 1;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 1.1rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.mobile-drawer {
  display: none;
  background: rgba(8, 12, 20, 0.98);
  border-bottom: 1px solid var(--border-gold);
  padding: 1rem 1.5rem;
}
.mobile-drawer.open {
  display: block;
}
.mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.mobile-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  display: block;
  padding: 0.4rem 0;
}

/* Luxury Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}
.btn-primary-gold {
  background: var(--gold-gradient);
  color: #0c101b;
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
  box-shadow: 0 4px 15px rgba(230, 200, 117, 0.3);
}
.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 200, 117, 0.5);
  filter: brightness(1.05);
}
.btn-outline-gold {
  background: rgba(230, 200, 117, 0.05);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
}
.btn-outline-gold:hover {
  background: rgba(230, 200, 117, 0.15);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}
.btn-gold-large {
  background: var(--gold-gradient);
  color: #080c14;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 30px rgba(201, 156, 54, 0.35);
}
.btn-gold-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 156, 54, 0.55);
}
.btn-glass-large {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 0.9rem 1.8rem;
  font-size: 0.95rem;
}
.btn-glass-large:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.btn-sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.8rem;
}
.btn-block {
  width: 100%;
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero-section {
  position: relative;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 0 3rem;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, #151d2f 0%, var(--bg-dark) 75%);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}
.hero-glow-sphere {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 200, 117, 0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}
.hero-glow-cyan {
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(230, 200, 117, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  box-shadow: var(--gold-glow);
}
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}
.hero-title-top {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--text-secondary);
}
.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.05;
  background: linear-gradient(135deg, #ffffff 30%, #e2e8f0 70%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.hero-title-gold {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

/* Hero Stats Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}
.stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card-hover);
}
.stat-card:hover::before {
  opacity: 1;
}
.stat-number-wrapper {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.35rem;
}
.stat-plus {
  font-size: 1.6rem;
  color: var(--gold-primary);
  -webkit-text-fill-color: var(--gold-primary);
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}
.stat-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Scroll Down Cue */
.scroll-down-cue {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}
.scroll-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  transition: var(--transition-fast);
}
.scroll-pill:hover {
  color: var(--gold-primary);
}
.mouse-icon {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  position: relative;
}
.mouse-wheel {
  width: 4px;
  height: 7px;
  background: var(--gold-primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseWheel 1.8s infinite;
}
@keyframes mouseWheel {
  0% { transform: translate(-50%, 0); opacity: 0; }
  40% { opacity: 1; }
  80% { transform: translate(-50%, 14px); opacity: 0; }
  100% { opacity: 0; }
}

/* ===================================================================
   SECTION COMMONS
   =================================================================== */
section {
  padding: 6rem 0;
  position: relative;
}
.section-intro {
  margin-bottom: 3.5rem;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(230, 200, 117, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 0.9rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.6;
}
.text-center {
  text-align: center;
}
.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================================
   PINNED SCROLL-TRIGGERED SHOWCASE: THE JOURNEY
   =================================================================== */
.journey-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0c121e 50%, var(--bg-dark) 100%);
  overflow: hidden;
  padding: 5rem 0 7rem;
}
.journey-reel-container {
  width: 100%;
  position: relative;
}
.journey-track {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Individual Journey Slide */
.journey-slide {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-card);
}
.journey-slide:nth-child(even) {
  grid-template-columns: 1fr 1.25fr;
}
.journey-slide:nth-child(even) .slide-media-wrap {
  order: 2;
}
.journey-slide:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.slide-media-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.journey-slide:hover .slide-img {
  transform: scale(1.04);
}
.slide-badge-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(8, 12, 20, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.slide-content {
  display: flex;
  flex-direction: column;
}
.slide-step {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  margin-bottom: 0.6rem;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.slide-description {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.slide-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}
.slide-features li {
  font-size: 0.9rem;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.slide-features li i {
  color: var(--gold-primary);
  font-size: 0.9rem;
}
.slide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.meta-tag {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.meta-tag i {
  color: var(--cyan-primary);
}

/* ===================================================================
   SECTION 3: 33 TOWERS VS 111 VILLAS INTERACTIVE COMPARISON
   =================================================================== */
.compare-section {
  background: radial-gradient(circle at 50% 50%, #111726 0%, var(--bg-dark) 70%);
}
.compare-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.compare-tabs {
  display: inline-flex;
  background: rgba(12, 17, 28, 0.9);
  padding: 0.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  gap: 0.4rem;
}
.compare-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.compare-tab-btn:hover {
  color: #fff;
}
.compare-tab-btn.active {
  background: var(--gold-gradient);
  color: #0c101b;
  box-shadow: 0 4px 15px rgba(230, 200, 117, 0.4);
}

.compare-cards-container {
  position: relative;
  min-height: 520px;
}
.compare-card {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  animation: fadeIn 0.4s ease forwards;
}
.compare-card.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.compare-card-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}
.compare-image-side {
  position: relative;
  min-height: 480px;
}
.compare-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.compare-img-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
}
.compare-info-side {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.compare-header .eyebrow {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 0.4rem;
}
.compare-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.9rem;
}
.compare-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}
.spec-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  background: rgba(10, 15, 26, 0.6);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2rem;
}
.spec-item {
  display: flex;
  flex-direction: column;
}
.spec-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.spec-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
}
.compare-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===================================================================
   SECTION 4: AMENITIES & FACILITIES MATRIX (FILTERABLE)
   =================================================================== */
.amenities-section {
  background: var(--bg-dark);
}
.amenities-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}
.filter-pill {
  background: rgba(18, 25, 40, 0.8);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}
.filter-pill:hover {
  border-color: var(--border-gold);
  color: #fff;
  transform: translateY(-1px);
}
.filter-pill.active {
  background: var(--gold-gradient);
  color: #0c101b;
  font-weight: 700;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(230, 200, 117, 0.35);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}
.amenity-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-card);
}
.amenity-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}
.amenity-card.hidden {
  display: none !important;
}

.amenity-thumb-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.amenity-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.amenity-card:hover .amenity-thumb {
  transform: scale(1.06);
}
.amenity-cat-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
}
.amenity-status-badge {
  position: absolute;
  bottom: 0.85rem;
  right: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  backdrop-filter: blur(8px);
}
.amenity-status-badge.available {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.amenity-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.amenity-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}
.amenity-meta-row i {
  color: var(--gold-primary);
  margin-right: 0.3rem;
}
.amenity-card-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.amenity-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.amenity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.amenity-tags span {
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
}

.amenity-card-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.btn-card-action {
  flex-grow: 1;
  background: rgba(230, 200, 117, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}
.btn-card-action:hover {
  background: rgba(230, 200, 117, 0.2);
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}
.btn-card-book {
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  color: #0c101b;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}
.btn-card-book:hover {
  transform: scale(1.08);
}

/* ===================================================================
   SECTION 5: INTERACTIVE MASTER CAMPUS PLAN
   =================================================================== */
.campus-map-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1322 50%, var(--bg-dark) 100%);
}
.map-interactive-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.master-plan-stage {
  background: #060910;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  position: relative;
}
.map-blueprint {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  background: 
    radial-gradient(ellipse at 50% 50%, #152238 0%, #080c14 90%),
    linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 30px 30px, 30px 30px;
  overflow: hidden;
}
.map-grid-lines {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(230, 200, 117, 0.15);
  margin: 1.5rem;
  border-radius: var(--radius-md);
  pointer-events: none;
}

/* Map Pin Hotspots */
.map-pin-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease;
}
.map-pin-hotspot:hover,
.map-pin-hotspot.active {
  transform: translate(-50%, -50%) scale(1.18);
  z-index: 20;
}
.pin-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 0.95rem;
  box-shadow: 0 0 15px rgba(230, 200, 117, 0.4);
  position: relative;
  z-index: 2;
  transition: all 0.2s ease;
}
.map-pin-hotspot.active .pin-icon {
  background: var(--gold-gradient);
  color: #0c101b;
  box-shadow: 0 0 25px rgba(230, 200, 117, 0.8);
}
.pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(230, 200, 117, 0.2);
  animation: radarPulse 2s infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes radarPulse {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}
.pin-tooltip {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 12, 20, 0.95);
  border: 1px solid var(--border-gold);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.map-pin-hotspot:hover .pin-tooltip {
  opacity: 1;
}

/* Map HUD Legend */
.map-hud-legend {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: var(--text-secondary);
}
.hud-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hud-color {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.hud-color.towers { background: #60a5fa; box-shadow: 0 0 6px #60a5fa; }
.hud-color.villas { background: #fbbf24; box-shadow: 0 0 6px #fbbf24; }
.hud-color.pools { background: #00e5ff; box-shadow: 0 0 6px #00e5ff; }
.hud-color.green { background: #34d399; box-shadow: 0 0 6px #34d399; }

/* Hotspot Info Card */
.hotspot-info-panel {
  position: relative;
}
.hotspot-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  animation: fadeIn 0.3s ease;
}
.hotspot-card-img-wrap {
  position: relative;
  height: 220px;
}
#hotspot-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hotspot-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(8, 12, 20, 0.9);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}
.hotspot-card-content {
  padding: 1.8rem;
}
.hotspot-coords {
  font-size: 0.75rem;
  color: var(--cyan-primary);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.hotspot-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.hotspot-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.hotspot-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #e2e8f0;
}
.hotspot-features span i {
  color: var(--gold-primary);
  margin-right: 0.5rem;
}
.hotspot-footer {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ===================================================================
   SECTION 6: AMENITY BOOKING SIMULATOR & PASS
   =================================================================== */
.simulator-section {
  background: radial-gradient(circle at 50% 30%, #151c2e 0%, var(--bg-dark) 75%);
}
.simulator-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.simulator-form-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.form-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.form-header i {
  font-size: 1.3rem;
  color: var(--gold-primary);
}
.form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.form-group label i {
  color: var(--gold-primary);
}
.booking-form input,
.booking-form select,
.visit-form input,
.visit-form select {
  background: rgba(8, 12, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}
.booking-form input:focus,
.booking-form select:focus,
.visit-form input:focus,
.visit-form select:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(230, 200, 117, 0.25);
  background: rgba(12, 18, 30, 0.95);
}
.booking-form select option,
.visit-form select option {
  background: #0c121e;
  color: #fff;
}
.form-row {
  display: flex;
  gap: 1rem;
}

/* Digital Resident Pass Aesthetic */
.simulator-pass-card {
  display: flex;
  justify-content: center;
}
.pass-wrapper {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(145deg, #101828 0%, #0a0f19 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(230, 200, 117, 0.2);
  position: relative;
  transition: transform 0.3s ease;
}
.pass-wrapper:hover {
  transform: translateY(-4px);
}
.pass-ribbon {
  background: var(--gold-gradient);
  color: #0c101b;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 0.4rem;
}
.pass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px dashed rgba(230, 200, 117, 0.25);
}
.pass-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pass-logo i {
  color: var(--gold-primary);
  font-size: 1.3rem;
}
.pass-logo strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: #fff;
}
.pass-logo small {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}
.pass-status-pill {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10b981;
  color: #34d399;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.pass-content {
  padding: 1.5rem;
}
.pass-facility-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}
.pass-facility-sub {
  font-size: 0.78rem;
  color: var(--cyan-primary);
  margin-bottom: 1.25rem;
}
.pass-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1.4rem;
}
.pass-field label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.pass-field strong {
  font-size: 0.85rem;
  color: #fff;
}
.text-gold {
  color: var(--gold-primary) !important;
}

.pass-qr-section {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}
.pass-qr-box {
  width: 75px;
  height: 75px;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
}
.qr-svg {
  width: 100%;
  height: 100%;
}
.pass-barcode-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.pass-auth-code {
  font-family: monospace;
  font-size: 0.92rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  font-weight: 700;
}
.pass-barcode-wrap small {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.pass-footer-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.4;
}
.pass-footer-note i {
  color: var(--gold-primary);
  margin-top: 0.15rem;
}

/* ===================================================================
   SECTION 7: RESIDENT TESTIMONIALS
   =================================================================== */
.testimonials-section {
  background: var(--bg-dark);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-card);
}
.testimonial-card.featured {
  border-color: var(--border-gold);
  background: linear-gradient(180deg, rgba(26, 36, 56, 0.85) 0%, rgba(16, 23, 37, 0.85) 100%);
  transform: translateY(-8px);
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--gold-gradient);
  color: #0c101b;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}
.quote-icon {
  font-size: 1.8rem;
  color: var(--gold-primary);
  opacity: 0.35;
  margin-bottom: 1rem;
}
.quote-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e2e8f0;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.author-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(230, 200, 117, 0.15);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.1rem;
}
.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
}
.author-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===================================================================
   SECTION 8: SCHEDULE A VIP CAMPUS VISIT
   =================================================================== */
.contact-section {
  background: radial-gradient(circle at 50% 50%, #151c2e 0%, var(--bg-dark) 80%);
}
.contact-card-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  background: var(--bg-card);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-card-hover);
}
.contact-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.contact-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.contact-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.ch-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ch-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(230, 200, 117, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ch-item strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.15rem;
}
.ch-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.visit-form {
  background: rgba(8, 12, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.visit-form h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

/* ===================================================================
   MODAL DIALOG: AMENITY DETAIL LIGHTBOX
   =================================================================== */
.amenity-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.amenity-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 12, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.modal-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  background: #0d121f;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(230, 200, 117, 0.3);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}
.amenity-modal.open .modal-container {
  transform: scale(1);
}
.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(8, 12, 20, 0.8);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.modal-close-btn:hover {
  background: var(--gold-primary);
  color: #0c101b;
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}
.modal-gallery {
  position: relative;
  min-height: 420px;
  background: #000;
}
.modal-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal-img-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(8, 12, 20, 0.8);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}
.modal-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}
.modal-cat-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.modal-timings {
  font-size: 0.82rem;
  color: var(--cyan-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.modal-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.modal-spec-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-bottom: 2rem;
}
.modal-spec-box h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.modal-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.modal-features-list li {
  font-size: 0.85rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.modal-features-list li i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}
.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

/* Toast Notification */
.toast-notify {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10001;
  background: #0f172a;
  border: 1px solid var(--gold-primary);
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), var(--gold-glow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.toast-notify.show {
  transform: translateY(0);
  opacity: 1;
}
.toast-notify i {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.main-footer {
  background: #05080e;
  border-top: 1px solid rgba(230, 200, 117, 0.2);
  padding: 4.5rem 0 2rem;
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}
.footer-logo i {
  color: var(--gold-primary);
  font-size: 1.6rem;
}
.footer-logo strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.15em;
}
.footer-logo span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
}
.footer-about {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}
.footer-socials a:hover {
  background: var(--gold-primary);
  color: #0c101b;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}
.footer-links a i {
  font-size: 0.65rem;
  color: var(--gold-primary);
  opacity: 0.6;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.footer-contact-info p i {
  color: var(--gold-primary);
  margin-top: 0.25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-extra-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}
.footer-extra-links a:hover {
  color: var(--gold-primary);
}

/* ===================================================================
   RESPONSIVE MEDIA QUERIES
   =================================================================== */
@media (max-width: 1024px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .journey-slide,
  .journey-slide:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .journey-slide:nth-child(even) .slide-media-wrap {
    order: 1;
  }
  .compare-card-grid {
    grid-template-columns: 1fr;
  }
  .map-interactive-wrapper {
    grid-template-columns: 1fr;
  }
  .simulator-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .contact-card-wrap {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .form-row {
    flex-direction: column;
  }
  .spec-matrix {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .modal-body-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }
}
