/* ===================================================
   SATTVA LAGO — Main Stylesheet
   Design: Ultra-luxury, navy/gold, Cormorant Garamond
   =================================================== */

/* ---- CSS Variables ---- */
:root {
  --navy: #0a1628;
  --navy-mid: #0f2040;
  --gold: #c9a84c;
  --gold-light: #e8c87a;
  --gold-pale: #f5e9c8;
  --cream: #faf8f3;
  --white: #ffffff;
  --text-dark: #1a2a3a;
  --text-mid: #4a5568;
  --text-light: #8a9ab0;
  --border: rgba(201, 168, 76, 0.25);
  --shadow: 0 4px 40px rgba(10, 22, 40, 0.15);
  --shadow-lg: 0 12px 60px rgba(10, 22, 40, 0.25);
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
em { font-style: italic; color: var(--gold); }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid var(--gold);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-ghost {
  display: inline-block;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- Section Labels ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 20px;
  color: var(--navy);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 720px;
  margin-bottom: 56px;
  line-height: 1.8;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--white);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}

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

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 11px 24px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgba(10, 22, 40, 0.98);
  padding: 20px 24px 30px;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.80) 0%,
    rgba(10,22,40,0.55) 50%,
    rgba(10,22,40,0.30) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}

.hero-headline {
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s ease forwards;
}

.hero-headline em {
  display: block;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s ease forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1s ease forwards;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s 1.5s ease forwards;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.8), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-band {
  background: var(--gold);
  overflow: hidden;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ============================================
   OVERVIEW
   ============================================ */
.overview-section {
  background: var(--cream);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.overview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}

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

.ov-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.overview-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 14px;
  font-family: var(--font-display);
}

.overview-card li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.overview-card li:last-child { border: none; }
.overview-card strong { color: var(--navy); }

/* ============================================
   INLINE CTA
   ============================================ */
.inline-cta {
  background: var(--navy);
  padding: 48px 0;
}

.inline-cta-alt {
  background: linear-gradient(135deg, #0f2040 0%, #1a3060 100%);
}

.inline-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.inline-cta-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.inline-cta-text h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 400;
}

.btn-cta-inline {
  flex-shrink: 0;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  background: var(--navy);
  padding-bottom: 0;
}

.gallery-section .section-label,
.gallery-section .section-title {
  padding: 0 0 0 max(24px, calc((100vw - 1200px) / 2));
  color: var(--white);
}

.gallery-section .section-title em { color: var(--gold-light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.gallery-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px 14px;
  background: linear-gradient(transparent, rgba(10,22,40,0.85));
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold-pale);
  text-transform: uppercase;
  font-family: var(--font-body);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* Placeholder for missing images */
.gallery-item img[src=""], .gallery-item img:not([src]) {
  background: var(--navy-mid);
}

/* ============================================
   PRESENTATION
   ============================================ */
.presentation-section {
  background: var(--navy-mid);
  padding-top: 80px;
}

.presentation-section .section-label { color: var(--gold); }
.presentation-section .section-title { color: var(--white); }
.presentation-section .section-title em { color: var(--gold-light); }
.presentation-section .section-intro { color: rgba(255,255,255,0.7); }

.presentation-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.presentation-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  background: var(--navy);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  border: 1px solid var(--border);
}

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

.presentation-thumb:hover img { transform: scale(1.03); }

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10,22,40,0.55);
  transition: background 0.3s ease;
}

.presentation-thumb:hover .play-overlay {
  background: rgba(10,22,40,0.65);
}

.play-btn {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.presentation-thumb:hover .play-btn { transform: scale(1.1); }

.play-label {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.play-sub {
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  margin-top: 8px;
  text-transform: uppercase;
}

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

.amenity-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  background: var(--cream);
  padding: 4px;
  border-radius: var(--radius);
  width: fit-content;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 10px 24px;
  border-radius: 2px;
  color: var(--text-mid);
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--navy);
  color: var(--gold);
}

.tab-btn:hover:not(.active) {
  background: rgba(10,22,40,0.08);
  color: var(--navy);
}

.amenity-content {
  display: none;
}

.amenity-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
  font-size: 0.9rem;
  color: var(--text-mid);
}

.amenity-item:hover {
  border-color: var(--gold);
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.am-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ============================================
   LOCATION
   ============================================ */
.location-section {
  background: var(--cream);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.loc-group {
  margin-bottom: 32px;
}

.loc-group h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.loc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
  color: var(--text-mid);
}

.loc-time {
  font-weight: 600;
  color: var(--gold);
  min-width: 52px;
  font-size: 0.85rem;
}

/* ============================================
   LEGACY (DEVELOPER)
   ============================================ */
.legacy-section {
  background: var(--navy);
}

.legacy-section .section-label { color: var(--gold); }
.legacy-section .section-title { color: var(--white); }
.legacy-section .section-title em { color: var(--gold-light); }

.legacy-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}

.legacy-text p {
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.legacy-text strong { color: var(--gold-light); }

.legacy-list {
  margin-top: 24px;
}

.legacy-list li {
  color: rgba(255,255,255,0.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legacy-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
}

.legacy-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.legacy-stat {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.ls-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.ls-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  background: var(--cream);
}

.faq-list {
  max-width: 860px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  padding: 24px 48px 24px 0;
  position: relative;
  transition: color 0.2s ease;
}

.faq-q:hover { color: var(--gold); }

.faq-q::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-q[aria-expanded="true"]::after {
  content: '−';
}

.faq-a {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-a.open {
  max-height: 400px;
  padding-bottom: 24px;
}

/* ============================================
   ENQUIRE FORM
   ============================================ */
.enquire-section {
  background: var(--white);
}

.form-container {
  max-width: 780px;
}

.enquire-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid rgba(10,22,40,0.15);
  border-radius: var(--radius);
  padding: 13px 16px;
  transition: border-color 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-group input.invalid,
.form-group select.invalid {
  border-color: #e53e3e;
}

.form-group textarea { resize: vertical; }

.btn-form-submit {
  width: 100%;
  padding: 18px;
  font-size: 0.9rem;
  margin-top: 8px;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 14px;
}

.form-error {
  color: #e53e3e;
  font-size: 0.85rem;
  margin-top: 12px;
  padding: 12px;
  background: #fff5f5;
  border-radius: var(--radius);
  border: 1px solid #feb2b2;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 320px;
}

.footer-disc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  max-width: 340px;
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}

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

.footer-contact p {
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.footer-phone {
  display: block;
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-phone:hover { color: var(--white); }

.footer-email {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  transition: color 0.2s ease;
}

.footer-email:hover { color: var(--gold); }

.footer-address {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
}

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

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.whatsapp-float:hover {
  background: #1ebe5c;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
  border-right: none;
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 22, 40, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.modal-box {
  position: relative;
  background: var(--white);
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 1.2rem;
  z-index: 1;
  transition: color 0.2s ease;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
}

.modal-close:hover { color: var(--navy); background: rgba(0,0,0,0.1); }

/* Video Modal */
.modal-video {
  max-width: 900px;
  background: var(--navy);
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.modal-gate-note {
  padding: 20px 28px 4px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

.modal-video .btn-primary {
  margin: 12px 28px 24px;
  display: block;
  text-align: center;
}

/* Popup Modal */
.modal-popup {
  padding: 48px 40px 40px;
  background: var(--navy);
  text-align: center;
}

.popup-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.popup-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.popup-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  margin: 0 auto 16px;
}

.popup-form input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease;
}

.popup-form input::placeholder { color: rgba(255,255,255,0.4); }
.popup-form input:focus { border-color: var(--gold); }

.btn-popup-submit {
  padding: 16px;
  font-size: 0.88rem;
  margin-top: 4px;
}

.popup-disc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.4; height: 24px; }
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .legacy-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 8px; }
  .stat { padding: 0 16px; }
  .stat-num { font-size: 1.8rem; }
  .location-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tall { grid-row: span 1; aspect-ratio: 4/3; }
  .gallery-wide { grid-column: span 2; }
  .inline-cta-inner { flex-direction: column; text-align: center; }
  .nav-cta { display: none; }
  .enquire-form { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .modal-popup { padding: 40px 24px 32px; }
  .legacy-numbers { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: span 1; }
  .gallery-tall { grid-row: span 1; }
  .amenity-tabs { width: 100%; }
  .tab-btn { flex: 1; text-align: center; padding: 10px 12px; font-size: 0.72rem; }
  .overview-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
