@charset "UTF-8";
:root {
  --navy:       #1B52A0;
  --navy-dark:  #0a2e5c;
  --navy-deep:  #071b3e;
  --blue-mid:   #2B6CC4;
  --blue-light: #4EA8DE;
  --sky:        #87CEEB;
  --sky-pale:   #E8F4FF;
  --gold:       #F5C842;
  --gold-dark:  #D4A012;
  --sand:       #FFF8EC;
  --sand-mid:   #F5E6C3;
  --white:      #FFFFFF;
  --text-dark:  #141823;
  --text-mid:   #46484d;
  --text-light: #888;
  --shadow-sm:  0 2px 10px rgba(27,82,160,0.10);
  --shadow-md:  0 8px 32px rgba(27,82,160,0.16);
  --shadow-lg:  0 20px 60px rgba(27,82,160,0.24);
  --radius:     16px;
  --radius-sm:  8px;
  --radius-lg:  26px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
input, select, textarea { font-family: var(--font-sans); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sky-pale); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 3px; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── AOS ANIMATIONS ──────────────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
[data-aos="fade-right"] { transform: translateX(-32px); }
[data-aos="fade-left"]  { transform: translateX(32px); }
[data-aos="fade-down"]  { transform: translateY(-24px); }
[data-aos].aos-visible  { opacity: 1; transform: none; }

/* ── KEYFRAMES ───────────────────────────────────────────────── */
@keyframes sandDrift {
  0%   { transform: translateX(-10px) translateY(0px) rotate(0deg); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 0.8; }
  100% { transform: translateX(120px) translateY(-40px) rotate(360deg); opacity: 0; }
}
@keyframes waveAnim {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(8px); opacity: 0.4; }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,200,66,0.5); }
  50%       { box-shadow: 0 0 0 12px rgba(245,200,66,0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideDown {
  from { transform: translateY(-12px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes plWaveFlow {
  0%   { transform: translateX(0) scaleY(1); }
  50%  { transform: translateX(-10%) scaleY(1.2); }
  100% { transform: translateX(0) scaleY(1); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.7s ease;
}
.pl-inner {
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.pl-wave-wrap {
  display: flex; gap: 10px; align-items: flex-end; height: 50px;
}
.pl-wave {
  width: 8px; background: var(--gold);
  border-radius: 4px;
  animation: plWaveFlow 1.2s ease-in-out infinite;
}
.pl-wave:nth-child(1) { height: 30px; animation-delay: 0s; }
.pl-wave:nth-child(2) { height: 48px; animation-delay: 0.2s; background: var(--sky); }
.pl-wave:nth-child(3) { height: 22px; animation-delay: 0.4s; }
.pl-logo { width: 160px; }
.pl-logo img { width: 100%; filter: drop-shadow(0 0 16px rgba(245,200,66,0.4)); }
.pl-tagline {
  color: rgba(255,255,255,0.5);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 16px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(7,27,62,0.96);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.nav-logo-img { height: 46px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nl-brand {
  font-family: var(--font-serif); font-size: 1.25rem;
  color: var(--white); font-weight: 600; line-height: 1.1;
}
.nl-sub {
  font-size: 0.65rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
}

.nav-links {
  display: flex; align-items: center; gap: 6px;
  margin-left: auto;
}
.nav-links .nl {
  padding: 7px 14px; border-radius: 30px;
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: var(--transition);
}
.nav-links .nl:hover,
.nav-links .nl.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.nav-book-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 30px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark); font-weight: 700; font-size: 0.88rem;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-book-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,200,66,0.35); }

.nav-ham {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; margin-left: 8px;
}
.nav-ham span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.42) saturate(0.8);
  transform: scale(1.04);
}
.ocean-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; mix-blend-mode: overlay; opacity: 0.65;
}
.sand-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 860px; padding: 120px 24px 80px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,200,66,0.15); border: 1px solid rgba(245,200,66,0.35);
  color: var(--gold); padding: 6px 18px; border-radius: 30px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.5px;
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white); font-weight: 600; line-height: 1.1;
  margin-bottom: 20px; text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.80); line-height: 1.75; margin-bottom: 36px;
}
.hero-ctas {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 48px;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg); padding: 18px 32px;
}
.hs-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 0 28px;
}
.hs-item i { color: var(--gold); font-size: 1rem; margin-bottom: 4px; }
.hs-item span { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.hs-item small { font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.hs-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.18); }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.72rem; letter-spacing: 1.5px;
  text-transform: uppercase; z-index: 2;
}
.hs-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.35); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.hs-wheel {
  width: 3px; height: 8px; background: var(--gold);
  border-radius: 2px; animation: scrollBob 1.8s ease-in-out infinite;
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: 40px;
  background: linear-gradient(135deg, var(--navy), var(--blue-mid));
  color: var(--white); font-weight: 600; font-size: 0.9rem;
  transition: var(--transition); letter-spacing: 0.3px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(27,82,160,0.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px; border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.45);
  color: var(--white); font-weight: 600; font-size: 0.9rem;
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════
   QUICK SEARCH
═══════════════════════════════════════════════ */
.quick-search-section {
  position: relative; z-index: 10;
  background: var(--white);
  padding: 0;
  margin-top: -1px;
}
.qs-bar {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; flex-wrap: wrap;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 -4px 0 var(--gold), var(--shadow-lg);
  padding: 8px 8px 8px 8px;
  gap: 0;
  transform: translateY(-50%);
}
.qs-field {
  flex: 1; min-width: 140px;
  padding: 10px 20px; display: flex; flex-direction: column; gap: 4px;
}
.qs-field label {
  font-size: 0.7rem; font-weight: 600; color: var(--navy);
  letter-spacing: 0.8px; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.qs-field input,
.qs-field select {
  border: none; outline: none; font-size: 0.92rem;
  color: var(--text-dark); font-weight: 500;
  background: transparent; cursor: pointer;
}
.qs-sep { width: 1px; height: 44px; background: rgba(27,82,160,0.12); }
.qs-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--blue-mid));
  color: var(--white); font-weight: 700; font-size: 0.9rem;
  transition: var(--transition); white-space: nowrap;
  margin: 4px; flex-shrink: 0;
}
.qs-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ═══════════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════════ */
.section-eyebrow {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--navy); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--navy-dark); font-weight: 600; line-height: 1.18;
}
.section-title em { color: var(--navy); font-style: italic; }
.section-subtitle {
  color: var(--text-light); font-size: 0.95rem;
  line-height: 1.75; margin-top: 12px;
}
.section-header { text-align: center; margin-bottom: 52px; }

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--sky-pale) 100%);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-images {
  position: relative; height: 520px;
}
.ai-main {
  position: absolute; top: 0; left: 0;
  width: 78%; height: 80%;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ai-main img { width: 100%; height: 100%; object-fit: cover; }
.ai-secondary {
  position: absolute; bottom: 0; right: 0;
  width: 52%; height: 50%;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.ai-secondary img { width: 100%; height: 100%; object-fit: cover; }
.ai-badge {
  position: absolute; bottom: 80px; left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark); padding: 14px 20px; border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  box-shadow: var(--shadow-md);
}
.ai-badge i { font-size: 1.4rem; margin-bottom: 4px; }
.ai-badge span { font-weight: 700; font-size: 0.9rem; }
.ai-badge small { font-size: 0.72rem; opacity: 0.75; }

.about-content { display: flex; flex-direction: column; gap: 20px; }
.about-lead {
  font-size: 1.08rem; color: var(--navy-dark);
  font-weight: 500; line-height: 1.75;
}
.about-body { color: var(--text-mid); line-height: 1.8; font-size: 0.93rem; }
.about-pillars { display: flex; flex-direction: column; gap: 16px; margin: 4px 0; }
.ap-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.ap-item i {
  flex-shrink: 0; width: 42px; height: 42px;
  background: var(--sky-pale); color: var(--navy);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.ap-item strong { display: block; font-size: 0.9rem; color: var(--navy-dark); margin-bottom: 2px; }
.ap-item span   { font-size: 0.8rem; color: var(--text-light); }

/* ═══════════════════════════════════════════════
   ROOMS
═══════════════════════════════════════════════ */
.rooms-section {
  padding: 80px 0 100px;
  background: var(--white);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s ease;
  position: relative;
  transform-style: preserve-3d;
}
.room-card:hover { box-shadow: var(--shadow-lg); }
.featured-room {
  box-shadow: 0 0 0 2px var(--gold), var(--shadow-md);
}
.featured-room:hover { box-shadow: 0 0 0 2px var(--gold), var(--shadow-lg); }
.featured-label {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark); font-size: 0.72rem; font-weight: 700;
  padding: 6px 16px; text-align: center; letter-spacing: 1px;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* Card Gallery */
.rc-gallery {
  position: relative; overflow: hidden;
  height: 240px; background: var(--sky-pale);
}
.featured-room .rc-gallery { margin-top: 28px; }
.rc-gallery-track {
  display: flex; flex-wrap: nowrap; overflow: hidden;
  height: 100%; transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
}
.rc-gallery-track img {
  min-width: 100%; flex-shrink: 0;
  height: 100%; width: 100%; object-fit: cover;
}
.rc-gal-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(7,27,62,0.65); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; transition: var(--transition);
  z-index: 5; opacity: 0;
}
.rc-gallery:hover .rc-gal-btn { opacity: 1; }
.rc-gal-btn.prev { left: 10px; }
.rc-gal-btn.next { right: 10px; }
.rc-gal-btn:hover { background: var(--navy); transform: translateY(-50%) scale(1.1); }
.rc-badge {
  position: absolute; bottom: 12px; left: 14px;
  font-size: 0.7rem; font-weight: 700; padding: 4px 12px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 1px;
  z-index: 4;
}
.bay-badge     { background: rgba(27,82,160,0.88); color: var(--white); }
.deluxe-badge  { background: rgba(10,46,92,0.88);  color: var(--gold); }
.sea-badge     { background: rgba(78,168,222,0.88); color: var(--white); }
.suite-badge   { background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--navy-dark); }
.rc-photo-count {
  position: absolute; bottom: 12px; right: 14px;
  background: rgba(0,0,0,0.5); color: var(--white);
  font-size: 0.7rem; padding: 3px 10px; border-radius: 20px; z-index: 4;
}

/* Card Body */
.rc-body { padding: 22px 22px 20px; }
.rc-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 12px;
}
.rc-meta span {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.72rem; color: var(--text-light);
}
.rc-meta i { color: var(--navy); }
.rc-name {
  font-family: var(--font-serif); font-size: 1.5rem;
  color: var(--navy-dark); margin-bottom: 8px; font-weight: 600;
}
.rc-desc { font-size: 0.84rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; }

.rc-features-row {
  display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px;
}
.rc-features-row span {
  display: flex; align-items: center; gap: 5px;
  background: var(--sky-pale); color: var(--navy-dark);
  font-size: 0.72rem; font-weight: 500;
  padding: 4px 10px; border-radius: 20px;
}
.rc-features-row i { color: var(--navy); }

.rc-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(27,82,160,0.08); padding-top: 16px;
}
.rc-price { display: flex; align-items: baseline; gap: 4px; }
.rp-from  { font-size: 0.72rem; color: var(--text-light); }
.rp-num   { font-family: var(--font-serif); font-size: 1.6rem; color: var(--navy); font-weight: 700; }
.rp-unit  { font-size: 0.72rem; color: var(--text-light); }

.rc-actions { display: flex; gap: 8px; }
.btn-details {
  padding: 9px 18px; border-radius: 30px;
  border: 2px solid var(--navy); color: var(--navy);
  font-size: 0.82rem; font-weight: 600; transition: var(--transition);
}
.btn-details:hover { background: var(--navy); color: var(--white); }
.btn-book {
  padding: 9px 18px; border-radius: 30px;
  background: linear-gradient(135deg, var(--navy), var(--blue-mid));
  color: var(--white); font-size: 0.82rem; font-weight: 600;
  transition: var(--transition);
}
.btn-book:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ═══════════════════════════════════════════════
   WAVE DIVIDER + STATS
═══════════════════════════════════════════════ */
.wave-divider-section {
  position: relative; height: 300px; overflow: hidden;
}
.wave-canvas-divider {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.wd-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; align-items: center;
}
.wd-stats-row {
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
  width: 100%;
}
.wd-stat {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 20px 48px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.wd-stat:last-child { border-right: none; }
.wd-stat i { color: var(--gold); font-size: 1.4rem; margin-bottom: 4px; }
.wd-stat .as-num,
.wd-stat .as-suf,
.wd-stat .as-suf-only {
  font-family: var(--font-serif); font-size: 2.6rem;
  font-weight: 700; color: var(--white); line-height: 1;
}
.wd-stat small { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ═══════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════ */
.gallery-section {
  padding: 80px 0;
  background: var(--sand);
}
.gallery-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 36px;
}
.gt-btn {
  padding: 9px 22px; border-radius: 30px;
  border: 2px solid rgba(27,82,160,0.18);
  font-size: 0.82rem; font-weight: 600; color: var(--navy);
  transition: var(--transition); background: var(--white);
}
.gt-btn:hover,
.gt-btn.active {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

.gallery-masonry {
  columns: 4; column-gap: 14px;
}
.gm-item {
  break-inside: avoid; margin-bottom: 14px;
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
  transition: var(--transition);
}
.gm-item img {
  width: 100%; height: auto; display: block;
  transition: transform 0.5s ease;
}
.gm-item:hover img { transform: scale(1.06); }
.gm-item.gm-tall  { }
.gm-item.gm-wide  { }
.gm-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,27,62,0.75) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 14px;
  opacity: 0; transition: opacity 0.35s ease;
}
.gm-item:hover .gm-overlay { opacity: 1; }
.gm-overlay span { color: var(--white); font-size: 0.82rem; font-weight: 600; }

/* ═══════════════════════════════════════════════
   AMENITIES
═══════════════════════════════════════════════ */
.amenities-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--sky-pale) 0%, var(--white) 100%);
}
.am-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.am-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition); border: 1px solid rgba(27,82,160,0.06);
}
.am-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.am-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--sky-pale), #d4eaf9);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto 14px;
}
.am-card h4 { font-size: 0.9rem; color: var(--navy-dark); font-weight: 700; margin-bottom: 6px; }
.am-card p  { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }

/* ═══════════════════════════════════════════════
   LOCATION
═══════════════════════════════════════════════ */
.location-section {
  padding: 90px 0;
  background: var(--white);
}
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.loc-content { display: flex; flex-direction: column; gap: 22px; }
.loc-content p { color: var(--text-mid); line-height: 1.8; font-size: 0.93rem; }

.loc-address {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--sky-pale); border-radius: var(--radius);
  padding: 18px 20px;
}
.loc-address i { color: var(--navy); font-size: 1.1rem; margin-top: 2px; }
.loc-address strong { color: var(--navy-dark); font-size: 0.92rem; }
.loc-address div { font-size: 0.84rem; color: var(--text-mid); line-height: 1.65; }

.loc-landmarks h4 {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--navy); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.lm-list { display: flex; flex-direction: column; gap: 8px; }
.lm-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; border-radius: var(--radius-sm);
  background: var(--sky-pale); transition: var(--transition);
}
.lm-item:hover { background: #daeeff; }
.lm-name { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--text-dark); }
.lm-name i { color: var(--navy); width: 14px; }
.lm-dist { font-size: 0.78rem; font-weight: 700; color: var(--navy); }

.loc-map-wrap { display: flex; flex-direction: column; gap: 16px; }
.loc-map-embed {
  height: 350px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.loc-map-embed iframe { width: 100%; height: 100%; border: none; }

.loc-info-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.lic-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--sky-pale); border-radius: var(--radius);
  padding: 14px 16px;
}
.lic-card i { color: var(--navy); font-size: 1.1rem; flex-shrink: 0; }
.lic-card strong { display: block; font-size: 0.8rem; color: var(--navy-dark); font-weight: 700; }
.lic-card span   { font-size: 0.78rem; color: var(--text-light); }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testi-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.testi-section .section-eyebrow { color: var(--gold); }
.testi-section .section-title   { color: var(--white); }
.testi-section .section-title em { color: var(--gold); }

.testi-carousel {
  position: relative; display: flex; align-items: center; gap: 16px;
  max-width: 820px; margin: 0 auto 24px;
}
.testi-viewport { flex: 1; overflow: hidden; border-radius: var(--radius-lg); }
.testi-track   { display: flex; flex-wrap: nowrap; overflow: hidden; }
.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg); padding: 36px 40px;
  min-width: 100%;
}
.tc-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 18px; display: flex; gap: 4px; }
.tc-text  { color: rgba(255,255,255,0.88); line-height: 1.8; font-size: 0.95rem; margin-bottom: 24px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 14px; }
.tc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(245,200,66,0.2); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.tc-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.tc-author span   { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.tc-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.tc-btn:hover { background: var(--gold); color: var(--navy-dark); }

.testi-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 4px;
}
.tcd {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); transition: var(--transition);
}
.tcd.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* ═══════════════════════════════════════════════
   BOOKING SECTION
═══════════════════════════════════════════════ */
.booking-section {
  position: relative; padding: 100px 0;
  overflow: hidden;
}
.booking-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.22) saturate(0.7);
}
.booking-wrap {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
  align-items: start;
}
.booking-info { padding-top: 8px; }
.bi-perks { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.bp-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.88); font-size: 0.88rem; font-weight: 500;
}
.bp-item i { color: var(--gold); font-size: 1rem; width: 18px; }
.bi-contact { display: flex; flex-direction: column; gap: 10px; }
.bi-contact div {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.7); font-size: 0.86rem;
}
.bi-contact i { color: var(--sky); font-size: 0.95rem; width: 18px; }

.booking-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-lg);
}
.bf-title {
  font-family: var(--font-serif); font-size: 1.6rem;
  color: var(--navy-dark); margin-bottom: 24px; font-weight: 600;
}
.booking-form { display: flex; flex-direction: column; gap: 14px; }
.bf-row { display: flex; gap: 14px; }
.bf-row.two-col .bf-field { flex: 1; }
.bf-field { display: flex; flex-direction: column; gap: 6px; }
.bf-field label {
  font-size: 0.72rem; font-weight: 600; color: var(--navy);
  letter-spacing: 0.8px; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.bf-field input,
.bf-field select,
.bf-field textarea {
  border: 1.5px solid rgba(27,82,160,0.16);
  border-radius: var(--radius-sm);
  padding: 11px 14px; font-size: 0.9rem;
  color: var(--text-dark); background: var(--white);
  transition: var(--transition); outline: none;
  width: 100%;
}
.bf-field input:focus,
.bf-field select:focus,
.bf-field textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,82,160,0.12);
}
.bf-field textarea { resize: vertical; min-height: 88px; }

.price-preview {
  background: var(--sky-pale); border-radius: var(--radius);
  padding: 16px 18px; transition: opacity 0.3s ease;
}
.pp-row {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; color: var(--text-mid); padding: 4px 0;
}
.pp-row.pp-total {
  font-size: 1rem; font-weight: 700; color: var(--navy);
  border-top: 1px solid rgba(27,82,160,0.15); margin-top: 8px; padding-top: 10px;
}

.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-mid) 100%);
  color: var(--white); font-size: 1rem; font-weight: 700;
  transition: var(--transition); width: 100%;
  letter-spacing: 0.5px;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(27,82,160,0.4); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  position: relative;
}
.footer-wave {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: rotate(180deg);
}
.footer-wave svg { display: block; width: 100%; height: 80px; }
.footer-body { padding: 80px 0 32px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 40px; margin-bottom: 48px;
}
.fg-brand .f-logo { width: 160px; margin-bottom: 16px; opacity: 0.9; }
.fg-brand p { color: rgba(255,255,255,0.55); font-size: 0.83rem; line-height: 1.8; }
.f-socials {
  display: flex; gap: 12px; margin-top: 20px;
}
.f-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.f-socials a:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }

.fg-col h5 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.fg-col li + li { margin-top: 10px; }
.fg-col a {
  font-size: 0.84rem; color: rgba(255,255,255,0.58);
  transition: var(--transition);
}
.fg-col a:hover { color: var(--white); }

.f-contact-list { display: flex; flex-direction: column; gap: 12px; }
.f-contact-list div {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: rgba(255,255,255,0.58); line-height: 1.5;
}
.f-contact-list i { color: var(--sky); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.fb-links { display: flex; gap: 20px; }
.fb-links a { font-size: 0.78rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.fb-links a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════
   MODALS
═══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(7,27,62,0.75); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white); border-radius: var(--radius-lg);
  max-height: 90vh; overflow-y: auto;
  animation: fadeIn 0.4s ease; position: relative;
  width: 100%;
}
.room-modal-box    { max-width: 680px; }
.success-modal-box { max-width: 480px; }
.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.15); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.modal-close:hover { background: rgba(0,0,0,0.35); }

/* Room Modal Body */
.rm-gallery-wrap {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.rm-body { padding: 24px 28px 28px; }
.rm-feats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin: 16px 0;
}
.rm-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--text-dark);
}
.rm-feat i { color: var(--navy); width: 16px; }
.rm-price-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--sky-pale); border-radius: var(--radius);
  padding: 16px 20px; margin-top: 16px;
}
.btn-book-room {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 30px;
  background: linear-gradient(135deg, var(--navy), var(--blue-mid));
  color: var(--white); font-size: 0.88rem; font-weight: 600;
  transition: var(--transition);
}
.btn-book-room:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ═══════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════ */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lb-content {
  max-width: 90vw; max-height: 85vh;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.lb-content img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain; border-radius: var(--radius);
  animation: fadeIn 0.3s ease;
}
.lb-caption { color: rgba(255,255,255,0.7); font-size: 0.84rem; text-align: center; }
.lb-close {
  position: absolute; top: 18px; right: 18px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--transition);
}
.lb-close:hover { background: rgba(255,255,255,0.25); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.lb-nav.prev { left: 18px; }
.lb-nav.next { right: 18px; }
.lb-nav:hover { background: var(--gold); color: var(--navy-dark); }

/* ═══════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--navy-dark); color: var(--white);
  padding: 12px 26px; border-radius: 30px; font-size: 0.86rem;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); z-index: 2000;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
}
.toast i { color: var(--gold); }
.toast.show { transform: translateX(-50%) translateY(0); }

/* BACK TO TOP */
.back-top {
  position: fixed; bottom: 28px; right: 24px; z-index: 800;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue-mid));
  color: var(--white); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
}
.back-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-top:hover   { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .gallery-masonry { columns: 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-book-btn { display: none; }
  .nav-ham { display: flex; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: 66px; left: 0; right: 0;
    background: rgba(7,27,62,0.97);
    padding: 20px 24px; gap: 8px; z-index: 898;
    backdrop-filter: blur(16px);
    animation: slideDown 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.mobile-open .nl { font-size: 1rem; padding: 12px 16px; }

  .about-grid    { grid-template-columns: 1fr; }
  .about-images  { height: 340px; }
  .location-grid { grid-template-columns: 1fr; }
  .booking-wrap  { grid-template-columns: 1fr; }
  .wd-stats-row  { gap: 0; }
  .wd-stat       { padding: 16px 24px; }
  .gallery-masonry { columns: 2; }
  .qs-bar { transform: translateY(0); border-radius: 0; box-shadow: var(--shadow-md); }
  .qs-field { min-width: 50%; }
  .qs-sep   { display: none; }
}

@media (max-width: 640px) {
  .hero-title  { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-stats  { gap: 0; padding: 14px 20px; }
  .hs-item     { padding: 0 14px; }
  .hs-divider  { height: 28px; }
  .rooms-grid  { grid-template-columns: 1fr; }
  .am-grid     { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 1; }
  .bf-row.two-col  { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testi-carousel { gap: 8px; }
  .tc-btn { width: 36px; height: 36px; }
  .loc-info-cards { grid-template-columns: 1fr 1fr; }
  .rm-feats { grid-template-columns: 1fr; }
}

/* ── FLOATING WHATSAPP BUTTON ───────────────────────────────────── */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 165px;
  right: 28px;
  z-index: 850;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  border: 2px solid #25d366;
  border-radius: 40px;
  padding: 8px 18px 8px 10px;
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(18,140,126,0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}
.floating-whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 36px rgba(18,140,126,0.45);
}
.wa-icon-3d {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}
.floating-whatsapp-btn:hover .wa-icon-3d {
  transform: rotate(10deg) scale(1.08);
}
.wa-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.wa-title {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.wa-sub {
  font-size: 0.68rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wa-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.wa-status-dot.online {
  background-color: #25d366;
  box-shadow: 0 0 8px #25d366;
}
.wa-status-dot.offline {
  background-color: #ff3b30;
  box-shadow: 0 0 8px #ff3b30;
}

@media (max-width: 768px) {
  .floating-whatsapp-btn {
    bottom: 95px;
    left: 20px;
    right: auto;
    padding: 8px;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(18,140,126,0.4);
  }
  .wa-text-wrap {
    display: none;
  }
  .wa-icon-3d {
    width: 38px;
    height: 38px;
  }
}

/* ═══════════════════════════════════════════════
   HOTEL MANAGEMENT SYSTEM & FULLCALENDAR STYLES
═══════════════════════════════════════════════ */
.availability-status-box {
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

/* FullCalendar Customizations */
.fc {
  font-family: var(--font-sans) !important;
}
.fc-header-toolbar {
  margin-bottom: 1.2rem !important;
}
.fc-button-primary {
  background-color: var(--navy) !important;
  border-color: var(--navy) !important;
  color: var(--white) !important;
  box-shadow: none !important;
  text-transform: capitalize !important;
  font-weight: 600 !important;
}
.fc-button-primary:hover, .fc-button-primary:focus {
  background-color: var(--navy-dark) !important;
  border-color: var(--navy-dark) !important;
}
.fc-event {
  cursor: pointer;
  border-radius: 4px;
  padding: 2px 5px;
  font-size: 0.8rem;
  font-weight: 600;
}
.fc-daygrid-day-number {
  color: var(--navy-dark);
  font-weight: 600;
  text-decoration: none;
}
