@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Space+Grotesk:wght@300..700&display=swap');

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

:root {
  --primary: #1D4A7A;
  --primary-hover: #3D6A9E;
  --primary-light: #7EA4C4;
  --primary-pale: #A8C4DE;
  --bg-light: #F5F9FC;
  --bg-soft: #EFF5FA;
  --bg-dark: #1E3A5F;
  --bg-darkest: #0F2744;
  --white: #FFFFFF;
  --text-dark: #1a1a1a;
  --text-body: #4A5568;
  --text-light: #718096;
  --border-light: #E2E8F0;
  /* Loyalty section accent */
  --gold: #C5A55A;
  --gold-light: #D4AA7A;
  --gold-pale: #F5C99D;
  --gold-dim: #8B7A4E;
  --loyalty-bg: #0D0D0D;
  --loyalty-card: #141414;
  --loyalty-border: #2A2A2A;
  --loyalty-border-gold: #3D3524;
  --loyalty-text: #F5F0E8;
  --loyalty-muted: #6B6355;
  --loyalty-secondary: #A09880;
  --green: #4A7A5A;
  --swiper-navigation-size: 20px !important;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text-dark);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "Marcellus", serif;
  font-weight: 300;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ═══════════ TOP BAR ═══════════ */
.top-bar {
  background: var(--bg-darkest);
  padding: 0 48px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1001;
}
.top-bar-left {
  display: flex; align-items: center; gap: 20px;
}
.top-bar-right {
  display: flex; align-items: center; gap: 20px;
}
.tb-clock {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.7);
}
.tb-clock-icon {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.tb-clock-time-inner { display: flex; align-items: center; }
.tb-clock-time {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
}
.tb-clock-label {
  font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-left: 8px;
}
.tb-weather {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.7);
}
.tb-weather-inner { display: flex; align-items: center; }
.tb-weather-icon { font-size: 14px; }
.tb-weather-temp {
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.85);
}
.tb-weather-loc {
  font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-left: 8px;
}
.tb-separator {
  width: 1px; height: 16px;
  background: rgba(255,255,255,0.1);
}
.tb-account {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
  margin-top: 4px;
}
.tb-account:hover { color: var(--primary-light); }
.tb-account-icon {
  width: 25px; height: 25px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin-left: 20px;
}
.tb-account-icon svg { width: 14px; height: 14px; }
.tb-account-label {
  font-size: 10px; letter-spacing: 1px;
  text-transform: uppercase;
}
/* Account dropdown */
.tb-dropdown {
  display: none;
  position: absolute;
  top: 100%; right: 0;
  margin-top: 8px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 200px;
  z-index: 1100;
}
.tb-dropdown.open { display: block; }
.tb-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  font-size: 13px; color: var(--text-body);
  transition: all 0.2s;
  border-bottom: 1px solid var(--border-light);
}
.tb-dropdown a:last-child { border-bottom: none; }
.tb-dropdown a:hover { background: var(--bg-soft); color: var(--primary); }
.tb-dropdown a svg { width: 16px; height: 16px; flex-shrink: 0; }

.tb-announcement { display: flex; flex-direction: column; color: #fff; font-size: 14px; gap: 2px; }
.static-text { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.tb-icon-img svg { width: 18px; height: 18px; margin-top: 6px; }
.dynamic-item { display: none; }
.dynamic-text { display: flex; align-items: center; gap: 10px; opacity: 0; transition: opacity 0.5s ease; color: #fff; font-weight: 400; font-size: 14px; }
.dynamic-text.show { opacity: 1; }

/* ═══════════ NAVBAR ═══════════ */
.nav {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(30,58,95,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.scrolled {
  top: 0;
  background: rgba(15,39,68,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-logo {
  font-family: "Marcellus", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--white);
  transition: color 0.3s;
}
.nav-inner { display: flex; align-items: center; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links li.current-menu-item a { color: var(--white); }
.nav-btn {
  padding: 8px 24px;
  background: var(--primary);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.menu-close { display: none; }
.nav-btn:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}
.mobile-toggle span {
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,39,68,0.5) 0%, rgba(15,39,68,0.6) 50%, rgba(15,39,68,0.85) 100%);
}
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.hero h1 {
  font-size: clamp(44px, 7vw, 84px);
  color: var(--white);
  margin-bottom: 12px;
  opacity: 0; animation: fadeUp 1s 0.5s forwards;
}
.hero-tagline {
  font-family: "Marcellus", serif;
  font-size: clamp(20px, 3vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: var(--primary-pale);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 1s 0.65s forwards;
  letter-spacing: 0.5px;
}
.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
  opacity: 0; animation: fadeUp 1s 0.8s forwards;
  font-weight: 400;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp 1s 0.95s forwards;
  font-weight: 500;
}
.hero-pill {
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  opacity: 0; animation: fadeUp 1s 1.1s forwards;
}
.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--white); }

/* ═══════════ BOOKING BAR ═══════════ */
.booking-bar {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: -40px auto 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 28px 36px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  transition: all 0.35s ease;
}
@media (min-width: 992px) {
  .booking-bar.is-sticky {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 16px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    animation: smoothSlideDown 0.35s ease;
  }

  /* Inner content constraint */
  .booking-bar.is-sticky::before {
    content: '';
    position: absolute;
    inset: 0;
    max-width: 1100px;
    margin: 0 auto;
  }
}
@keyframes smoothSlideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.booking-field { flex: 1; min-width: 140px; }
.booking-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}
.booking-field input,
.booking-field select {
  width: 100%;
  padding: 10px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.booking-field input:focus,
.booking-field select:focus { border-bottom-color: var(--primary); }
.booking-bar .btn-primary {
  min-width: 180px; text-align: center; padding: 14px 32px;
}

/* ═══════════ SECTION COMMON ═══════════ */
.section { padding: 112px 48px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-divider {
  width: 48px; height: 2px;
  background: var(--primary);
  margin: 16px auto;
}
.section-sub {
  font-size: 15px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════ WHY US ═══════════ */
.why-section { background: var(--primary); }
.why-section .section-tag { color: var(--primary-pale); }
.why-section .section-title { color: var(--white); }
.why-section .section-sub { color: rgba(255,255,255,0.6); }
.why-section .section-divider { background: rgba(255,255,255,0.3); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  background: rgba(255,255,255,0.06);
  padding: 44px 32px;
  transition: all 0.4s;
  border: 1px solid rgba(255,255,255,0.08);
}
.why-card:hover { background: rgba(255,255,255,0.1); }
.why-icon {
  width: 36px; height: 36px;
  margin-bottom: 20px;
  color: var(--primary-pale);
}
.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--white);
}
.why-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ═══════════ ROOMS ═══════════ */
.rooms-section { background: var(--white); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.room-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all 0.5s;
}
.room-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.room-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.room-card:hover .room-img img { transform: scale(1.05); }
.room-size {
  position: absolute;
  bottom: 12px; right: 12px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.9);
  font-size: 12px;
  color: var(--text-dark);
  letter-spacing: 1px;
}
.room-body { padding: 28px; }
.room-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 6px;
}
.room-card h3 { font-size: 24px; margin-bottom: 10px; color: var(--text-dark); }
.room-desc { font-size: 13px; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.room-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.room-feat {
  padding: 4px 10px;
  border: 1px solid var(--border-light);
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.room-price {
  font-family: "Marcellus", serif;
  font-size: 28px;
  color: var(--primary);
}
.room-price span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  color: var(--text-light);
}
.room-book {
  padding: 10px 24px;
  background: var(--primary);
  border: none;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.room-book:hover { background: var(--primary-hover); }

/* ═══════════ EXPERIENCES ═══════════ */
.exp-section { background: var(--bg-soft); }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.exp-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: var(--white);
}
.exp-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.exp-card:hover img { transform: scale(1.05); }
.exp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,39,68,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.exp-card h3 { font-size: 20px; color: var(--white); margin-bottom: 4px; }
.exp-card p { font-size: 13px; color: rgba(255,255,255,0.65); }
.exp-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 4px 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 10px; font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ═══════════ LOYALTY (Dark / Gold accent) ═══════════ */
.loyalty-section {
  background: var(--loyalty-bg);
  padding: 112px 48px;
  position: relative;
}
.loyalty-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.loyalty-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.loyalty-left .section-tag { text-align: left; color: var(--gold); }
.loyalty-left .section-title {
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--loyalty-text);
  margin-bottom: 8px;
}
.loyalty-left .section-title em { font-style: italic; color: var(--gold-pale); }
.loyalty-desc {
  font-size: 15px;
  color: var(--loyalty-muted);
  margin-bottom: 36px;
  line-height: 1.8;
}
.loyalty-cta-row { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.loyalty-btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--loyalty-bg);
  border: none;
  font-size: 12px; font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.loyalty-btn-primary:hover { background: var(--gold-light); }
.loyalty-btn-outline {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--loyalty-text);
  border: 1px solid var(--loyalty-border);
  font-size: 12px; font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.loyalty-btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.loyalty-notes {
  display: flex; gap: 24px;
  font-size: 13px;
  color: var(--loyalty-muted);
}
.loyalty-notes span::before { content: '✓ '; color: #6B9B7A; }

/* Member Card */
.member-card {
  background: var(--loyalty-card);
  border: 1px solid var(--loyalty-border-gold);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.member-card::before {
  content: '';
  position: absolute; top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(197,165,90,0.04) 0%, transparent 50%);
}
.mc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mc-logo { font-family: "Marcellus", serif; font-size: 22px; font-weight: 400; letter-spacing: 4px; color: var(--loyalty-text); }
.mc-tier {
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--loyalty-bg);
  font-size: 10px; font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.mc-name { font-family: "Marcellus", serif; font-size: 20px; font-weight: 400; color: var(--loyalty-text); margin-bottom: 4px; }
.mc-id { font-size: 12px; color: var(--loyalty-muted); margin-bottom: 28px; }
.mc-points-box {
  background: #1E1E1E;
  border: 1px solid var(--loyalty-border);
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.mc-points { font-family: "Marcellus", serif; font-size: 48px; font-weight: 300; color: var(--loyalty-text); letter-spacing: 2px; }
.mc-points-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--loyalty-muted); margin-top: 4px; }
.mc-progress { margin-top: 16px; display: flex; justify-content: space-between; font-size: 12px; color: var(--loyalty-muted); margin-bottom: 8px; }
.mc-progress-bar { width: 100%; height: 3px; background: var(--loyalty-border); margin-top: 4px; }
.mc-progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dim), var(--gold)); width: 74%; }
.mc-benefits { list-style: none; margin-top: 24px; }
.mc-benefits li {
  padding: 8px 0; font-size: 14px; color: var(--loyalty-secondary);
  display: flex; align-items: center; gap: 10px;
}
.mc-benefits li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.mc-upgrade {
  margin-top: 20px; padding: 12px;
  background: rgba(197,165,90,0.08);
  border: 1px solid var(--loyalty-border-gold);
  text-align: center;
  font-size: 13px; color: var(--loyalty-secondary);
}
.mc-upgrade a { color: var(--gold); text-decoration: underline; }

/* Tiers Grid */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 80px auto 0;
}
.tier-card {
  background: var(--loyalty-card);
  border: 1px solid var(--loyalty-border);
  padding: 32px 24px;
  position: relative;
  transition: all 0.4s;
}
.tier-card:hover { border-color: var(--loyalty-border-gold); transform: translateY(-2px); }
.tier-card.featured { border-color: var(--gold-dim); }
.tier-card.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
}
.tier-badge {
  position: absolute; top: -1px; right: 20px;
  padding: 4px 12px;
  background: var(--gold); color: var(--loyalty-bg);
  font-size: 9px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
}
.tier-icon { font-size: 28px; margin-bottom: 16px; }
.tier-card h3 { font-size: 22px; color: var(--loyalty-text); margin-bottom: 4px; }
.tier-level { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 20px; }
.tier-points { font-family: "Marcellus", serif; font-size: 32px; color: var(--gold); margin-bottom: 4px; }
.tier-points-label { font-size: 12px; color: var(--loyalty-muted); margin-bottom: 24px; }
.tier-benefits { list-style: none; margin-bottom: 28px; }
.tier-benefits li {
  padding: 6px 0; font-size: 13px; color: var(--loyalty-secondary);
  display: flex; align-items: flex-start; gap: 8px;
}
.tier-benefits li::before { content: '✓'; color: var(--gold); font-weight: 500; flex-shrink: 0; }
.tier-cta {
  width: 100%; padding: 12px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--loyalty-border);
  background: transparent; color: var(--loyalty-secondary);
  transition: all 0.3s; text-align: center; cursor: pointer;
}
.tier-cta:hover { border-color: var(--gold); color: var(--gold); }
.tier-card.featured .tier-cta { background: var(--gold); border-color: var(--gold); color: var(--loyalty-bg); }
.tier-card.featured .tier-cta:hover { background: var(--gold-light); }

/* ═══════════ GALLERY ═══════════ */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 15px;
  max-width: 1300px;
  margin: 0 auto;
}
.gallery-item { position: relative; overflow: hidden; border-radius: 6px; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.1);}
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-icon { width: 50px; height: 50px; border: 1px solid #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #c9a96e; }
.gallery-icon svg { width: 20px; fill: #fff; }

.gallery-btn { display: flex; justify-content: center; margin-top: 60px; }

/* ═══════════ STATS ═══════════ */
.stats-section {
  background: var(--bg-dark);
  padding: 80px 48px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.stat-number {
  font-family: "Marcellus", serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--primary-light);
  letter-spacing: 1px;
}

/* ═══════════ TESTIMONIALS ═══════════ */
.test-section { background: var(--primary); padding: 112px 48px; }
.test-section .section-tag { color: var(--primary-pale); }
.test-section .section-title { color: var(--white); }
.test-section .section-divider { background: rgba(255,255,255,0.3); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.test-card { padding: 36px 28px; background-color: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); }
.test-quote {
  font-family: "Marcellus", serif;
  font-size: 56px;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 12px;
}
.test-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.test-divider { width: 32px; height: 1px; background: rgba(255,255,255,0.2); margin-bottom: 16px; }
.test-name { font-family: "Marcellus", serif; font-size: 18px; color: var(--white); margin-bottom: 2px; }
.test-loc { font-size: 12px; color: var(--primary-light); letter-spacing: 1px; }

.testSwiper { max-width: 1100px; }
.testSwiper .swiper-button-next, .testSwiper .swiper-button-prev { color: #fff !important; font-size: var(--swiper-navigation-size) !important; } 
.testSwiper .swiper-button-next:before, .testSwiper .swiper-button-prev:before { font-size: var(--swiper-navigation-size) !important; }
.swiper-pagination-bullet { background: #fff !important; opacity: 0.6 !important; }
.swiper-pagination-bullet-active { opacity: 1 !important; }

.test-rating { display: flex; gap: 4px; margin: 10px 0 15px; }
.star { width: 18px; height: 18px; fill: #ccc; }
.star.filled { fill: #f5c518; }
.star.empty { fill: rgba(255,255,255,0.2); }

/* ═══════════ REELS ═══════════ */
.reels-section { background: var(--bg-soft); }
.reels-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
.reels-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px 0;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.reel-phone {
  flex-shrink: 0;
  width: 240px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
  position: relative;
}
.reel-phone.center {
  width: 270px;
  transform: scale(1.08);
  box-shadow: 0 16px 60px rgba(0,0,0,0.15);
  z-index: 2;
}
.reel-phone.side {
  opacity: 0.85;
  transform: scale(0.92);
}
/* Phone top bar */
.reel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 8px;
  background: var(--white);
}
.reel-top-left {
  display: flex; align-items: center; gap: 8px;
}
.reel-back { font-size: 16px; color: var(--text-dark); }
.reel-label { font-size: 13px; font-weight: 500; color: var(--text-dark); }
.reel-cam { font-size: 14px; color: var(--text-dark); }
/* Reel image area */
.reel-media {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #000;
}
.reel-phone.center .reel-media { height: 400px; }
.reel-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.reel-media-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 14px;
}
.reel-caption {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  color: var(--white);
  align-self: flex-start;
}
.reel-play {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  align-self: center;
  margin: auto;
}
.reel-play svg { width: 20px; height: 20px; color: var(--text-dark); margin-left: 3px; }
.reel-watch {
  font-size: 11px; color: rgba(255,255,255,0.8);
  text-align: center;
}
/* Reel bottom */
.reel-bottom {
  padding: 10px 14px;
  background: var(--white);
}
.reel-view-link {
  font-size: 11px; color: var(--primary); margin-bottom: 8px;
  display: block;
}
.reel-actions {
  display: flex; align-items: center; justify-content: space-between;
}
.reel-actions-left {
  display: flex; gap: 12px;
}
.reel-action-icon {
  width: 20px; height: 20px; color: var(--text-dark);
}
.reel-likes {
  font-size: 12px; font-weight: 500; color: var(--text-dark);
  margin-top: 6px;
}
/* Reel footer bar */
.reel-footer-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px 12px;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  font-size: 10px; color: var(--text-light);
}
.reel-footer-icons {
  display: flex; align-items: center; gap: 6px;
}
.reel-footer-icon {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; color: var(--white); font-weight: 700;
}
/* Carousel nav */
.reels-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  font-size: 18px; color: var(--text-dark);
  transition: all 0.3s;
  cursor: pointer;
}
.reels-nav:hover { border-color: var(--primary); color: var(--primary); }
.reels-nav.prev { left: 0; }
.reels-nav.next { right: 0; }

@media (max-width: 768px) {
  .reels-track { gap: 16px; }
  .reel-phone { width: 200px; }
  .reel-phone.center { width: 230px; }
  .reel-media { height: 280px; }
  .reel-phone.center .reel-media { height: 320px; }
  .reel-phone.side { display: none; }
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--bg-darkest);
  padding: 80px 48px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 60px;
}
.footer-brand {
  font-family: "Marcellus", serif;
  font-size: 24px; letter-spacing: 5px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 300px; margin-top: 10px; }
.footer h4 {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary-light); margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif; font-weight: 500;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.3s; }
.footer ul a:hover { color: var(--white); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.35); }
.contact-details ul li { display: flex; align-items: start; }
.contact-details .footer-icon svg { width: 16px; height: 16px; margin-right: 10px; margin-top: 4px; }
.policy-menu { display: flex; gap: 0 10px; list-style: none; padding: 0; flex-wrap: wrap; }
.policy-menu li:not(:last-child)::after { content: "|"; margin-left: 10px; color: #999; }
.policy-menu li a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color 0.3s;  }
.policy-menu ul li a:hover { color: var(--white); }

.header-inner-banner:before { background: linear-gradient(90deg, #0f2744 15%, rgba(15,39,68, 0.9) 32.32%, rgba(15,39,68, 0.8) 60.54%, rgba(15,39,68, 0.6) 74.01%, rgba(15,39,68, 0.5) 85.61%, rgba(15,39,68, 0.3) 100%) !important; }

.gallery-item-buttons a:last-child { display: none; }
.gallery-item-caption-wrap { display: none; }
.eael-gallery-load-more { margin-top: 30px; }
.eael-filter-gallery-control { margin-bottom: 20px !important; }

.cs-cta .cs-cta-wrap { position: relative; overflow: hidden; }
.cs-cta .cs-cta-img { position: relative; overflow: hidden; }
.cs-cta .cs-cta-img img { display: block; width: 100%; transition: 0.35s ease-in-out; }
.cs-cta-overlay { background-color: transparent; background-image: linear-gradient(180deg, #00000000 50%, #000000 95%); opacity: 0.6; }
.cs-cta .cs-cta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; transition: 0.35s; }
.cs-cta:hover .cs-cta-overlay { opacity: 0.4; }
.cs-cta .cs-cta-content { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; padding: 30px; z-index: 9; pointer-events: none; justify-content: flex-end; }
.cs-cta .cs-cta-content:before, .cs-cta .cs-cta-content:after { position: absolute; top: 10px; right: 10px; bottom: 10px; left: 10px; color: #b99d75; content: ""; transition: opacity 0.35s, transform 0.35s; }
.cs-title, .entry-content .cs-title { font-size: 30px; line-height: 40px; color: #fff; font-family: "Marcellus", Sans-serif; text-align:center; }
.cs-cta-text { font-size: 16px; line-height: 30px; color: #fff; text-align: center; }
.cs-cta .cs-cta-content:before { border-top: 1px solid; border-bottom: 1px solid; }
.cs-cta .cs-cta-content:after { border-right: 1px solid; border-left: 1px solid; }
.cs-cta:hover .cs-cta-img img { -webkit-transform: scale(1.07); -ms-transform: scale(1.07); transform: scale(1.07); }

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════ LOYALTY MODAL ═══════════ */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  justify-content: center; align-items: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-card {
  background: var(--loyalty-card);
  border: 1px solid var(--loyalty-border-gold);
  max-width: 480px; width: 100%;
  padding: 48px 40px;
  position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  color: var(--loyalty-muted); font-size: 24px;
}

/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup Box */
.popup-box {
  width: 900px;
  max-width: 95%;
  background: #fff;
  display: flex;
  position: relative;
  overflow: hidden;

  /* Animation initial */
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.5s ease;
}

/* Active Animation */
.popup-overlay.active .popup-box {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Close */
.popup-close {
  position: absolute;
  right: 11px;
  top: -9px;
  font-size: 42px;
  cursor: pointer;
  color: #0F2744;
}

/* Left Image */
.popup-left {
  width: 45%;
}
.popup-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Content */
.popup-right {
  width: 55%;
  padding: 40px 20px;
  text-align: center;
}

.popup-right h5 {
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 30px;
  color: #0F2744;
  text-transform: uppercase;
}

.popup-right h2 {
  font-size: 30px;
  color: #0F2744;
  margin: 10px 0 25px;
  line-height: 40px;
}

.popup-right ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.popup-right ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

/* Button */
.popup-btn {
  display: inline-block;
  background: #1D4A7A;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 30px;
}

.offer-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.offer-item.divider:after { content: ''; position: absolute; border-right: 1px solid #1D4A7A; height: 60px; right: 0px; top: 18px; }
.offer-items p, .offer-item p { font-size: 16px; line-height: 25px; font-weight: 400; }

.offer-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.offer-item.single {
    margin-top: 10px;
}
.offer-item.single svg { width: 40px; height: 40px; }

.offer-items svg { width: 40px; height: 40px; }

/* Mobile */
@media (max-width: 768px) {
  .popup-box {
    flex-direction: column;
  }
  .popup-left, .popup-right {
    width: 100%;
  }
  .popup-right { padding: 30px 20px; }
  .popup-left img { height: 250px; }
  .offer-items { margin-bottom: 10px; }
}
@media (max-width: 600px) {
  .popup-right h2 { font-size: 24px; line-height: 34px; }
   .popup-left img {
    height: 200px;
  }
  .popup-left img { display: none; }
}
@media (max-width: 400px) {
  .offer-item.divider:after  { display: none; }
  .popup-right { padding: 30px 10px; }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .top-bar { padding: 0 20px; }
  .nav { padding: 0 24px; }
  .section { padding: 80px 24px; }
  .rooms-grid, .exp-grid, .test-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-rows: repeat(2, 180px); }
  .stats-grid { gap: 32px; }
  .tb-account-label { display: none; }
}
@media (max-width: 992px) {
.mobile-toggle { display: flex; }

/* Base mobile menu */
.nav-links {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--bg-darkest);

  display: flex;
  flex-direction: column;
  align-items: center; /* better for mobile menu */
  justify-content: flex-start; /* IMPORTANT */

  padding: 80px 20px 20px;
  gap: 20px;

  overflow-y: auto; /* ✅ enables scroll */
  -webkit-overflow-scrolling: touch;

  transform: translateX(100%);
  transition: transform 0.4s ease;

  z-index: 999;
}
/* When open */
.nav-links.open {
  transform: translateX(0); /* slide in */
}

/* Links style */
.nav-links a {
  font-size: 16px;
  color: var(--white);
}
.menu-close {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 26px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  display: none;
}

/* Show only when menu open */
.nav-links.open ~ .menu-close {
  display: block;
}
}
@media (max-width: 768px) {
  .nav { top: 0; }

  .top-bar { display: none; }
  .section { padding: 64px 20px; }
  .booking-bar {
    margin: -24px 20px 0;
    flex-direction: column; padding: 24px; gap: 16px;
  }
  .booking-field { width: 100%; min-width: unset; }
  .booking-bar .btn-primary { width: 100%; }
  .rooms-grid, .exp-grid, .test-grid, .why-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 150px);
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero { height: 70vh; } 
}