/* ═════════════════════════════════════════════
   AMBER MOON VILLA — Premium Luxury Mountain Resort CSS
   ═════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Color Palette (Warm Luxury Mountain) ── */
  --primary: #B8860B;          /* Deep Amber / Burnt Gold */
  --primary-light: #D4A574;    /* Soft Amber / Pale Gold */
  --accent: #E8A93C;           /* Glowing Amber */
  --navy: #1A1F2E;             /* Midnight Navy */
  --bg-cream: #FAF6F0;         /* Warm Cream / Ivory base */
  --bg-dark: #0F1117;          /* Charcoal Black */
  --text-primary: #1C1C1C;     /* Deep Charcoal */
  --text-secondary: #6B5D4F;   /* Muted Brown-Grey */
  --border-champagne: #E8DCC4; /* Soft Champagne */
  --success: #2D5F3F;          /* Forest Green */
  --white: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.2);

  /* ── Typography Fonts ── */
  --font-h1: 'Playfair Display', serif;
  --font-h2: 'Playfair Display', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;

  /* ── Animation Speed & Easing ── */
  --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: clip;
}

/* ── Scroll Progress Bar ── */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 9999;
  background: transparent;
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  transition: width 0.1s linear;
}

/* ── Custom Elegant Loader ── */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}
.page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(184, 134, 11, 0.1);
  border-radius: 50%;
  border-top-color: var(--accent);
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Section Rhythm & Spacing ── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}
@media (min-width: 1024px) {
  .section {
    padding: 120px 40px;
  }
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-h2);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

h1 {
  font-family: var(--font-h1);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.15;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 64px;
  }
}

h2 {
  font-size: 28px;
  margin-bottom: 16px;
  position: relative;
}
@media (min-width: 1024px) {
  h2 {
    font-size: 48px;
    margin-bottom: 24px;
  }
}

h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
}
@media (min-width: 1024px) {
  h3, h4 {
    font-size: 28px;
  }
}

p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 65ch;
}
@media (min-width: 1024px) {
  p {
    font-size: 16px;
  }
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary);
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .section-label {
    font-size: 12px;
    margin-bottom: 16px;
  }
}

.desc {
  color: var(--text-secondary);
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .desc {
    margin-bottom: 64px;
  }
}

/* ═══════════════════════════════════════
   1. URGENCY BANNER (🎁 30% OFF)
   ═══════════════════════════════════════ */
.urgency-banner {
  min-height: 44px;
  height: auto;
  background: linear-gradient(90deg, #B8860B, #E8A93C, #B8860B);
  background-size: 200% auto;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 15px;
  position: relative;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(184, 134, 11, 0.2);
  animation: shimmer 4s linear infinite;
  text-align: center;
}
@media (min-width: 640px) {
  .urgency-banner {
    flex-direction: row;
    height: 44px;
    font-size: 12px;
    letter-spacing: 1px;
    gap: 12px;
    padding: 0 15px;
  }
}
@media (min-width: 1024px) {
  .urgency-banner {
    height: 48px;
    font-size: 13px;
  }
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.banner-timer {
  background: rgba(26, 31, 46, 0.4);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ═══════════════════════════════════════
   2. NAVBAR
   ═══════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  width: 100%;
  height: 76px;
  z-index: 1000;
  background: rgba(15, 17, 23, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 220, 196, 0.1);
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}
.nav.scrolled {
  background: #000000;
  height: 72px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1024px) {
  .nav-inner {
    padding: 0 40px;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1); /* Keeps the image path unchanged but renders a beautiful white logo */
  transition: var(--transition-fast);
}
.nav-logo:hover img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Desktop Menu Dropdowns */
.nav-dropdown {
  position: relative;
}
.drop-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}
.drop-btn:hover {
  color: var(--accent);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-dark);
  min-width: 220px;
  border: 1px solid rgba(232, 220, 196, 0.15);
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  padding: 8px 0;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.nav-dropdown:hover .dropdown-content,
.nav-dropdown.active .dropdown-content {
  display: flex;
  flex-direction: column;
  transform: translateX(-50%) translateY(0px);
  opacity: 1;
  pointer-events: auto;
}

.dropdown-content a {
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 13px !important;
  font-family: var(--font-sans);
  text-transform: none !important;
  letter-spacing: 0px !important;
  transition: var(--transition-fast);
  display: block;
}
.dropdown-content a:hover {
  background: rgba(184, 134, 11, 0.15);
  color: var(--accent) !important;
  padding-left: 24px;
}

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

.nav-phone, .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-smooth);
}

.nav-phone {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.nav-phone:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: var(--navy);
  border: none;
  box-shadow: 0 4px 15px rgba(232, 169, 60, 0.3);
  position: relative;
  overflow: hidden;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 169, 60, 0.5);
}
.cta-tag {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #E83C3C;
  color: white;
  font-size: 8px;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transform: scale(0.9);
}

/* Hamburger & Mobile Navigation */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  padding: 6px;
  z-index: 1002;
  transition: var(--transition-fast);
}
.mobile-menu-btn:hover {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: block;
  }
  
  /* Modern Full Screen Mobile Menu Overlay */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.5s;
    padding: 80px 40px;
    overflow-y: auto;
  }
  .nav-links.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }
  .drop-btn {
    justify-content: center;
    font-size: 18px;
  }
  .dropdown-content {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 8px;
    display: none;
  }
  .nav-dropdown.active .dropdown-content {
    display: flex;
  }
  .nav-contact-actions {
    flex-direction: column;
    width: 100%;
    gap: 16px;
    margin-top: 24px;
  }
  .nav-phone, .nav-cta {
    width: 100%;
  }
}

/* ═══════════════════════════════════════
   3. HERO SECTION (Cinematic Video Fullscreen)
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-dark);
  padding: 100px 16px 80px 16px;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  animation: kenBurns 30s ease infinite;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15,17,23,0.3) 0%, rgba(15,17,23,0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Glassmorphism content container */
  background: rgba(26, 31, 46, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 16px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .hero-content {
    padding: 48px 50px;
  }
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  font-size: 32px;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 48px;
    margin-bottom: 12px;
  }
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 64px;
  }
}

.hero-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hp-old {
  font-family: var(--font-sans);
  font-size: 15px;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
}
.hp-new {
  font-family: var(--font-h1);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: flex;
  align-items: baseline;
}
@media (min-width: 768px) {
  .hp-new {
    font-size: 44px;
  }
}
.hp-new span {
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 2px;
}
.hp-badge {
  background: var(--accent);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(232, 169, 60, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(232, 169, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 169, 60, 0); }
}

.hero-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-features span {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 12px;
  color: var(--white);
  font-weight: 500;
  transition: var(--transition-fast);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .hero-features {
    gap: 12px;
  }
  .hero-features span {
    padding: 6px 14px;
    font-size: 13px;
  }
}

.hero-loc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-bottom: 24px;
}
.hero-loc strong {
  color: var(--accent);
}

.hero-form {
  width: 100%;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-form input {
  width: 100%;
  height: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: var(--transition-fast);
}
.hero-form input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(232, 169, 60, 0.2);
}
.hero-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-top: 16px;
  flex-direction: column;
}
@media (min-width: 480px) {
  .hero-ctas {
    flex-direction: row;
  }
  .hero-ctas button {
    flex: 1;
  }
}

.hero-ctas button {
  height: 52px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-smooth);
}

.btn-green {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: var(--navy);
  border: none;
  box-shadow: 0 4px 15px rgba(232, 169, 60, 0.3);
  position: relative;
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 169, 60, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border-champagne);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(184, 134, 11, 0.05);
  transform: translateY(-2px);
}

/* Scoped outline button styling inside dark cinematic sections */
.hero .btn-outline,
.final-cta .btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.hero .btn-outline:hover,
.final-cta .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-scroll-indicator svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
  animation: bounceDown 2s infinite;
}
@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* ═══════════════════════════════════════
   4. TRUST BADGES ROW
   ═══════════════════════════════════════ */
.trust-bar {
  background: var(--bg-cream);
  padding: 32px 16px;
  border-bottom: 1px solid var(--border-champagne);
}
.trust-bar .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .trust-bar {
    padding: 40px 20px;
  }
  .trust-bar .inner {
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .trust-bar .inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0 20px;
  }
}
.trust-bar .item {
  background: var(--white);
  border: 1px solid var(--border-champagne);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(184, 134, 11, 0.04);
  transition: var(--transition-smooth);
}
@media (min-width: 1024px) {
  .trust-bar .item {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 12px;
    justify-content: center;
  }
}
.trust-bar .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.08);
  border-color: var(--primary);
}
.trust-icon {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .trust-icon {
    font-size: 32px;
  }
}
.trust-text {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.35;
}
@media (min-width: 1024px) {
  .trust-text {
    font-size: 13px;
  }
}
.trust-text strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
}
@media (min-width: 1024px) {
  .trust-text strong {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    display: inline;
  }
}

/* ═══════════════════════════════════════
   5. GALLERY ("Step Inside Amber Moon")
   ═══════════════════════════════════════ */
.gallery-section {
  background: var(--bg-cream);
}

/* Horizontal swipeable snap scroll for Mobile */
.gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: none; /* Hide standard scrollbar */
}
.gallery::-webkit-scrollbar {
  display: none;
}
.gi {
  flex: 0 0 85%;
  scroll-snap-align: center;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  aspect-ratio: 4/3;
}
.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

/* Desktop Asymmetric Masonry Mosaic Grid */
@media (min-width: 1024px) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 24px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }
  
  /* 1 Large hero image + 4 small image mosaic */
  .gi:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    aspect-ratio: auto;
  }
  .gi:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    aspect-ratio: auto;
  }
  .gi:nth-child(3) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
    aspect-ratio: auto;
  }
  .gi:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    aspect-ratio: auto;
  }
  .gi:nth-child(5) {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
    aspect-ratio: auto;
  }
  .gi {
    flex: none;
    scroll-snap-align: none;
  }
}

.gi:hover img {
  transform: scale(1.05);
}

/* Overlay dark hover reveal with caption */
.gi::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: var(--transition-fast);
}
.gi:hover::after {
  opacity: 1;
}

/* GLightbox trigger style */
.gi a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

/* View All Photos Overlay for Last Image */
.gi-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 17, 23, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition-fast);
}
.gi:hover .gi-overlay {
  background: rgba(15, 17, 23, 0.55);
}

/* Snap Scroll Dot indicators below Mobile Gallery */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .gallery-dots {
    display: none;
  }
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-champagne);
  transition: var(--transition-fast);
}
.gallery-dot.active {
  background: var(--primary);
  transform: scale(1.25);
}

/* ═══════════════════════════════════════
   6. EXPERIENCE CARDS
   ═══════════════════════════════════════ */
.highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.h-card {
  background: var(--white);
  border: 1px solid var(--border-champagne);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
  position: relative;
}
.h-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}
.h-card:hover::before {
  transform: scaleX(1);
}
.h-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(184, 134, 11, 0.08);
  border-color: var(--primary-light);
}

.h-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.h-card:hover img {
  transform: scale(1.03);
}

.h-card .info {
  padding: 24px;
}
.h-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.h-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   7. WHY AMBER MOON (Outlined Numbers)
   ═══════════════════════════════════════ */
.dark-section {
  background-color: var(--bg-dark);
  color: var(--bg-cream);
}
.dark-section h2, .dark-section h4 {
  color: var(--white);
}
.dark-section p {
  color: rgba(250, 246, 240, 0.8);
}

.why-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

.why-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(232, 220, 196, 0.15);
}
@media (min-width: 640px) {
  .why-card {
    flex-direction: row;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .why-card {
    border-bottom: none;
    padding-bottom: 0;
  }
  /* Decorative separator lines between grids on desktop */
  .why-card:nth-child(odd) {
    border-right: 1px solid rgba(232, 220, 196, 0.15);
    padding-right: 48px;
  }
}

.why-card .num {
  font-family: var(--font-h1);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent); /* Hollow outline effect */
  opacity: 0.85;
}

.why-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.why-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--accent) !important;
}
.why-card p {
  font-size: 14px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   8. AMENITIES GRID (12 Items)
   ═══════════════════════════════════════ */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .amenity-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.amenity-item {
  background: var(--white);
  border: 1px solid var(--border-champagne);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 550;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: var(--transition-fast);
}
.amenity-item:hover {
  border-color: var(--primary);
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(184, 134, 11, 0.06);
}
.amenity-item .icon {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  width: 32px;
}

/* ═══════════════════════════════════════
   9. PRICING SECTION
   ═══════════════════════════════════════ */
.pricing-section {
  background: var(--bg-cream);
}
.pricing-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--primary-light);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 16px 48px rgba(184, 134, 11, 0.06);
  position: relative;
}
@media (min-width: 768px) {
  .pricing-card {
    padding: 48px;
  }
}

.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--primary);
  text-align: center;
  margin-bottom: 32px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-champagne);
  font-family: var(--font-sans);
  flex-wrap: wrap;
  gap: 12px;
}
.price-row:nth-child(even) {
  background: rgba(250, 246, 240, 0.4);
}
.price-row .label {
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}
.price-row .val {
  font-family: var(--font-h2);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}
.price-row .val .old-price {
  font-size: 14px;
  font-family: var(--font-sans);
  text-decoration: line-through;
  color: var(--text-secondary);
  margin-right: 8px;
  font-weight: 400;
}

/* Inclusions & Extras split layout */
.pricing-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .pricing-details {
    grid-template-columns: 1fr 1fr;
  }
}

.included {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.included h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  border-bottom: 2px solid var(--border-champagne);
  padding-bottom: 8px;
}
.included ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.included li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.included li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
  font-size: 14px;
}
.included.extras li::before {
  content: '₹';
  color: var(--primary);
  font-weight: bold;
}

/* ═══════════════════════════════════════
   10. LOCATION ("How to Reach")
   ═══════════════════════════════════════ */
.loc-section {
  background: #F5EDD9; /* Soft Champagne container background */
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .loc-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
}

.dist-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dist-item {
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.02);
  transition: var(--transition-fast);
}
.dist-item:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.06);
}
.dist-item .place {
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
}
.dist-item .dist {
  font-size: 13px;
  color: var(--primary);
  font-weight: 550;
}

/* Timeline component for Nearby Attractions */
.nearby-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 24px;
  margin-top: 16px;
}
.nearby-timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 6px;
  bottom: 8px;
  width: 2px;
  background: var(--border-champagne);
}
.timeline-item {
  position: relative;
  padding-bottom: 16px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2);
}
.timeline-item:last-child {
  padding-bottom: 0;
}

.map-box {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-champagne);
}
.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
}

/* ═══════════════════════════════════════
   11. REVIEWS SECTION
   ═══════════════════════════════════════ */
.review-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px 4px 24px 4px;
  scrollbar-width: none;
}
.review-cards::-webkit-scrollbar {
  display: none;
}
.review-card {
  flex: 0 0 88%;
  scroll-snap-align: center;
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(232, 220, 196, 0.4);
  position: relative;
  transition: var(--transition-smooth);
}
@media (min-width: 640px) {
  .review-card {
    flex: 0 0 46%;
  }
}
@media (min-width: 1024px) {
  /* Desktop 3-Column Masonry Grid */
  .review-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    gap: 24px;
    padding: 0;
  }
  .review-card {
    flex: none;
    scroll-snap-align: none;
  }
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(184, 134, 11, 0.08);
  border-color: var(--primary-light);
}

.review-card .stars {
  color: var(--accent);
  font-size: 15px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

/* Translucent Large Quote Mark */
.review-card::after {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: var(--font-h1);
  font-size: 84px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.1;
  pointer-events: none;
}

.review-card .text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.review-card .author {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
}

.review-card .from {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* Peek horizontal scroll mechanics for Mobile reviews */
.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
@media (min-width: 1024px) {
  .review-dots {
    display: none;
  }
}
.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-champagne);
  transition: var(--transition-fast);
}
.review-dot.active {
  background: var(--primary);
  transform: scale(1.25);
}

/* ═══════════════════════════════════════
   12. FAQs SECTION
   ═══════════════════════════════════════ */
.faq-container {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-champagne);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-q {
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: var(--transition-fast);
}
.faq-q::after {
  content: '+';
  font-size: 20px;
  color: var(--primary);
  font-weight: 400;
  transition: transform 0.4s ease, color 0.4s ease;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Active FAQ Item state */
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.05);
}
.faq-item.open .faq-q {
  color: var(--primary);
}
.faq-item.open .faq-q::after {
  content: '×';
  transform: rotate(90deg);
  color: var(--accent);
}
.faq-item.open .faq-a {
  max-height: 160px; /* Allow expansion */
  padding-bottom: 20px;
}

/* ═══════════════════════════════════════
   13. SISTER PROPERTY CARD
   ═══════════════════════════════════════ */
.cross-sell {
  background: var(--white);
  border: 1px solid var(--border-champagne);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .cross-sell {
    flex-direction: row;
    align-items: stretch;
  }
  .cross-sell > img {
    width: 50% !important;
    max-height: none !important;
    object-fit: cover;
  }
  .cross-sell > div {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px !important;
  }
}
.cross-sell img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.cross-sell:hover img {
  transform: scale(1.02);
}
.cross-sell > div {
  padding: 24px;
}

/* ═══════════════════════════════════════
   14. FINAL CTA ("Book Amber Moon Villa")
   ═══════════════════════════════════════ */
.final-cta {
  position: relative;
  background: linear-gradient(rgba(15, 17, 23, 0.8), rgba(15, 17, 23, 0.85)), url('assets/amber_moon_images/Untitled-design-2025-11-06T110355.998.png') no-repeat center center;
  background-size: cover;
  background-attachment: scroll; /* Fallback for iOS */
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .final-cta {
    background-attachment: fixed; /* Elegant desktop parallax element */
    padding: 120px 40px;
  }
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.final-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .old-price {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 14px;
  margin-right: 4px;
}
.discount-badge {
  background: var(--accent);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 6px;
  display: inline-block;
}

.final-cta .ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 480px;
}
@media (min-width: 640px) {
  .final-cta .ctas {
    flex-direction: row;
    max-width: 680px;
  }
  .final-cta .ctas a {
    flex: 1;
  }
}

.final-cta .ctas a {
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-smooth);
}
@media (min-width: 1024px) {
  .final-cta .ctas a {
    height: 60px;
  }
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: var(--navy);
  border: none;
  box-shadow: 0 4px 15px rgba(232, 169, 60, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 169, 60, 0.5);
}

/* ═══════════════════════════════════════
   15. FOOTER
   ═══════════════════════════════════════ */
footer {
  background: var(--bg-dark);
  color: rgba(250, 246, 240, 0.7);
  padding: 64px 20px 48px 20px;
  text-align: center;
  border-top: 1px solid rgba(232, 220, 196, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
footer strong {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--white);
  letter-spacing: 1px;
}
footer p {
  color: rgba(250, 246, 240, 0.6);
  font-size: 14px;
}
footer a {
  color: var(--white);
  transition: var(--transition-fast);
}
footer a:hover {
  color: var(--accent);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.footer-links a {
  font-family: var(--font-sans);
  font-weight: 550;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-links a:hover {
  color: var(--accent);
}

/* ═══════════════════════════════════════
   STICKY BOTTOM CTA BAR (MOBILE)
   ═══════════════════════════════════════ */
.sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(15, 17, 23, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(232, 220, 196, 0.15);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.sticky-bottom.visible {
  transform: translateY(0);
}
@media (min-width: 1024px) {
  .sticky-bottom {
    display: none !important;
  }
}

.s-price {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
}
.s-price .old-price {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  margin-right: 6px;
  font-weight: 400;
}

.s-btn {
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: var(--navy);
  padding: 0 24px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(232, 169, 60, 0.3);
}

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 84px; /* Sits nicely above the sticky bottom bar */
  right: 20px;
  z-index: 997;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}
.wa-float:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}
.wa-float-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  z-index: -1;
  animation: pulseFloat 2s infinite;
}
@keyframes pulseFloat {
  to { transform: scale(1.4); opacity: 0; }
}

/* ═══════════════════════════════════════
   SCROLL REVEAL (AOS-style integration)
   ═══════════════════════════════════════ */
.why-card, .amenity-item, .review-card, .h-card, .prop-card, .dist-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.why-card.visible, .amenity-item.visible, .review-card.visible, .h-card.visible, .prop-card.visible, .dist-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   PREMIUM MOBILE RESPONSIVENESS OVERRIDES
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Compact & Elegant Form Sizing */
  .hero-form {
    max-width: 440px;
    margin: 0 auto;
  }
  .hero-content {
    padding: 24px 16px;
  }
  .form-row {
    gap: 8px;
    margin-bottom: 8px;
  }
  .hero-form input {
    height: 42px;
    font-size: 13px;
    padding: 0 14px;
  }
  .hero-ctas {
    margin-top: 12px !important;
    gap: 8px;
  }
  .hero-ctas button {
    height: 44px;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .hero-ctas button .cta-tag {
    top: -6px;
    right: -2px;
    font-size: 7px;
  }
  
  /* Spacing Adjustments */
  .section {
    padding: 56px 16px;
  }
  
  /* Trust Bar Adjustments */
  .trust-bar {
    padding: 24px 12px;
  }
  .trust-bar .item {
    padding: 12px 10px;
    gap: 8px;
  }
  .trust-icon {
    font-size: 20px;
  }
  .trust-text strong {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  /* Typography Scaling to prevent awkward wrapping */
  h1 {
    font-size: 28px !important;
  }
  h2 {
    font-size: 22px !important;
    margin-bottom: 12px;
  }
  h3, h4 {
    font-size: 18px !important;
  }
  .desc {
    margin-bottom: 32px;
    font-size: 14px;
  }
  
  /* Hollow why-card numbers */
  .why-card .num {
    font-size: 56px;
  }
  
  /* Pricing Table Mobile Polish */
  .pricing-card {
    padding: 24px 16px;
    border-width: 1px;
  }
  .pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .price-row {
    padding: 10px 0;
    gap: 6px;
  }
  .price-row .label {
    font-size: 13px;
  }
  .price-row .val {
    font-size: 16px;
  }
  .price-row .val .old-price {
    font-size: 12px;
    margin-right: 4px;
  }
  
  /* Sticky Bottom floating bar mobile scaling */
  .sticky-bottom {
    padding: 8px 16px;
  }
  .s-price {
    font-size: 18px;
  }
  .s-btn {
    height: 40px;
    padding: 0 16px;
    font-size: 11px;
  }
}

/* ═══════════════════════════════════════
   PREMIUM IMPROVEMENTS & CUSTOM CUSTOM OVERRIDES
   ═══════════════════════════════════════ */

/* 1. ANIMATED HAMBURGER MENU */
.mobile-menu-btn {
  display: none;
  position: relative;
  width: 24px;
  height: 16px;
  background: none !important;
  border: none !important;
  cursor: pointer;
  z-index: 10000; /* Placed above drawer for direct overlay interaction */
  flex-direction: column;
  justify-content: space-between;
  padding: 0 !important;
  box-shadow: none !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.35s ease-in-out;
}
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: flex !important;
  }
}

/* 2. DRAWER BACKDROP OVERLAY & DRAWER ANIMATION */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* 3. SECTION LABELS SIZING */
.section-label {
  font-size: 12px !important;
  letter-spacing: 4px !important;
}

/* 4. BODY TEXT LINE HEIGHT STANDARD */
body {
  line-height: 1.75 !important;
}

/* 5. FORM FIELDS POLISH & DATEPICKER */
.hero-form input {
  height: 52px !important;
}
.date-input-wrapper {
  position: relative;
  width: 100%;
}
.date-input-wrapper input {
  padding-right: 44px !important;
}
.calendar-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 16px;
  opacity: 0.7;
}
.booking-trust-signal {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  letter-spacing: 0.5px;
  text-align: center;
}

/* 6. FLATPICKR DARK THEME CUSTOMIZATION */
.flatpickr-calendar {
  background: var(--navy) !important;
  border: 1px solid var(--border-champagne) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
  font-family: var(--font-sans) !important;
}
.flatpickr-day {
  color: var(--white) !important;
}
.flatpickr-day.today {
  border-color: var(--primary) !important;
}
.flatpickr-day.selected, .flatpickr-day.selected:hover {
  background: var(--primary) !important;
  color: var(--navy) !important;
}
.flatpickr-months .flatpickr-month, .flatpickr-weekdays, span.flatpickr-weekday {
  color: var(--white) !important;
  fill: var(--white) !important;
}

/* 7. PULSING ANIMATION keyframes */
.animate-pulse {
  animation: ctaPulse 3s ease-in-out infinite !important;
}
@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(232, 169, 60, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 25px rgba(232, 169, 60, 0.55);
    transform: scale(1.02);
  }
}

/* 8. TRUST BAR 5TH ITEM & FONT SIZING */
.trust-bar .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
}
.trust-text {
  font-family: var(--font-sans) !important;
}
.trust-text strong {
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  color: #1A1F2E !important; /* Audited: hex-navy fallback for perfect visibility */
}

/* Fix: Allow absolute badges to overlay without clipping across all button variations */
.nav-cta, .s-btn, .btn-green, .btn-gold, .hero-ctas button, .ctas-grid a, .sticky-bottom a {
  overflow: visible !important;
}

/* 9. AMENITIES HOVER */
.amenity-item {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.amenity-item:hover {
  transform: scale(1.02) !important;
  background: rgba(184, 134, 11, 0.08) !important;
  border-color: var(--primary) !important;
}

/* 10. PRICING STACKED STYLE & BADGES */
.price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.price-block .old-price {
  font-size: 13px !important;
  text-decoration: line-through;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-bottom: 2px;
}
.price-block .new-price {
  font-size: 20px !important;
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  color: var(--accent);
  display: flex;
  align-items: baseline;
  font-feature-settings: "tnum";
}
.night-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 2px;
}
.pop-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.price-row.popular-row {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  background: rgba(232, 169, 60, 0.03);
}

/* 11. FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 997;
  transition: all 0.3s ease;
  animation: floatPulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}
.whatsapp-icon {
  width: 30px;
  height: 30px;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7); }
}

/* 14. STICKY BOTTOM CLOSE BUTTON */
.sticky-close {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  background: none !important;
  border: none !important;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 4px !important;
}
.sticky-close:hover {
  opacity: 1;
}
.sticky-bottom.visible {
  display: flex !important;
}
.sticky-bottom {
  padding-left: 36px !important; /* Space for close btn */
  align-items: center;
  justify-content: space-between;
}
.s-info {
  display: flex;
  flex-direction: column;
}
.s-urgency {
  font-size: 10px;
  color: #FFA500;
  font-weight: 600;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.s-price .per-night {
  font-size: 10px;
  opacity: 0.7;
}

/* 15. FINAL CTA BUTTON SPLITS */
.final-price-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.final-price-wrapper .old-price {
  font-size: 16px;
  text-decoration: line-through;
  color: rgba(255,255,255,0.4);
}
.final-price-wrapper .new-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}
.final-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.ctas-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.full-width-cta {
  width: 100% !important;
  text-align: center;
}
.secondary-ctas-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}
.secondary-ctas-row a {
  width: 100% !important;
  justify-content: center;
}

/* 16. SPINNER FEEDBACK STATE FOR SUBMISSIONS */
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(26, 31, 46, 0.2);
  border-radius: 50%;
  border-top-color: var(--navy);
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

/* 17. PREFERS REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .hero-bg, .wa-float, .whatsapp-float, .animate-pulse, .hero-scroll-indicator svg {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* 18. UNICODE QUOTES IN REVIEWS AND OVERRIDES */
.review-card::before {
  content: "\201C" !important;
}
.review-card::after {
  content: "\201D" !important;
}

/* ═══════════════════════════════════════
   PREMIUM MOBILE AUDIT OVERRIDES (≤ 768px)
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* 1. Navigation Menu Overlay (FULL VIEWPORT COVERAGE) */
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    z-index: 9999 !important;
    background: #0f1117 !important; /* solid deep luxury black */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 60px 40px !important;
    border-left: none !important;
    box-shadow: none !important;
    transform: translateX(100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease-in-out, visibility 0.4s !important;
    overflow-y: auto !important;
  }
  .nav-links.show {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .nav-links .nav-dropdown {
    width: 100% !important;
    text-align: center !important;
  }
  .nav-links .drop-btn {
    justify-content: center !important;
    font-size: 18px !important;
    color: var(--white) !important;
    padding: 8px 0 !important;
  }
  .nav-links .dropdown-content {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-top: 4px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: none !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .nav-dropdown.active .dropdown-content {
    display: flex !important;
  }
  .nav-links .dropdown-content a {
    text-align: center !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 8px 16px !important;
    width: 100% !important;
  }
  .nav-links .dropdown-content a:hover {
    padding-left: 16px !important;
    background: rgba(184, 134, 11, 0.2) !important; /* Rich amber gold fallback overlay */
    color: var(--accent) !important;
  }
  .nav-links .nav-contact-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
    margin-top: 20px !important;
  }
  .nav-links .nav-phone, 
  .nav-links .nav-cta {
    width: 100% !important;
    max-width: 280px !important;
    height: 48px !important;
    margin: 0 auto !important;
    display: inline-flex !important;
  }
  .mobile-close-btn {
    display: block !important;
    position: absolute !important;
    top: 24px !important;
    right: 24px !important;
    background: none !important;
    border: none !important;
    color: var(--white) !important;
    font-family: var(--font-sans);
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    cursor: pointer !important;
    z-index: 10000 !important;
  }
  .nav-overlay {
    z-index: 9998 !important;
    background: rgba(0, 0, 0, 0.7) !important;
  }

  /* 2. Hero Booking Form Stacked Layout */
  .hero-form {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .form-row {
    grid-template-columns: 1fr !important; /* Stack inputs */
    gap: 12px !important;
    margin-bottom: 12px !important;
    width: 100% !important;
  }
  .hero-form input {
    width: 100% !important;
    height: 52px !important;
    padding: 0 16px !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
  }

  /* 3. Hero CTA Buttons Stacked Vertically & Full Width */
  .hero-ctas {
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 16px !important;
    width: 100% !important;
  }
  .hero-ctas button, 
  .hero-ctas a, 
  .hero-ctas .btn-green, 
  .hero-ctas .btn-outline {
    width: 100% !important;
    max-width: 100% !important;
    height: 52px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
  }

  /* 4. Wrapped Price Display (No overflow) */
  .hero-pricing {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px 12px !important;
    margin-bottom: 16px !important;
    width: 100% !important;
  }

  /* 5. Wrapped Feature Icons Row */
  .hero-features {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-bottom: 24px !important;
    width: 100% !important;
  }
  .hero-features span {
    white-space: nowrap !important;
  }

  /* 6. Gallery Stacked Single Column */
  .gallery {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    padding-bottom: 0 !important;
  }
  .gi {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
  }
  .gi img {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
  }
  .gallery-line-indicator, 
  .gallery-dots, 
  .swipe-hint, 
  #swipe-hint-el {
    display: none !important;
  }

  /* 7. Max 2 Columns Amenities Grid */
  .amenity-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  @media (max-width: 360px) {
    .amenity-grid {
      grid-template-columns: 1fr !important;
    }
  }

  /* 8. Zero Scroll Overflow Safeguard & Body Padding Lock */
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  body {
    padding-bottom: 80px !important;
  }
  
  /* 9. Urgency Offer Banner Wrap */
  .urgency-banner {
    flex-direction: column !important;
    height: auto !important;
    padding: 8px 12px !important;
    gap: 6px !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    text-align: center !important;
  }
  .banner-timer {
    display: inline-flex !important;
    padding: 2px 8px !important;
    font-size: 10px !important;
  }

  /* 10. Sticky Bottom Bar Scaling */
  .sticky-bottom {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    z-index: 998 !important; /* Stays beneath overlay drawer */
    background: rgba(15, 17, 23, 0.96) !important;
    border-top: 1px solid rgba(232, 220, 196, 0.15) !important;
    padding: 10px 16px !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2) !important;
  }
}



