/* ═══════════════════════════════════════════════════════════
   MAXXVALUE HOTELS — Taj-Inspired Theme
   Palette: Gold #1B998B · Dark #1C1A17 · Cream #FAF8F4
   ═══════════════════════════════════════════════════════════ */

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

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: #2D2418;
  overflow-x: hidden;
}

/* ── TOKENS ── */
:root {
  --gold:        #1B998B;
  --gold-light:  #3DB8A8;
  --gold-pale:   #E8F7F5;
  --dark:        #1C1A17;
  --dark2:       #2D2418;
  --cream:       #FAF8F4;
  --mid:         #6B5F4E;
  --border:      #E8E2D8;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', Helvetica, sans-serif;
}

/* ════════════════════════════════════
   HEADER
════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  gap: 32px;
}

/* Logo */
.nav-logo { flex-shrink: 0; background: #fff; border-radius: 4px; padding: 4px 8px; }
.nav-logo a { display: block; line-height: 0; text-decoration: none; }
.nav-logo img { height: 68px; width: auto; display: block; object-fit: contain; max-width: 200px; background: #fff; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav-links > li > a {
  display: block;
  padding: 8px 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark2);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links > li > a:hover { color: var(--gold); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 320px;
  border-top: 2px solid var(--gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  padding: 12px 0 16px;
  z-index: 10000;
}
.has-dropdown:hover .dropdown-panel { display: block; }
.dp-city {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px 24px 5px;
}
.dropdown-panel a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 24px 7px 32px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark2);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.dropdown-panel a::before { content: '›'; color: var(--gold); font-size: 1.1rem; }
.dropdown-panel a:hover { background: var(--cream); color: var(--gold); }

/* BOOK NOW */
.btn-book-nav {
  flex-shrink: 0;
  display: inline-block;
  background: var(--gold);
  color: #fff !important;
  padding: 12px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-book-nav:hover { background: var(--gold-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--dark2); }

/* ════════════════════════════════════
   HERO — FULLSCREEN VIDEO
════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 76px;
}

/* Video layer */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Photo slideshow layer (alternative to video) */
.hero-slides-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease-in-out;
}
.hero-slide.active { opacity: 1; }

/* Gradient overlay — light at top, darker at bottom for booking bar */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.0)  40%,
    rgba(0,0,0,0.45) 75%,
    rgba(0,0,0,0.68) 100%
  );
}

/* Mute toggle button — bottom right of hero */
.hero-mute-btn {
  position: absolute;
  bottom: 110px;
  right: 28px;
  z-index: 6;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.45);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-mute-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.8);
}
.hero-mute-btn svg {
  width: 18px; height: 18px;
  stroke: #fff;
  fill: none;
  pointer-events: none;
}

/* Booking bar */
.booking-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  background: rgba(28,26,23,0.82);
  backdrop-filter: blur(6px);
}
.booking-bar-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 20px 30px 16px;
}
.booking-fields-row {
  display: flex;
  align-items: stretch;
  gap: 2px;
}
.bfield {
  background: #fff;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
}
.bfield-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.bfield-row { display: flex; align-items: center; gap: 8px; }
.bfield-icon { color: #bbb; font-size: 0.9rem; flex-shrink: 0; }
.bfield select, .bfield input[type="date"] {
  background: transparent;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--dark2);
  width: 100%;
  cursor: pointer;
}
/* Uppercase date format placeholders (DD-MM-YYYY) */
.bfield input[type="date"]::-webkit-datetime-edit-day-field,
.bfield input[type="date"]::-webkit-datetime-edit-month-field,
.bfield input[type="date"]::-webkit-datetime-edit-year-field,
.bfield input[type="date"]::-webkit-datetime-edit-text {
  text-transform: uppercase;
}
.btn-book-bar {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.btn-book-bar:hover { background: var(--gold-light); }
.booking-sub-row {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.booking-sub-row a {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.booking-sub-row a:hover { color: var(--gold-light); }

/* ════════════════════════════════════
   SECTION BASE
════════════════════════════════════ */
.section { padding: 90px 32px; }
.section-dark { padding: 90px 32px; background: var(--dark); color: #fff; }
.section-cream { padding: 90px 32px; background: var(--cream); }
.wrap { max-width: 1200px; margin: 0 auto; }

/* Taj-style section title: — TITLE — */
.section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  max-width: 60px;
}
.section-label span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.section-label-dark span { color: var(--gold-light); }
.section-label-dark::before,
.section-label-dark::after { background: var(--gold-light); }

.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark2);
  margin-bottom: 18px;
}
.h2-white { color: #fff; }
.h2-center { text-align: center; }
.lead {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--mid);
  max-width: 540px;
}
.lead-white { color: rgba(255,255,255,0.75); }

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  padding: 14px 36px;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s;
}
.more-link::after { content: '›'; font-size: 1.1rem; }
.more-link:hover { gap: 10px; }
.more-link-white { color: rgba(255,255,255,0.75); }
.more-link-white:hover { color: #fff; }

/* ════════════════════════════════════
   AWARD BANNER (centered brand stamp)
════════════════════════════════════ */
#brand-banner {
  background: #fff;
  padding: 64px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.brand-logo-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 16px;
}
.brand-banner-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--dark2);
  margin-bottom: 14px;
}
.brand-banner-title::before,
.brand-banner-title::after {
  content: '';
  width: 56px;
  height: 1px;
  background: var(--gold);
}
.brand-banner-sub {
  font-size: 0.88rem;
  color: var(--mid);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ════════════════════════════════════
   OFFERS / HOTELS GRID
════════════════════════════════════ */
#hotels { background: #fff; }
.hotels-hdr {
  margin-bottom: 50px;
}
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.prop-card {
  background: #fff;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: transform 0.3s;
}
.prop-card:hover { transform: translateY(-4px); }
.prop-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.prop-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.prop-card:hover .prop-card-img img { transform: scale(1.06); }
.prop-type-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
}
.prop-body { padding: 20px 4px 10px; }
.prop-city {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.prop-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark2);
  line-height: 1.3;
  margin-bottom: 8px;
}
.prop-sub {
  font-size: 0.82rem;
  color: var(--mid);
  margin-bottom: 14px;
  line-height: 1.6;
}
.prop-link { }

/* ════════════════════════════════════
   EXCLUSIVELY FOR YOU (compact collage)
════════════════════════════════════ */
#exclusively {
  background: linear-gradient(140deg, #151E1C 0%, #1B2E2A 55%, #1F3530 100%);
  padding: 52px 32px;
  position: relative;
  overflow: hidden;
}
/* Subtle teal glow top-right */
#exclusively::before {
  content: '';
  position: absolute;
  top: -60px; right: -40px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(27,153,139,0.11) 0%, transparent 68%);
  pointer-events: none;
}
/* Subtle gold glow bottom-left */
#exclusively::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -30px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(184,149,42,0.08) 0%, transparent 65%);
  pointer-events: none;
}
/* Outer grid: text | collage */
.excl-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: center;
  position: relative; z-index: 1;
}
/* Text panel */
.excl-text {}
.excl-text .h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.25;
}
.excl-text .lead {
  margin-top: 12px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  opacity: 0.78;
  line-height: 1.6;
}

/* ── Bento collage grid ─────────────────
   Layout (3 photos, fixed height 320px):
   ┌───────────────┬──────────┐
   │               │  card 2  │
   │   card 1      ├──────────┤
   │   (tall)      │  card 3  │
   └───────────────┴──────────┘
──────────────────────────────────────── */
.excl-cards {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 320px;         /* fixed height = compact, no tall scroll */
}
.excl-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 5px;
}
/* Card 1: big photo spanning both rows on left */
.excl-card:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
}
/* Card 2 & 3: stacked on right */
.excl-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.excl-card:nth-child(3) { grid-column: 2; grid-row: 2; }

.excl-card-img {
  width: 100%; height: 100%;      /* fill the grid cell */
  overflow: hidden;
}
.excl-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s;
  filter: brightness(0.72);
}
.excl-card:hover .excl-card-img img { transform: scale(1.05); filter: brightness(0.88); }
.excl-card-label {
  position: absolute;
  bottom: 10px; left: 12px; right: 12px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ════════════════════════════════════
   DINING
════════════════════════════════════ */
#dining { background: var(--cream); }
.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.dining-img {
  overflow: hidden;
}
.dining-img img {
  width: 100%; height: 480px;
  object-fit: cover; display: block;
  transition: transform 0.6s;
}
.dining-img:hover img { transform: scale(1.04); }
.dining-text .lead { margin-top: 16px; margin-bottom: 28px; }

/* ════════════════════════════════════
   WHY BOOK DIRECT
════════════════════════════════════ */
#why-direct { background: #fff; }
.why-hdr { text-align: center; margin-bottom: 52px; }
.why-hdr .section-label { justify-content: center; }
.why-hdr .section-label::before,
.why-hdr .section-label::after { max-width: 50px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.why-item { text-align: center; }
.why-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}
.why-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark2);
  margin-bottom: 10px;
}
.why-item p { font-size: 0.82rem; color: var(--mid); line-height: 1.75; }

/* ════════════════════════════════════
   REVIEWS
════════════════════════════════════ */
#reviews { background: var(--cream); }
.reviews-hdr { text-align: center; margin-bottom: 48px; }
.reviews-hdr .section-label { justify-content: center; }
.reviews-hdr .section-label::before,
.reviews-hdr .section-label::after { max-width: 50px; }
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.rev-card {
  background: #fff;
  padding: 36px 32px;
  border-top: 2px solid var(--gold);
}
.rev-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 3px; margin-bottom: 16px; }
.rev-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark2);
  line-height: 1.75;
  margin-bottom: 20px;
}
.rev-author { font-size: 0.72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark2); }
.rev-date { font-size: 0.72rem; color: var(--mid); margin-top: 4px; }

/* ════════════════════════════════════
   CTA BANNER
════════════════════════════════════ */
#cta-villa {
  position: relative;
  padding: 120px 32px;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
#cta-villa::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(28,26,23,0.62);
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto;
}
.cta-inner .section-label { justify-content: center; }
.cta-inner .section-label::before,
.cta-inner .section-label::after { background: var(--gold-light); }
.cta-inner .h2 { color: #fff; margin: 12px 0 16px; }
.cta-inner p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.8; margin-bottom: 32px; }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
#footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 32px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 58px; width: auto; margin-bottom: 20px; display: block; }
/* .logo-on-dark img — white background removed; use transparent/white PNG for footer logo */
.logo-on-dark img { background: none; border-radius: 0; padding: 0; }
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-col h4 {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  font-size: 0px;
}
.footer-socials a:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-subscribe {
  display: flex;
  gap: 0;
  margin-top: 16px;
}
.footer-subscribe input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: #fff;
  outline: none;
}
.footer-subscribe input::placeholder { color: rgba(255,255,255,0.35); }
.footer-subscribe button {
  background: var(--gold);
  border: none;
  padding: 10px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.footer-subscribe button:hover { background: var(--gold-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ════════════════════════════════════
   FLOATING BUTTONS
════════════════════════════════════ */
/* WhatsApp FAB + popup */
.fab-wa-wrap {
  position: fixed;
  bottom: 26px; left: 26px;
  z-index: 8888;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.fab-wa-popup {
  display: none;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  padding: 12px 14px;
  min-width: 210px;
}
.fab-wa-popup.open { display: flex; }
.fab-wa-popup a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1C1A17;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 4px;
  border-radius: 6px;
  transition: background 0.15s;
}
.fab-wa-popup a:hover { background: #f0fdf4; }
.fab-wa-popup a svg { width: 20px; height: 20px; fill: #25D366; flex-shrink: 0; }
.fab-wa-popup .wa-label { font-size: 0.72rem; color: #888; display: block; margin-bottom: 4px; padding: 0 4px; }
.fab-wa {
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  transition: transform 0.2s;
  border: none;
}
.fab-wa:hover { transform: scale(1.1); }
.fab-wa svg { width: 26px; height: 26px; fill: #fff; }

/* Instagram FAB */
.fab-ig {
  width: 52px; height: 52px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(214,36,159,0.35);
  transition: transform 0.2s;
}
.fab-ig:hover { transform: scale(1.1); }
.fab-ig svg { width: 26px; height: 26px; fill: #fff; }

.fab-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 8888;
  box-shadow: 0 4px 14px rgba(184,149,42,0.45);
  opacity: 0;
  transition: opacity 0.3s, transform 0.2s;
}
.fab-top.show { opacity: 1; }
.fab-top:hover { transform: translateY(-2px); }
.fab-top svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ════════════════════════════════════
   MOBILE MENU
════════════════════════════════════ */
.mob-menu {
  display: none;
  position: fixed; inset: 0; z-index: 19999;
  background: var(--dark);
  flex-direction: column;
  overflow-y: auto;
}
.mob-menu.open { display: flex; }
.mob-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mob-head img { height: 48px; }
.mob-close {
  background: none; border: none;
  font-size: 1.9rem; color: rgba(255,255,255,0.6);
  cursor: pointer; line-height: 1;
}
.mob-close:hover { color: #fff; }
.mob-body { flex: 1; }
.mob-body a {
  display: block;
  padding: 14px 24px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mob-body a:hover { color: var(--gold-light); }
.mob-city {
  padding: 12px 24px 4px 34px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.mob-prop {
  padding-left: 42px !important;
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.5) !important;
}
.mob-foot { padding: 24px; }

/* ════════════════════════════════════
   BOOKING MODAL
════════════════════════════════════ */
.modal-bg {
  display: none; position: fixed; inset: 0; z-index: 20000;
  background: rgba(0,0,0,0.65);
  align-items: flex-start; justify-content: center;
  padding: 40px 16px 32px; overflow-y: auto;
  backdrop-filter: blur(2px);
}
.modal-bg.open { display: flex; }
.modal-box {
  background: #fff; width: 100%; max-width: 520px;
  border-radius: 12px; padding: 36px 36px 28px;
  position: relative;
  box-shadow: 0 20px 70px rgba(0,0,0,0.35);
  animation: mdlIn 0.25s ease; flex-shrink: 0;
}
@keyframes mdlIn {
  from { transform: translateY(-18px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
.modal-x {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none;
  font-size: 1.4rem; color: #bbb; cursor: pointer; line-height: 1;
}
.modal-x:hover { color: var(--dark2); }
.modal-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 400;
  color: var(--dark2); margin-bottom: 16px;
}

/* ── BOOKING MODE TABS ── */
.mdl-choice-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--border); border-radius: 8px;
  overflow: hidden; margin-bottom: 20px;
}
.mdl-choice-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; padding: 11px 10px;
  background: #f9f7f3; border: none; cursor: pointer;
  transition: background 0.18s; border-right: 1.5px solid var(--border);
}
.mdl-choice-card:last-child { border-right: none; }
.mdl-choice-card.active { background: var(--gold); color: #fff; }
.mdl-choice-card.active .mcc-sub { color: rgba(255,255,255,0.8); }
.mcc-icon  { font-size: 1.1rem; }
.mcc-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.4px; }
.mcc-sub   { font-size: 0.63rem; color: var(--mid); }

/* ── FORM FIELDS ── */
.mf { margin-bottom: 13px; }
.mf label {
  display: block; font-size: 0.58rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 5px;
}
.mf input, .mf select, .mf textarea {
  width: 100%; padding: 10px 13px; box-sizing: border-box;
  border: 1px solid var(--border); border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; color: var(--dark2);
  outline: none; transition: border-color 0.2s; background: #fff;
}
.mf input:focus, .mf select:focus, .mf textarea:focus { border-color: var(--gold); }
.mf textarea { height: 80px; resize: vertical; }
.mf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── INLINE GUEST COUNTER ── */
.mdl-counter {
  display: flex; align-items: stretch;
  border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
}
.mdl-counter button {
  width: 38px; min-height: 40px; border: none;
  background: #f5f2ec; color: var(--gold);
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s; flex-shrink: 0;
}
.mdl-counter button:hover { background: rgba(184,149,42,0.15); }
.mdl-counter input {
  flex: 1; border: none !important; border-left: 1px solid var(--border) !important;
  border-right: 1px solid var(--border) !important; border-radius: 0 !important;
  text-align: center; font-weight: 600; padding: 0 !important;
  pointer-events: none; background: #fff; min-height: 40px;
}

/* ── SECTION DIVIDER ── */
.mf-divider {
  display: flex; align-items: center; gap: 10px; margin: 16px 0 13px;
}
.mf-divider::before, .mf-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.mf-divider span {
  font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--mid); white-space: nowrap;
}

/* ── ROOM PICKER (modal) ── */
.mdl-room-picker { display: flex; flex-direction: column; gap: 7px; }
.mdl-rp-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px; border-radius: 7px;
  border: 1.5px solid var(--border); background: #faf9f6;
  transition: border-color 0.18s, background 0.18s;
}
.mdl-rp-row.selected { border-color: var(--gold); background: rgba(184,149,42,0.07); }
.mdl-rp-info { display: flex; flex-direction: column; gap: 1px; }
.mdl-rp-name  { font-size: 0.86rem; font-weight: 500; color: var(--dark2); }
.mdl-rp-price { font-size: 0.74rem; color: var(--gold); }
.mdl-rp-ctrl  { display: flex; align-items: center; gap: 8px; }
.mdl-rp-btn {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid rgba(184,149,42,0.45);
  background: transparent; color: var(--gold);
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.mdl-rp-btn:hover { background: rgba(184,149,42,0.14); border-color: var(--gold); }
.mdl-rp-qty { min-width: 18px; text-align: center; font-size: 0.9rem; font-weight: 600; }

/* ── Unavailable room row ── */
.mdl-rp-row.mdl-rp-unavail {
  opacity: 0.52;
  background: rgba(200,200,200,0.08);
  border-color: rgba(180,180,180,0.2);
  cursor: not-allowed;
  pointer-events: none;
}
.mdl-rp-unavail-tag {
  font-size: 0.71rem;
  font-weight: 500;
  color: #c0392b;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.mdl-rp-ctrl-disabled .mdl-rp-btn {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
/* Live inventory "Only X left" badge */
.mdl-rp-low {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: #E65100;
  background: #FFF3E0;
  border: 1px solid #FFCC80;
  border-radius: 10px;
  padding: 2px 8px;
  margin-left: 6px;
  letter-spacing: 0.1px;
}

/* ── PRICE SUMMARY ── */
.mdl-price-summary {
  background: #f9f6ef; border: 1px solid rgba(184,149,42,0.2);
  border-radius: 7px; padding: 11px 13px; margin-bottom: 13px;
}
.mdl-ps-row {
  display: flex; justify-content: space-between;
  font-size: 0.79rem; color: var(--mid); padding: 2px 0;
}
.mdl-ps-total {
  font-weight: 700; font-size: 0.88rem; color: var(--dark2);
  border-top: 1px solid var(--border); padding-top: 7px; margin-top: 4px;
}

/* ── ACTION BUTTON ── */
.btn-modal {
  width: 100%; padding: 13px; border-radius: 4px;
  background: var(--gold); color: #fff; border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; margin-top: 6px;
}
.btn-modal:hover { background: var(--gold-light); }

/* ── TRUST BAR ── */
.mdl-trust-bar {
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap; margin-top: 12px;
}
.mdl-trust-bar span { font-size: 0.63rem; color: var(--mid); }

/* ── SUCCESS STATE ── */
.mdl-success { text-align: center; padding: 20px 0 8px; }
.mdl-success-icon { font-size: 2.4rem; margin-bottom: 8px; }
.mdl-success h4 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.45rem;
  font-weight: 400; color: var(--dark2); margin-bottom: 8px;
}
.mdl-success p { font-size: 0.82rem; color: var(--mid); margin-bottom: 4px; }
.mdl-success-contact { font-weight: 600; color: var(--gold) !important; }

@media (max-width: 480px) {
  .modal-bg { padding: 20px 10px; }
  .modal-box { padding: 28px 18px 22px; }
  .mcc-sub { display: none; }
}

/* ════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */

/* ── Tablet (≤1024px) ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .excl-inner { grid-template-columns: 1fr; gap: 32px; }
  #exclusively { padding: 44px 24px; }
  .excl-cards { height: 260px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-wrap { padding: 0 20px; gap: 20px; }
  .section, .section-dark, .section-cream { padding: 72px 28px; }
}

/* ── Tablet-Portrait / Large Phone (≤860px) ───────────────── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .btn-book-nav { padding: 11px 20px; font-size: 0.62rem; }
  .props-grid { grid-template-columns: 1fr 1fr; }
  .dining-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr 1fr; }

  /* Booking bar — 2×2 on tablet */
  .booking-fields-row { flex-wrap: wrap; }
  .bfield { min-width: calc(50% - 1px); flex: 0 0 calc(50% - 1px); }
  .btn-book-bar { width: 100%; padding: 18px; font-size: 0.7rem; }
  .booking-bar { position: relative; bottom: auto; }
  #hero { padding-bottom: 0; }
}

/* ── Mobile (≤600px) ──────────────────────────────────────── */
@media (max-width: 600px) {
  .nav-wrap { height: 64px; padding: 0 16px; }
  #hero { margin-top: 64px; }
  .props-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .booking-fields-row { flex-direction: column; gap: 2px; }
  .bfield { min-width: 100%; flex: 1 1 100%; }
  .btn-book-bar { padding: 16px; }
  .section, .section-dark, .section-cream { padding: 56px 16px; }
  #cta-villa { background-attachment: scroll; padding: 80px 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  #footer { padding: 52px 20px 0; }
  /* Exclusive cards */
  .excl-cards { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; height: 200px; }
  .excl-card:first-child { grid-column: 1; grid-row: 1; }
  .excl-card:nth-child(3) { display: none; }
  /* Booking modal */
  .modal-bg { padding: 20px 10px; align-items: flex-end; }
  .modal-box { border-radius: 12px 12px 0 0; width: 100%; margin: 0; max-height: 88vh; overflow-y: auto; }
  /* Gallery */
  .gal-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Small Mobile (≤420px) ────────────────────────────────── */
@media (max-width: 420px) {
  .why-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .nav-wrap { padding: 0 12px; }
  .section-label { font-size: 0.58rem; }
  .h2 { font-size: 1.6rem !important; }
}

/* ════════════════════════════════════
   OFFERS WIDGET (left-side slider)
════════════════════════════════════ */
.offers-widget {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9000;
  display: flex;
  align-items: flex-start;
}
.offers-tab-btn {
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: 0 6px 6px 0;
  box-shadow: 2px 2px 12px rgba(0,0,0,0.18);
  writing-mode: horizontal-tb;
  min-width: 44px;
  transition: background 0.2s;
}
.offers-tab-btn:hover { background: #147a6e; }
.otb-icon { font-size: 1.2rem; line-height: 1; }
.otb-label {
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}
.offers-panel {
  background: var(--gold);
  color: #fff;
  width: 0;
  overflow: hidden;
  max-height: 340px;
  border-radius: 0 8px 8px 0;
  box-shadow: 4px 4px 20px rgba(0,0,0,0.22);
  transition: width 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.offers-panel.open {
  width: 280px;
}
.offers-close-btn {
  position: absolute;
  top: 8px; right: 10px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}
.offers-close-btn:hover { color: #fff; }
.op-slide {
  padding: 22px 20px 14px 20px;
  flex: 1;
}
.op-badge {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.op-title {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #fff;
}
.op-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin-bottom: 8px;
}
.op-dates {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  font-style: italic;
}
.op-cta {
  display: inline-block;
  background: #fff;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 4px;
  transition: background 0.2s;
}
.op-cta:hover { background: #e8f8f6; }
.op-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.08);
}
.op-nav button {
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.op-nav button:hover { background: rgba(255,255,255,0.15); }
.op-nav span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  min-width: 36px;
  text-align: center;
}

/* Admin offer cards */
.offer-admin-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}
.offer-inactive { opacity: 0.55; }
.oac-top { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.oac-badge {
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.oac-info { flex: 1; }
.oac-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.oac-prop { font-size: 0.75rem; color: var(--muted); }
.oac-status { font-size: 0.68rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; border-radius: 12px; white-space: nowrap; }
.st-on  { background: rgba(82,192,122,0.15); color: #3aaa6a; }
.st-off { background: rgba(224,82,82,0.12); color: #e05252; }
.st-exp { background: rgba(160,120,0,0.12); color: #9a7200; }
.oac-dates { font-size: 0.74rem; color: var(--muted); margin-top: 3px; }
.oac-desc { font-size: 0.82rem; color: var(--muted); margin-bottom: 10px; }
.oac-acts { display: flex; gap: 8px; flex-wrap: wrap; }

@media (max-width: 600px) {
  .offers-panel.open { width: 240px; }
  .otb-label { display: none; }
  .offers-tab-btn { padding: 12px 6px; }
}

/* ════════════════════════════════════
   SECTION BACK BAR (Gallery / Travels)
════════════════════════════════════ */
.section-back-bar {
  background: #f5f3ef;
  border-bottom: 1px solid rgba(27,153,139,0.15);
  padding: 12px 40px;
}
.section-back-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--green, #1B998B);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: color 0.2s;
}
.section-back-btn:hover { color: #147a6e; }

/* ════════════════════════════════════
   GALLERY SECTION
════════════════════════════════════ */
.gallery-hdr { text-align: center; margin-bottom: 32px; }
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 32px;
}
.gf-btn {
  padding: 6px 18px; border: 1.5px solid var(--border);
  background: #fff; border-radius: 20px;
  font-size: 0.78rem; font-family: var(--font-sans);
  letter-spacing: 0.8px; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s; color: var(--mid);
}
.gf-btn.active, .gf-btn:hover {
  background: var(--gold); color: #fff; border-color: var(--gold);
}
.gallery-grid {
  columns: 4 220px; column-gap: 12px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 12px;
  position: relative; overflow: hidden; border-radius: 6px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.4s ease; border-radius: 6px;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: #fff; font-size: 0.75rem; padding: 20px 10px 8px;
  border-radius: 0 0 6px 6px; opacity: 0; transition: opacity 0.25s;
}
.gallery-item:hover .gallery-item-cap { opacity: 1; }

/* ══════════════════════════════════
   GALLERY LIGHTBOX — Luxury Style
══════════════════════════════════ */
.glb-overlay {
  display: none; position: fixed; inset: 0; z-index: 99999;
  background: #f5f0eb;
  flex-direction: column;
}
.glb-overlay.open { display: flex; }

/* Header bar */
.glb-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; background: #fff;
  border-bottom: 1px solid #e0d8cf; flex-shrink: 0;
}
.glb-counter {
  font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase;
  color: #888; font-family: var(--font-body, sans-serif);
}
.glb-close-btn {
  background: none; border: 1px solid #c8b99a; color: #6b5c44;
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 3px; cursor: pointer;
  font-family: var(--font-body, sans-serif);
  transition: background 0.2s, color 0.2s;
}
.glb-close-btn:hover { background: #6b5c44; color: #fff; }

/* Main body */
.glb-body {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 24px 80px; min-height: 0; position: relative; overflow: hidden;
}
.glb-img-wrap {
  display: flex; flex-direction: column; align-items: center;
  max-width: 100%; max-height: 100%;
}
.glb-img-wrap img {
  max-width: 100%; max-height: calc(100vh - 220px);
  object-fit: contain; display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.glb-caption {
  margin-top: 12px; font-size: 0.82rem; color: #7a6a55;
  letter-spacing: 0.5px; text-align: center;
  font-family: var(--font-body, sans-serif);
}

/* Arrow buttons */
.glb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; border: 1px solid #d6ccc0; color: #6b5c44;
  font-size: 2rem; cursor: pointer; display: flex; align-items: center;
  justify-content: center; z-index: 2;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.glb-arrow:hover { background: #6b5c44; color: #fff; border-color: #6b5c44; }
.glb-prev { left: 16px; }
.glb-next { right: 16px; }

/* Thumbnail strip */
.glb-thumbs-bar {
  background: #fff; border-top: 1px solid #e0d8cf;
  padding: 12px 16px; flex-shrink: 0; overflow: hidden;
}
.glb-thumbs {
  display: flex; gap: 8px; overflow-x: auto;
  scroll-behavior: smooth; padding-bottom: 4px;
  justify-content: center;
}
.glb-thumbs::-webkit-scrollbar { height: 4px; }
.glb-thumbs::-webkit-scrollbar-thumb { background: #d6ccc0; border-radius: 2px; }
.glb-thumb {
  flex-shrink: 0; width: 68px; height: 50px; border-radius: 3px;
  overflow: hidden; cursor: pointer; border: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s; opacity: 0.6;
}
.glb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.glb-thumb.active { border-color: #b8975a; opacity: 1; }
.glb-thumb:hover { opacity: 0.85; }

/* ════════════════════════════════════
   TRAVELS & HOSPITALITY SECTION
════════════════════════════════════ */
.travels-hdr { text-align: center; margin-bottom: 8px; }

/* Full-width stacked rows */
.travels-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Each card: text LEFT · photo RIGHT · full width */
.travel-card {
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 18px rgba(0,0,0,0.07);
  min-height: 300px;
  transition: transform 0.28s, box-shadow 0.28s;
  cursor: default;
}
.travel-card[onclick] { cursor: pointer; }
.travel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(27,153,139,0.13);
}

/* LEFT — text content */
.travel-card-body {
  flex: 1 1 55%;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

/* RIGHT — full-height photo */
.travel-card-img {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.travel-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s;
}
.travel-card:hover .travel-card-img img { transform: scale(1.06); }

/* Badge sits on top-left of the photo */
.travel-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: #fff;
  font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

/* No image fallback — hide the image pane */
.travel-card-img.no-img { display: none; }
.travel-card-img.no-img ~ .travel-card-body { flex-basis: 100%; }

.travel-card-title {
  font-family: var(--font-serif); font-size: 1.45rem;
  font-weight: 600; color: var(--dark);
  margin-bottom: 6px; line-height: 1.3;
}
.travel-card-sub {
  font-size: 0.78rem; color: var(--gold);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 14px;
}
.travel-card-desc {
  font-size: 0.92rem; color: var(--mid);
  line-height: 1.75; margin-bottom: 22px;
  max-width: 520px;
}

/* Mobile — stack vertically: image on top, text below */
@media (max-width: 700px) {
  .travel-card {
    flex-direction: column;
    min-height: unset;
  }
  .travel-card-img {
    flex: none;
    height: 220px;
    min-height: unset;
    width: 100%;
  }
  .travel-card-body {
    padding: 24px 22px 28px;
  }
}

/* ════════════════════════════════════
   OFFERS SECTION
════════════════════════════════════ */
#offers {
  background: linear-gradient(140deg, #151E1C 0%, #1B2E2A 55%, #1F3530 100%);
  padding: 72px 32px;
}
.offers-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.offer-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 24px;
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
}
.offer-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-3px);
}
.offer-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.offer-emoji { font-size: 1.8rem; line-height: 1; }
.offer-tag {
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
}
.offer-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}
.offer-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 14px;
}
.offer-dates {
  font-size: 0.75rem;
  color: var(--gold-light, #3DB8A8);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.offer-book-btn {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1C1A17;
  background: var(--gold);
  border: none;
  padding: 9px 22px;
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.offer-book-btn:hover { background: var(--gold-light, #3DB8A8); }
.offers-empty {
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 48px 0;
  font-size: 0.9rem;
  grid-column: 1 / -1;
}

/* ── Section helpers ── */
.gal-empty {
  color: var(--mid);
  text-align: center;
  padding: 48px 0;
  font-size: 0.9rem;
  grid-column: 1 / -1;
}
.travel-link {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity 0.2s, letter-spacing 0.2s;
}
.travel-link:hover { opacity: 0.75; letter-spacing: 2px; }

/* ── Panel back button ── */
.panel-back-row {
  padding: 18px 0 8px;
}
.panel-back-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 7px 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.panel-back-btn:hover { background: var(--gold); color: #fff; }

/* ── Nav active state for Gallery / Travels ── */
.nav-links li a.nav-active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

/* ── Hide floating offers widget when no offers exist ── */
.offers-widget.no-offers { display: none; }

/* ═══════════════════════════════════════
   OUR TEAM — Homepage panel + standalone page
═══════════════════════════════════════ */
.team-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.team-card-h {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.28s, box-shadow 0.28s;
  text-align: center;
  padding-bottom: 28px;
}
.team-card-h:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(27,153,139,0.14);
}

.team-card-h-photo-wrap {
  padding: 32px 32px 18px;
}
.team-card-h-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  border: 4px solid var(--gold-pale);
  box-shadow: 0 4px 16px rgba(27,153,139,0.15);
}
.team-card-h-placeholder {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  border: 4px solid var(--gold-pale);
}

.team-card-h-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 20px 4px;
}
.team-card-h-desig {
  font-size: 0.72rem;
  color: var(--teal, #1B998B);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 20px 12px;
}
.team-card-h-divider {
  width: 36px; height: 2px;
  background: linear-gradient(to right, var(--teal, #1B998B), transparent);
  margin: 0 auto 14px;
  border-radius: 2px;
}
.team-card-h-desc {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.7;
  margin: 0 22px 16px;
  font-style: italic;
}
.team-card-h-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 20px;
}
.team-social-h-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal, #1B998B);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  border: 1.5px solid rgba(0,0,0,0.08);
}
.team-social-h-btn:hover {
  background: var(--teal, #1B998B);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .team-grid-home { grid-template-columns: 1fr 1fr; gap: 18px; }
  .team-card-h-photo, .team-card-h-placeholder { width: 90px; height: 90px; }
  .team-card-h-photo-wrap { padding: 22px 18px 14px; }
  .team-card-h-name { font-size: 0.85rem; }
}
@media (max-width: 400px) {
  .team-grid-home { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .gallery-grid { columns: 2 140px; }
  .travels-grid { grid-template-columns: 1fr; }
  .glb-prev { left: 4px; } .glb-next { right: 4px; }
  .glb-body { padding: 16px 64px; }
  .glb-arrow { width: 40px; height: 40px; font-size: 1.6rem; }
  .glb-thumb { width: 52px; height: 38px; }
  .glb-thumbs { justify-content: flex-start; }
  .offers-panel.open { width: 260px; }
}
