/* ============================================================
   HOTEL KRISHNA INTERNATIONAL – Premium UI Redesign
   Design: Deep Navy + Champagne Gold | Glassmorphism + Parallax
   Libraries: Swiper.js | AOS | Font Awesome 6
   ============================================================ */

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

/* ─────────────────────────────────────────────────────────────
   CSS DESIGN TOKENS
───────────────────────────────────────────────────────────── */
:root {
  /* Core Colors */
  --navy-deep: #060D1F;
  --navy-dark: #0B1630;
  --navy: #0D1B3E;
  --navy-mid: #132248;
  --navy-light: #1C3163;

  /* Gold Palette */
  --gold-pale: #F5E6C8;
  --gold-light: #E8CC8A;
  --gold: #C8A75D;
  --gold-mid: #B8943F;
  --gold-dark: #9A7A2E;

  /* Neutral */
  --white: #FFFFFF;
  --off-white: #FAF8F4;
  --cream: #F5F0E8;
  --light: #EDE8DF;
  --gray-100: #F0ECE4;
  --gray-200: #D8D0C0;
  --gray-400: #A09680;
  --gray-600: #6B6055;
  --gray-800: #3A3530;
  --text: #2A2520;
  --text-mid: #5A5248;
  --text-light: #8A8278;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Poppins', sans-serif;

  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-dark: rgba(6, 13, 31, 0.7);
  --glass-gold: rgba(200, 167, 93, 0.15);

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #C8A75D 0%, #E8CC8A 50%, #C8A75D 100%);
  --grad-navy: linear-gradient(135deg, #060D1F 0%, #0D1B3E 50%, #132248 100%);
  --grad-hero: linear-gradient(180deg, rgba(6, 13, 31, 0.3) 0%, rgba(6, 13, 31, 0.6) 60%, rgba(6, 13, 31, 0.85) 100%);
  --grad-card: linear-gradient(180deg, transparent 30%, rgba(6, 13, 31, 0.95) 100%);

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 8px 40px rgba(200, 167, 93, 0.30);
  --shadow-gold-lg: 0 20px 60px rgba(200, 167, 93, 0.20);
  --shadow-navy: 0 20px 60px rgba(6, 13, 31, 0.40);

  /* Border Radius */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;
  --r-full: 9999px;

  /* Transitions */
  --t-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --t-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container: 1240px;
  --nav-h: 84px;
  --section-pad: 110px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.75;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

input,
select,
textarea {
  font-family: var(--font-body);
  outline: none;
}

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

/* ─────────────────────────────────────────────────────────────
   UTILITIES
───────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section-pad {
  padding: var(--section-pad) 0;
}

.section-pad-sm {
  padding: 70px 0;
}

/* Section Labels */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-title--white {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.85;
}

.section-subtitle--white {
  color: rgba(255, 255, 255, 0.68);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* Gold Divider */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 28px;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-divider--center {
  justify-content: center;
}

.gold-divider--center::before,
.gold-divider--center::after {
  flex: 0 0 60px;
}

.gold-divider__diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.gold-divider--left::before {
  display: none;
}


/* ─────────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--grad-gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.4);
}

.btn-dark {
  background: var(--navy);
  color: var(--gold);
  border: 1px solid rgba(200, 167, 93, 0.3);
}

.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all var(--t-base);
  padding: 0;
}

#navbar.nav-transparent {
  background: transparent;
}

#navbar.nav-scrolled {
  background: rgba(6, 13, 31, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(200, 167, 93, 0.15);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
  height: 70px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  height: 50px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text span:first-child {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo-text span:last-child {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  border-radius: var(--r-full);
  transition: all var(--t-fast);
  letter-spacing: 0.02em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--t-base);
}

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

.nav-links a:hover::after {
  width: 50%;
}

.nav-cta {
  background: var(--grad-gold) !important;
  color: var(--navy-deep) !important;
  font-weight: 600 !important;
  padding: 9px 22px !important;
  border-radius: var(--r-full) !important;
  box-shadow: var(--shadow-gold);
  transition: all var(--t-base) !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold-lg) !important;
}

.nav-cta::after {
  display: none;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-base);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  padding: 40px 24px;
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  padding: 12px 24px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--t-base);
}

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

.nav-mobile-close {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 1.4rem;
  color: var(--white);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--t-base);
}

.nav-mobile-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  transform: scale(1.05);
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 7s ease-out forwards;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.18);
  }
}

.hero-slide:nth-child(1) {
  background-image: url('../Photos/Facade/photo_01.jpeg');
}

.hero-slide:nth-child(2) {
  background-image: url('../Photos/Room/photo_10.jpg');
}

.hero-slide:nth-child(3) {
  background-image: url('../Photos/Restaurant/photo_04.jpg');
}

.hero-slide:nth-child(4) {
  background-image: url('../Photos/Room/photo_04.jpg');
}

/* Gradient Overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 13, 31, 0.5) 0%, transparent 60%);
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all var(--t-base);
  padding: 0;
}

.hero-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* Award Badge */
.hero-award {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(6, 13, 31, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 167, 93, 0.28);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hero-award-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.hero-award-val {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-award-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.hero-award-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* Hero Content */
.hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
  padding-top: calc(var(--nav-h) + 20px);
  padding-bottom: 80px;
}

.hero-content {
  max-width: 800px;
  margin-left: -500px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 167, 93, 0.15);
  border: 1px solid rgba(200, 167, 93, 0.4);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--r-full);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  background: linear-gradient(135deg, #C8A75D, #E8CC8A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-pills {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-full);
}

.hero-pill {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-pill-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scroll-slide 2s infinite;
}

@keyframes scroll-slide {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

/* Hero Booking Widget */
.hero-widget-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 0 24px;
}

.booking-widget {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 167, 93, 0.2);
  border-radius: var(--r-lg);
  padding: 20px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 20px;
  align-items: end;
  box-shadow: var(--shadow-xl);
}

.widget-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.widget-field label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.widget-field input,
.widget-field select {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t-fast);
}

.widget-field input:focus,
.widget-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 167, 93, 0.12);
}

.widget-field select {
  appearance: none;
  cursor: pointer;
}

.widget-btn {
  background: var(--grad-gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 28px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
  transition: all var(--t-base);
  letter-spacing: 0.02em;
}

.widget-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

/* ─────────────────────────────────────────────────────────────
   HIGHLIGHTS STRIP
───────────────────────────────────────────────────────────── */
#highlights {
  background: var(--navy-deep);
  padding: 28px 0;
  border-bottom: 1px solid rgba(200, 167, 93, 0.1);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.highlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background var(--t-base);
}

.highlight-card:last-child {
  border-right: none;
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 167, 93, 0.1);
  border: 1px solid rgba(200, 167, 93, 0.25);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}

.highlight-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}

/* ─────────────────────────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────────────────────────── */
#about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.about-image-primary {
  width: 80%;
  height: 520px;
  position: relative;
  z-index: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.about-image-primary:hover img {
  transform: scale(1.05);
}

.about-image-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,13,31,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.about-image-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 380px;
  z-index: 2;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--off-white);
}

.about-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.about-image-secondary:hover img {
  transform: scale(1.05);
}

/* Glassmorphism Badge */
.about-badge.glass-badge {
  position: absolute;
  top: 40px;
  right: -30px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.about-badge.glass-badge::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(200, 167, 93, 0.5);
  border-radius: 50%;
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
  100% { transform: rotate(360deg); }
}

.badge-content {
  position: relative;
  z-index: 2;
}

.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1;
  margin-bottom: 2px;
}

.about-badge span {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
  display: block;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-100);
  transition: all var(--t-base);
}

.about-feature:hover {
  border-color: rgba(200, 167, 93, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.about-feature-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold-pale), rgba(200, 167, 93, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.about-feature p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.stat {
  text-align: center;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gray-200), transparent);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-mid);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────
   ROOMS SECTION
───────────────────────────────────────────────────────────── */
#rooms {
  background: var(--cream);
}

/* Swiper Rooms */
.rooms-swiper {
  padding-bottom: 60px !important;
}

.rooms-swiper .swiper-slide {
  height: auto;
}

.swiper-pagination-bullet {
  background: var(--gray-400) !important;
  opacity: 1 !important;
  width: 8px !important;
  height: 8px !important;
  transition: all var(--t-base) !important;
}

.swiper-pagination-bullet-active {
  background: var(--gold) !important;
  width: 28px !important;
  border-radius: 4px !important;
}

/* Nav arrows */
.swiper-btn-prev,
.swiper-btn-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
}

.swiper-btn-prev:hover,
.swiper-btn-next:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  transform: scale(1.05);
}

.rooms-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

/* Room Card */
.room-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--t-slow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(200, 167, 93, 0.25);
}

.room-image {
  position: relative;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.06);
}

.room-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--grad-gold);
  color: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-full);
}

.room-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.room-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.room-meta span {
  font-size: 0.78rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 5px;
}

.room-meta i {
  color: var(--gold);
  font-size: 0.85rem;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.amenity-tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold-mid);
  background: rgba(200, 167, 93, 0.08);
  border: 1px solid rgba(200, 167, 93, 0.25);
  padding: 3px 10px;
  border-radius: var(--r-full);
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}

.room-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.room-price span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-light);
}

/* ─────────────────────────────────────────────────────────────
   AMENITIES SECTION
───────────────────────────────────────────────────────────── */
#amenities {
  background: var(--navy-deep);
}

.amenities-tabs {
  display: none;
}

.amenity-tab {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 0;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  transition: all var(--t-base);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.amenity-tab:hover {
  color: var(--gold);
}

.amenity-tab.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

.amenities-grid-wrapper {
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  padding: 20px 0;
}

.amenities-grid {
  display: inline-flex;
  gap: 24px;
  animation: scroll-marquee 40s linear infinite;
}

.amenities-grid:hover {
  animation-play-state: paused;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

.amenity-card {
  width: 280px;
  flex-shrink: 0;
  white-space: normal;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--t-slow);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200, 167, 93, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-slow);
}

.amenity-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(200, 167, 93, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.amenity-icon-wrap {
  width: 100%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: transparent;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
  transition: all var(--t-base);
  position: relative;
  z-index: 1;
}

.amenity-card:hover .amenity-icon-wrap {
  transform: scale(1.08);
}

.amenity-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.amenity-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────────────────────────
   DINING SECTION
───────────────────────────────────────────────────────────── */
#dining {
  background: var(--navy);
}

.dining-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dining-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
}

.dining-image {
  position: absolute;
  inset: 0;
}

.dining-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.dining-card:hover .dining-image img {
  transform: scale(1.08);
}

.dining-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-card);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: all var(--t-slow);
}

.dining-cuisine {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.dining-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.dining-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--t-base);
}

.dining-card:hover .dining-desc {
  opacity: 1;
  transform: translateY(0);
}

.dining-hours {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────
   EVENTS SECTION
───────────────────────────────────────────────────────────── */
#events {
  background: var(--off-white);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.events-image-wrap {
  position: relative;
}

.events-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.events-capacity {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--grad-gold);
  padding: 20px 24px;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.events-capacity strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.events-capacity span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.events-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.event-type {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--r-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--t-base);
}

.event-type i {
  color: var(--gold);
  width: 18px;
}

.event-type:hover {
  border-color: rgba(200, 167, 93, 0.3);
  background: rgba(200, 167, 93, 0.04);
  transform: translateX(4px);
}

/* ─────────────────────────────────────────────────────────────
   GALLERY SECTION
───────────────────────────────────────────────────────────── */
#gallery {
  background: var(--navy-deep);
}

#circular-gallery-container {
  width: 90vw;
  max-width: 1200px;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  margin: 0 auto;
  position: relative;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

#circular-gallery-container canvas {
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  cursor: pointer;
}

.gallery-item:nth-child(5n+1) {
  grid-column: span 2;
  grid-row: span 2;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 13, 31, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-base);
}

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

.gallery-item-overlay i {
  font-size: 1.8rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
}

.lightbox-close:hover {
  background: rgba(200, 167, 93, 0.3);
  color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(200, 167, 93, 0.3);
  color: var(--gold);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  text-align: center;
}

/* ─────────────────────────────────────────────────────────────
   NEARBY ATTRACTIONS
───────────────────────────────────────────────────────────── */
#nearby {
  background: var(--white);
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nearby-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: var(--r-xl);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.nearby-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-deep);
  z-index: -1;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nearby-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.nearby-card:hover::before {
  transform: translateY(0);
}

.nearby-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(200, 167, 93, 0.1);
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: all var(--t-base);
}

.nearby-card:hover .nearby-icon {
  background: var(--grad-gold);
  color: var(--navy-deep);
  transform: scale(1.1);
}

.nearby-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color var(--t-base);
}

.nearby-card:hover .nearby-name {
  color: var(--white);
}

.nearby-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
  transition: color var(--t-base);
}

.nearby-card:hover .nearby-desc {
  color: rgba(255, 255, 255, 0.7);
}

.nearby-distance {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-mid);
  background: rgba(200, 167, 93, 0.1);
  padding: 6px 16px;
  border-radius: var(--r-full);
  transition: all var(--t-base);
}

.nearby-card:hover .nearby-distance {
  background: rgba(200, 167, 93, 0.2);
  color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────
   REVIEWS SECTION
───────────────────────────────────────────────────────────── */
#reviews {
  background: var(--navy);
}

.reviews-header-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.reviews-rating-block {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 167, 93, 0.2);
  border-radius: var(--r-md);
  padding: 20px 28px;
  white-space: nowrap;
}

.rating-big {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.rating-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rating-details .stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.rating-total {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Reviews Swiper */
.reviews-swiper {
  padding-bottom: 50px !important;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: 28px;
  height: auto;
  transition: all var(--t-base);
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 167, 93, 0.25);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-deep);
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.88rem;
}

.review-source {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

/* ─────────────────────────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────────────────────────── */
#why {
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  text-align: center;
  transition: all var(--t-slow);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-navy);
  opacity: 0;
  transition: opacity var(--t-slow);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-navy);
}

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

.why-card:hover .why-icon,
.why-card:hover .why-title,
.why-card:hover .why-desc {
  position: relative;
  z-index: 1;
}

.why-card:hover .why-title {
  color: var(--white);
}

.why-card:hover .why-desc {
  color: rgba(255, 255, 255, 0.65);
}

.why-icon {
  width: 72px;
  height: 72px;
  background: rgba(200, 167, 93, 0.1);
  border: 1px solid rgba(200, 167, 93, 0.25);
  border-radius: var(--r-lg);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  transition: all var(--t-base);
  position: relative;
  z-index: 1;
}

.why-card:hover .why-icon {
  background: rgba(200, 167, 93, 0.2);
  transform: scale(1.1);
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color var(--t-base);
}

.why-desc {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.75;
  transition: color var(--t-base);
}

/* ─────────────────────────────────────────────────────────────
   FAQ SECTION
───────────────────────────────────────────────────────────── */
#faq {
  background: var(--cream);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--t-base);
}

.faq-item.open {
  border-color: rgba(200, 167, 93, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  gap: 20px;
}

.faq-question h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: all var(--t-base);
  font-weight: 700;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--navy-deep);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ─────────────────────────────────────────────────────────────
   CONTACT SECTION
───────────────────────────────────────────────────────────── */
#contact {
  background: var(--navy-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.contact-info>p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  transition: all var(--t-base);
  text-decoration: none;
}

.contact-item:hover {
  background: rgba(200, 167, 93, 0.08);
  border-color: rgba(200, 167, 93, 0.25);
  transform: translateX(4px);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 167, 93, 0.12);
  border: 1px solid rgba(200, 167, 93, 0.25);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  transition: all var(--t-base);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 36px 32px;
}

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

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

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--white);
  transition: all var(--t-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(200, 167, 93, 0.12);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--navy-dark);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--grad-gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--r-full);
  margin-top: 20px;
  box-shadow: var(--shadow-gold);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}

.form-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.form-submit:hover::after {
  transform: translateX(100%);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.form-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-top: 12px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ─────────────────────────────────────────────────────────────
   MAP SECTION
───────────────────────────────────────────────────────────── */
#map {
  background: var(--navy-dark);
  padding: 60px 0;
}

.map-container {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200, 167, 93, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 420px;
  display: block;
}

/* ─────────────────────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────────────────────── */
#final-cta {
  background: var(--grad-navy);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
}

#final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../Photos/Room/photo_10.jpg') center/cover;
  opacity: 0.08;
}

#final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 167, 93, 0.12) 0%, transparent 70%);
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 12px 0 20px;
}

.final-cta-title em {
  font-style: italic;
  color: var(--gold);
}

.final-cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(200, 167, 93, 0.1);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  height: 50px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-logo-text span:first-child {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo-text span:last-child {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--t-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-base);
  flex-shrink: 0;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-links a:hover::before {
  width: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item span {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-item strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.footer-contact-item a {
  color: inherit;
  transition: color var(--t-fast);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--t-fast);
}

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

/* ─────────────────────────────────────────────────────────────
   BOOKING POPUP
───────────────────────────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.popup-overlay.open {
  display: flex;
}

.popup {
  background: var(--navy-dark);
  border: 1px solid rgba(200, 167, 93, 0.2);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  width: 100%;
  max-width: 560px;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: popup-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popup-in {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all var(--t-base);
  font-size: 1.1rem;
}

.popup-close:hover {
  background: rgba(200, 167, 93, 0.2);
  color: var(--gold);
  border-color: rgba(200, 167, 93, 0.4);
}

.popup h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.popup>p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  line-height: 1.6;
}

.popup-form .form-row {
  margin-bottom: 0;
}

.popup-form .form-group {
  margin-bottom: 14px;
}

/* ─────────────────────────────────────────────────────────────
   FLOATING BUTTONS
───────────────────────────────────────────────────────────── */
.floating-buttons {
  position: fixed;
  right: 24px;
  bottom: 80px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  position: relative;
  box-shadow: var(--shadow-lg);
  transition: all var(--t-spring);
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.12);
}

.float-call {
  background: var(--gold);
  color: var(--navy-deep);
}

.float-call::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: ring-pulse 2s infinite;
  opacity: 0;
}

@keyframes ring-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.float-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.float-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: ring-pulse 2s infinite 0.5s;
  opacity: 0;
}

.float-btn-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-btn-tooltip::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--navy-dark);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.float-btn:hover .float-btn-tooltip {
  opacity: 1;
}

/* Scroll to Top */
#scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 800;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  border: 1.5px solid rgba(200, 167, 93, 0.3);
  color: var(--gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--t-base);
  box-shadow: var(--shadow-md);
}

#scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

#scroll-top:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ─────────────────────────────────────────────────────────────
   AOS OVERRIDES
───────────────────────────────────────────────────────────── */
[data-aos] {
  will-change: transform, opacity;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-content {
    margin-left: 0;
  }

  .about-grid {
    gap: 50px;
  }

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

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

@media (max-width: 900px) {
  :root {
    --section-pad: 80px;
  }

  .highlights-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-primary {
    width: 90%;
    height: 420px;
  }

  .about-image-secondary {
    width: 65%;
    height: 300px;
  }

  .about-badge.glass-badge {
    top: 20px;
    right: 10px;
    width: 120px;
    height: 120px;
  }

  .about-badge.glass-badge strong {
    font-size: 1.8rem;
  }

  .dining-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reviews-header-row {
    grid-template-columns: 1fr;
  }

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

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


  .hero-award {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hero-content {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .booking-widget {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .widget-btn-wrap {
    grid-column: span 2;
  }

  .widget-btn {
    width: 100%;
  }

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

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



  .gallery-item:nth-child(5n+1) {
    grid-column: span 1;
    grid-row: span 1;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .popup {
    padding: 32px 24px;
  }

  .popup h3 {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .final-cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px;
  }
  .stat::after {
    display: none !important;
  }

  .events-types {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .booking-widget {
    grid-template-columns: 1fr;
  }

  .widget-btn-wrap {
    grid-column: 1;
  }

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

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

/* Photo Gallery Container */
.circular-gallery-container {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  cursor: grab;
}

.circular-gallery-container:active {
  cursor: grabbing;
}