/* ============================================================
   Bonny Delight Guesthouse — Redesign Stylesheet
   Palette: Deep Navy · Burnished Gold · Champagne
   Design: Emagin Info-Tech Limited (https://emagin-it.com)
============================================================ */

/* ----------------------------------------------------------
   CSS CUSTOM PROPERTIES
---------------------------------------------------------- */
:root {
  /* ── Palette ── */
  --navy:          #162040;
  --navy-2:        #1E2D58;
  --navy-3:        #0E1525;
  --navy-glass:    rgba(22, 32, 64, 0.95);
  --navy-faint:    rgba(22, 32, 64, 0.06);

  --gold:          #C8973A;
  --gold-2:        #D4A84B;
  --gold-dark:     #A87B2A;
  --gold-pale:     rgba(200, 151, 58, 0.12);
  --gold-border:   rgba(200, 151, 58, 0.32);
  --gold-glow:     0 6px 30px rgba(200, 151, 58, 0.35);

  --champagne:     #FAF5EC;
  --ivory:         #FFFDF8;
  --sand:          #EDE0C8;
  --sand-2:        #F5EDD8;

  --charcoal:      #1A1F2E;
  --muted:         #6C7480;
  --white:         #ffffff;

  /* ── Effects ── */
  --shadow-xs:  0 2px 10px rgba(22, 32, 64, 0.08);
  --shadow-sm:  0 6px 24px rgba(22, 32, 64, 0.10);
  --shadow:     0 20px 60px rgba(22, 32, 64, 0.14);
  --shadow-lg:  0 36px 90px rgba(22, 32, 64, 0.20);

  --radius:     22px;
  --radius-sm:  12px;
  --radius-lg:  36px;
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------------
   RESET / BASE
---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* prevent any element from causing page-level h-scroll */
  max-width: 100%;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--champagne);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  overflow-x: hidden;
  max-width: 100%;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

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

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ----------------------------------------------------------
   SCROLL PROGRESS BAR
---------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ----------------------------------------------------------
   UTILITY
---------------------------------------------------------- */
.section-padding { padding: 110px 0; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-family: 'Inter', sans-serif;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-heading p { color: var(--muted); font-size: 1.04rem; max-width: 680px; margin: 0 auto; }

/* Gold ornament divider */
.section-ornament {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.section-ornament span {
  width: 48px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold));
  display: inline-block;
}
.section-ornament span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-ornament i { color: var(--gold); font-size: 0.62rem; }
.section-ornament.light span  { background: linear-gradient(90deg, transparent, rgba(200,151,58,0.60)); }
.section-ornament.light span:last-child { background: linear-gradient(90deg, rgba(200,151,58,0.60), transparent); }
.section-ornament.light i     { color: rgba(200,151,58,0.80); }

/* Heading gold underline rule */
.heading-rule {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 3px;
  margin-bottom: 24px;
}
.heading-rule.mx-auto { margin-left: auto; margin-right: auto; }

.text-gold { color: var(--gold); }
.text-small { font-size: 0.93rem; }
.label-sm { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; }

/* ----------------------------------------------------------
   BUTTONS
---------------------------------------------------------- */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-gold:hover, .btn-gold:focus {
  background: var(--gold-2);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}
.btn-gold:hover::after { opacity: 1; }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: none;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.btn-navy:hover, .btn-navy:focus {
  background: var(--navy-2);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-navy {
  color: var(--navy);
  border: 2px solid rgba(22, 32, 64, 0.25);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.btn-outline-navy:hover, .btn-outline-navy:focus {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.50);
  color: var(--white);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.btn-ghost:hover, .btn-ghost:focus {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-ghost-outline {
  border: 2px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.btn-ghost-outline:hover, .btn-ghost-outline:focus {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ----------------------------------------------------------
   NAVBAR
---------------------------------------------------------- */
.glass-nav {
  padding: 14px 0;
  background: rgba(14, 21, 37, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 151, 58, 0.08);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.glass-nav.scrolled {
  padding: 10px 0;
  background: var(--navy-glass);
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
  border-bottom-color: rgba(200, 151, 58, 0.18);
}

.brand-mark {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 11px;
  transition: opacity var(--transition);
}
.brand-mark:hover { opacity: 0.88; color: var(--white); }

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  flex-shrink: 0;
  font-size: 1.05rem;
  box-shadow: var(--gold-glow);
}

/* Navbar logo image — replaces the old icon circle in the navbar only */
.brand-logo {
  display: block;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  /* Subtle gold drop-shadow so the logo pops on both light & dark nav states */
  filter: drop-shadow(0 1px 5px rgba(200, 151, 58, 0.32));
  transition: filter var(--transition);
}
.brand-mark:hover .brand-logo img {
  filter: drop-shadow(0 2px 8px rgba(200, 151, 58, 0.55));
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(200, 151, 58, 0.80);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.90rem;
  font-family: 'Inter', sans-serif;
  margin: 0 2px;
  padding: 6px 12px !important;
  border-radius: 8px;
  position: relative;
  transition: color var(--transition), background var(--transition);
}
.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--transition);
}
.navbar .nav-link:hover,
.navbar .nav-link.active-nav {
  color: var(--white);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active-nav::after {
  width: 70%;
}

.custom-toggler {
  border: 1.5px solid rgba(255,255,255,0.30);
  color: var(--white);
  border-radius: 10px;
  padding: 8px 13px;
  background: rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.custom-toggler:hover { background: rgba(255,255,255,0.12); }

/* ----------------------------------------------------------
   HERO
---------------------------------------------------------- */
/* ----------------------------------------------------------
   HERO — Full-screen Carousel
---------------------------------------------------------- */

/* Section shell */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  /* Dark fallback so any sub-pixel gap never shows a white flash */
  background: var(--navy-3);
}

/* ── Carousel fills the section as the background layer ── */
.hero-carousel {
  position: absolute;
  inset: 0;        /* top/right/bottom/left: 0 */
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden; /* belt-and-braces clip */
}

/* Bootstrap's default carousel uses float:left + margin-right:-100% to stack
   items side-by-side. In a full-height absolutely-positioned container this
   float layout can leave a residual gap on the right (the root cause of the
   white strip). We override it completely with position:absolute stacking,
   which is the correct approach for a full-bleed background carousel. */
.hero-carousel .carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden; /* reinforce Bootstrap's own overflow:hidden */
}

.hero-carousel .carousel-item {
  /* Replace float-based stacking with absolute stacking */
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%  !important;
  height: 100% !important;
  float: none        !important; /* cancel Bootstrap float */
  margin-right: 0    !important; /* cancel Bootstrap -100% margin trick */
  /* Keep every item rendered so opacity cross-fade has something to fade */
  display: block     !important;
  /* Bootstrap slide animation is replaced by carousel-fade opacity;
     cancel any residual transform to prevent pixel-shift artefacts */
  transform: none    !important;
}

/* Slide image */
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}

/* Ken Burns zoom on the active slide's image */
.carousel-item.active .hero-slide-img {
  animation: heroKen 9s ease-out both;
}
@keyframes heroKen {
  from { transform: scale(1.00); }
  to   { transform: scale(1.07) translate(-0.8%, -0.8%); }
}

/* Gradient overlay — richer at top & bottom, lighter in mid-frame */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 16, 32, 0.72) 0%,
      rgba(10, 16, 32, 0.30) 42%,
      rgba(10, 16, 32, 0.52) 72%,
      rgba(10, 16, 32, 0.88) 100%
    ),
    radial-gradient(ellipse at 65% 5%, rgba(200,151,58,0.22), transparent 55%);
}

/* ── Per-slide text content ── */
.hero-slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  width: 92%;
  max-width: 820px;
  text-align: center;
  z-index: 5;
  pointer-events: none; /* CTAs are in .hero-cta-layer below */
}

/* Animate slide text in when the item becomes active */
.carousel-item.active .hero-slide-content {
  animation: heroSlideIn 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) both 0.15s;
}
@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -52%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -58%);
  }
}

/* Ornament (line – anchor – line) inside slides */
.hero-ornament {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.hero-ornament span {
  width: 38px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-ornament span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-ornament i { color: var(--gold); font-size: 0.92rem; }

/* Per-slide badge label */
.hero-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero-slide-badge i { font-size: 0.68rem; }

/* Large headline */
.hero-headline {
  font-size: clamp(2.8rem, 7.5vw, 6.2rem);
  line-height: 1.02;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.30);
}
.hero-headline em {
  color: var(--gold-2);
  font-style: italic;
}

/* Subtitle / lead text */
.hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.70;
}

/* ── Carousel navigation arrows ── */
.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.30);
  background: rgba(10, 16, 32, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.9rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform 0.2s;
}
.hero-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-50%) scale(1.08);
}
.hero-nav-prev { left: 22px; }
.hero-nav-next { right: 22px; }

/* ── Thin-bar slide indicators ── */
.hero-indicators {
  position: absolute;
  bottom: 108px;       /* sits above booking strip */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-indicators button {
  position: relative;
  width: 36px; height: 3px;
  padding: 0;
  border: none;
  border-radius: 2px;
  background: rgba(255,255,255,0.30);
  overflow: hidden;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}
.hero-indicators button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: none;
}
.hero-indicators button.active {
  width: 60px;
  background: rgba(200,151,58,0.28);
}
.hero-indicators button.active::after {
  transform: scaleX(1);
  transition: transform 6.5s linear; /* matches data-bs-interval */
}

/* ── Slide counter ── */
.hero-counter {
  position: absolute;
  bottom: 118px;
  right: 28px;
  z-index: 10;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
}
.hero-counter-current {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 800;
}

/* ── Persistent pills layer (above carousel, just above booking strip) ── */
.hero-cta-layer {
  position: absolute;
  bottom: 100px;   /* sits just above the booking strip (~90px tall) */
  left: 0; right: 0;
  z-index: 6;
  text-align: center;
  padding: 0 0 10px;
}

/* Feature pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  background: rgba(10, 16, 32, 0.40);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  transition: background var(--transition), border-color var(--transition);
}
.hero-pills span:hover {
  background: rgba(200, 151, 58, 0.20);
  border-color: rgba(200,151,58,0.42);
}
.hero-pills span i { color: var(--gold); font-size: 0.85rem; }

/* ── Scroll-down arrow ── */
.scroll-down {
  position: absolute;
  bottom: 96px;
  left: 28px;
  z-index: 10;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.32);
  color: var(--white);
  font-size: 0.82rem;
  animation: bounceDown 2.2s ease-in-out infinite;
  transition: border-color var(--transition), background var(--transition);
}
.scroll-down:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--gold);
  color: var(--gold);
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ----------------------------------------------------------
   BOOKING STRIP
---------------------------------------------------------- */
.booking-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 0 0 0;
}

.bs-inner {
  display: flex;
  align-items: stretch;
  background: rgba(14, 21, 37, 0.88);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(200, 151, 58, 0.22);
  border-radius: 0;
}

.bs-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 24px;
  min-width: 0;
}

.bs-field label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  margin-bottom: 5px;
  white-space: nowrap;
}

.bs-field input,
.bs-field select {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(255,255,255,0.20);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 4px 0;
  outline: none;
  width: 100%;
  transition: border-color var(--transition);
  cursor: pointer;
}
.bs-field input::placeholder { color: rgba(255,255,255,0.45); }
.bs-field input:focus,
.bs-field select:focus { border-bottom-color: var(--gold); }
.bs-field select option { background: var(--navy-3); color: var(--white); }

/* Chrome date input color fix */
.bs-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.5);
  cursor: pointer;
}

.bs-divider {
  width: 1px;
  background: rgba(255,255,255,0.10);
  align-self: stretch;
  margin: 12px 0;
}

.btn-booking-check {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  border: none;
  padding: 0 36px;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-booking-check:hover, .btn-booking-check:focus {
  background: var(--gold-2);
  box-shadow: inset -4px 0 0 rgba(0,0,0,0.10);
}

/* ----------------------------------------------------------
   ABOUT
---------------------------------------------------------- */
.about-section { background: var(--white); }

.about-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 6px;
}
.about-section p { color: var(--muted); font-size: 1.02rem; }

/* Image frame */
.image-frame-wrapper {
  position: relative;
  padding-right: 22px;
  padding-bottom: 22px;
}
.image-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-frame-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 75%;
  height: 75%;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
  opacity: 0.40;
}

.placeholder-hotel-image {
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255,255,255,0.88);
  background:
    linear-gradient(145deg, rgba(22,32,64,0.90), rgba(200,151,58,0.50)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 12px, transparent 12px 24px);
}
.placeholder-hotel-image i   { font-size: 3.5rem; display: block; margin-bottom: 14px; color: rgba(200,151,58,0.70); }
.placeholder-hotel-image span { font-size: 0.94rem; opacity: 0.75; }

.stack-badge {
  position: absolute;
  bottom: 32px;
  right: -4px;
  z-index: 2;
  background: var(--white);
  border-radius: 18px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.stack-badge i { color: var(--gold); font-size: 1.6rem; flex-shrink: 0; }
.stack-badge strong { display: block; font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1rem; font-weight: 800; }
.stack-badge span   { color: var(--muted); font-size: 0.82rem; display: block; }

/* About highlights */
.about-highlights { display: grid; gap: 18px; margin-top: 28px; }
.about-highlights > div {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--sand);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.about-highlights > div:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-xs);
}

.ah-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 1.2rem;
}
.about-highlights strong { display: block; color: var(--navy); font-weight: 700; margin-bottom: 3px; }
.about-highlights p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ----------------------------------------------------------
   WELCOME QUOTE STRIP
---------------------------------------------------------- */
.welcome-quote-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.welcome-quote-section::before {
  content: '\201C';
  position: absolute;
  top: -30px; left: 5%;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22rem;
  color: rgba(200,151,58,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.welcome-quote {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0;
  border: none;
  position: relative;
  z-index: 1;
}
.quote-icon {
  color: var(--gold);
  font-size: 2.4rem;
  display: block;
  margin-bottom: 22px;
  opacity: 0.70;
}
.welcome-quote p {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  font-weight: 400;
  margin-bottom: 22px;
}
.welcome-quote cite {
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ----------------------------------------------------------
   SERVICES
---------------------------------------------------------- */
.services-section { background: var(--champagne); }

.service-card {
  height: 100%;
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(22,32,64,0.07);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: var(--gold-border);
}

.service-card-inner {
  padding: 34px 30px 26px;
  position: relative;
  z-index: 1;
}

.service-card-glow {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover .service-card-glow { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 1.65rem;
  margin-bottom: 22px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--gold);
  transform: scale(1.08);
}

.service-card h3 {
  color: var(--navy);
  font-weight: 800;
  font-size: 1.22rem;
  margin-bottom: 10px;
}
.service-card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 20px; }

.service-card-footer { margin-top: auto; }
.service-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { gap: 10px; color: var(--gold-dark); }

/* ----------------------------------------------------------
   ROOMS
---------------------------------------------------------- */
.rooms-section { background: var(--ivory); }

.room-card {
  height: 100%;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(22,32,64,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

/* Room image with hover overlay */
.room-image-wrap {
  position: relative;
  overflow: hidden;
}

.room-image,
.placeholder-room-image {
  min-height: 230px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(22,32,64,0.85), rgba(200,151,58,0.50)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 10px, transparent 10px 20px);
  color: rgba(255,255,255,0.85);
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.room-card:hover .room-image,
.room-card:hover .placeholder-room-image {
  transform: scale(1.06);
}
.room-image-wrap picture { display: block; overflow: hidden; }
.room-image {
  width: 100%;
  height: 230px;
  min-height: 0;
  object-fit: cover;
  display: block;
}
.placeholder-room-image i   { font-size: 2.6rem; display: block; margin-bottom: 10px; color: rgba(200,151,58,0.70); }
.placeholder-room-image span { font-size: 0.88rem; opacity: 0.75; }

.room-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22,32,64,0.68);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.room-card:hover .room-image-overlay { opacity: 1; }

.room-status-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
}

/* Room content */
.room-content {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.room-content-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.room-content h3 {
  color: var(--navy);
  font-weight: 900;
  font-size: 1.28rem;
  margin: 0;
}
.room-stars { color: var(--gold); font-size: 0.72rem; white-space: nowrap; }
.room-content p { color: var(--muted); font-size: 0.95rem; margin: 0; }

.room-amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.room-amenity-list span {
  padding: 5px 12px;
  border-radius: 50px;
  background: var(--navy-faint);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.80rem;
  font-family: 'Inter', sans-serif;
}
.room-amenity-list span i { color: var(--gold); margin-right: 3px; }

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--sand);
  margin-top: auto;
}
.room-price-area { display: flex; flex-direction: column; }
.price-from { font-size: 0.76rem; color: var(--muted); font-weight: 500; }
.price-value { font-weight: 800; color: var(--navy); font-size: 1.05rem; }

/* ----------------------------------------------------------
   AMENITIES
---------------------------------------------------------- */
.amenities-section { background: var(--navy); }

.amenities-section .section-heading h2 { color: var(--white); }
.amenities-section .section-heading p  { color: rgba(255,255,255,0.62); }
.amenities-section .section-kicker     { color: var(--gold); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 26px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  text-align: center;
  color: rgba(255,255,255,0.82);
  font-size: 0.84rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: default;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.amenity-item:hover {
  background: rgba(200,151,58,0.12);
  border-color: var(--gold-border);
  transform: translateY(-5px);
  color: var(--white);
}

.amenity-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 1.3rem;
  transition: background var(--transition), transform var(--transition);
}
.amenity-item:hover .amenity-icon {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.12) rotate(5deg);
}

.amenities-disclaimer {
  color: rgba(255,255,255,0.40);
  font-size: 0.83rem;
}
.amenities-disclaimer i { color: rgba(200,151,58,0.60); }

/* ----------------------------------------------------------
   WHY CHOOSE US
---------------------------------------------------------- */
.why-section { background: var(--champagne); }

.why-section .section-heading h2 { color: var(--navy); }

.why-card {
  height: 100%;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(22,32,64,0.07);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--gold-border);
}

.why-card-number {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(22,32,64,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.why-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 1.65rem;
  margin-bottom: 20px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.why-card:hover .why-icon {
  background: var(--navy);
  color: var(--gold);
  transform: scale(1.08);
}

.why-card h4 {
  color: var(--navy);
  font-weight: 800;
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.why-card p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ----------------------------------------------------------
   MENU / DINING
---------------------------------------------------------- */
.menu-section {
  background: var(--navy-3);
  overflow: hidden;
}
.menu-section .section-kicker { color: var(--gold); }
.menu-section .section-heading h2 { color: var(--white); }
.menu-section .section-heading p  { color: rgba(255,255,255,0.62); }
.menu-section .heading-rule       { background: var(--gold); }
.menu-section .section-ornament span { background: rgba(200,151,58,0.35); }
.menu-section .section-ornament i    { color: var(--gold); }
.text-muted-light { color: rgba(255,255,255,0.50) !important; }

/* Filter tabs */
.menu-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 36px 0 44px;
}
.menu-filter-btn {
  border: 1px solid rgba(200,151,58,0.35);
  background: transparent;
  color: rgba(255,255,255,0.70);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.menu-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.menu-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Carousel outer — holds the track + nav buttons */
.menu-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Nav buttons */
.menu-nav-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(200,151,58,0.40);
  background: rgba(255,255,255,0.04);
  color: var(--gold);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  z-index: 2;
}
.menu-nav-btn:hover:not(:disabled) {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: scale(1.08);
}
.menu-nav-btn:disabled {
  opacity: 0.30;
  cursor: default;
}

/* Clip wrapper */
.menu-carousel-wrapper {
  flex: 1;
  overflow: hidden;
}

/* Scrolling track */
.menu-track {
  display: flex;
  gap: 28px;
  transition: transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Individual card */
.menu-card {
  flex-shrink: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  display: flex;
  flex-direction: column;
  transition: transform 0.30s ease, box-shadow 0.30s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.38);
}

/* Gradient placeholder image area */
.menu-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.menu-img-deco-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.14);
  top: -70px;
  right: -60px;
}
.menu-img-deco-ring--sm {
  width: 120px;
  height: 120px;
  top: auto;
  bottom: -50px;
  left: -30px;
  right: auto;
}
.menu-dish-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 3.8rem;
  color: rgba(255,255,255,0.18);
  pointer-events: none;
}
.menu-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.18);
}

/* Card body */
.menu-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.menu-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.menu-card-desc {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.menu-price-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.menu-enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.menu-enquire-btn:hover {
  background: var(--gold-2);
  color: var(--navy);
  transform: translateY(-1px);
}

/* Dot indicators */
.menu-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.menu-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(200,151,58,0.28);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.menu-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

/* ----------------------------------------------------------
   GALLERY
---------------------------------------------------------- */
.gallery-section { background: var(--ivory); }

/* Filter buttons */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(22,32,64,0.16);
  background: var(--white);
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-filter-btn:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-pale);
}
.gallery-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.gallery-filter-btn.active i { color: var(--gold); }

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item:nth-child(2),
.gallery-item:nth-child(5) { grid-row: span 2; }

.gallery-item {
  border: none;
  min-height: 200px;
  border-radius: 18px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: var(--navy-faint);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover {
  transform: scale(0.97);
  box-shadow: var(--shadow);
}

.placeholder-gallery-image {
  background:
    linear-gradient(145deg, rgba(22,32,64,0.88), rgba(200,151,58,0.50)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 10px, transparent 10px 20px);
}

.gallery-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
  color: rgba(255,255,255,0.78);
  gap: 10px;
  padding: 20px;
  text-align: center;
}
.gallery-placeholder-inner i   { font-size: 2rem; color: rgba(200,151,58,0.60); }
.gallery-placeholder-inner span { font-size: 0.86rem; font-weight: 600; }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22,32,64,0.80);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item-overlay i   { font-size: 1.8rem; color: var(--gold); }
.gallery-item-overlay span { font-size: 0.86rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.10em; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-category-tag {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(22,32,64,0.75);
  color: var(--gold);
  font-size: 0.70rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

@keyframes galleryFadeIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* ----------------------------------------------------------
   GALLERY LIGHTBOX
---------------------------------------------------------- */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 28, 0.94);
  backdrop-filter: blur(10px);
}

.lightbox-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  max-width: 90vw;
  width: 900px;
}

.lightbox-stage {
  flex: 1;
  min-height: 400px;
  max-height: 75vh;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  display: grid;
  place-items: center;
}

/* Actual photo rendered inside the lightbox */
.lightbox-img {
  width: 100%;
  height: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  border-radius: var(--radius);
}

.lightbox-placeholder-box {
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255,255,255,0.72);
  padding: 56px 40px;
  gap: 12px;
  min-height: 320px;
}
.lightbox-placeholder-box i    { font-size: 4rem; color: rgba(200,151,58,0.40); }
.lightbox-placeholder-box p    { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin: 0; }
.lightbox-placeholder-box small { font-size: 0.86rem; color: rgba(255,255,255,0.42); }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: scale(1.10);
}
.lightbox-close {
  position: absolute;
  top: -4px; right: 0;
}
.lightbox-info {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  white-space: nowrap;
}
.lightbox-counter { color: var(--gold); font-weight: 700; }

/* ----------------------------------------------------------
   TESTIMONIALS
---------------------------------------------------------- */
.testimonials-section { background: var(--ivory); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(22,32,64,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testimonial-card .stars { color: var(--gold); margin-bottom: 14px; }

.testimonial-card blockquote {
  margin: 0 0 16px; padding: 0; border: none;
}
.testimonial-card blockquote p {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
}
.testimonial-card cite { font-weight: 700; color: var(--navy); font-style: normal; font-size: 0.90rem; }

/* ----------------------------------------------------------
   CTA STRIP
---------------------------------------------------------- */
.cta-strip {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-strip-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--navy-3) 0%, var(--navy-2) 100%);
}
.cta-strip-bg::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,151,58,0.18) 0%, transparent 70%);
}

.cta-strip-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.cta-strip-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 8px;
}
.cta-strip-text p { color: rgba(255,255,255,0.68); font-size: 1.02rem; margin: 0; }

.cta-strip-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   LOCATION
---------------------------------------------------------- */
.location-section { background: var(--champagne); }

.location-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 6px;
}
.location-section p { color: var(--muted); font-size: 1.02rem; }

.location-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 16px;
}
.location-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.97rem;
}
.loc-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
}
.location-list a { color: var(--navy); font-weight: 600; }
.location-list a:hover { color: var(--gold); text-decoration: underline; }

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 400px;
  border: 3px solid var(--white);
}
.map-wrapper iframe {
  width: 100%;
  min-height: 400px;
  border: none;
  display: block;
}
.map-placeholder {
  min-height: 400px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--sand);
  color: var(--muted);
  padding: 32px;
}

/* ----------------------------------------------------------
   CONTACT
---------------------------------------------------------- */
.contact-section { background: var(--ivory); }
.contact-section .section-heading h2 { color: var(--navy); }

.contact-info-panel {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 38px;
  color: rgba(255,255,255,0.80);
  height: 100%;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,151,58,0.15) 0%, transparent 70%);
}

.contact-info-panel h4 {
  color: var(--white);
  font-weight: 900;
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.contact-info-panel .text-small { color: rgba(255,255,255,0.55); margin-bottom: 0; }

.contact-info-list {
  list-style: none;
  padding: 0; margin: 24px 0;
  display: grid;
  gap: 18px;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
}
.ci-icon {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(200,151,58,0.15);
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-list a { color: rgba(255,255,255,0.82); font-weight: 600; }
.contact-info-list a:hover { color: var(--gold); text-decoration: underline; }

.contact-social { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.10); }
.contact-social .label-sm { color: rgba(255,255,255,0.45); }

.contact-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(22,32,64,0.08);
}
.contact-panel h4 {
  color: var(--navy);
  font-weight: 900;
  font-size: 1.35rem;
  margin-bottom: 26px;
}

/* Input with icon */
.input-with-icon { position: relative; }
.input-with-icon > i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.92rem;
  pointer-events: none;
  z-index: 1;
}
.input-with-icon .form-control,
.input-with-icon .form-select {
  padding-left: 42px;
}
.input-with-icon textarea.form-control { padding-left: 16px; }

/* ----------------------------------------------------------
   FORMS
---------------------------------------------------------- */
.form-control, .form-select {
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  border: 1.5px solid rgba(22,32,64,0.14);
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  background: var(--ivory);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,58,0.16);
  outline: none;
  background: var(--white);
}
.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-response {
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 500;
}
.form-response.success {
  color: #0c4128;
  background: #d6f0e3;
  padding: 14px 18px;
}
.form-response.error {
  color: #6e1818;
  background: #fde8e8;
  padding: 14px 18px;
}

/* ----------------------------------------------------------
   SOCIAL LINKS (shared)
---------------------------------------------------------- */
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.92rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
.footer-section {
  background: var(--navy-3);
  color: rgba(255,255,255,0.68);
  padding: 88px 0 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand .brand-logo img {
  filter: drop-shadow(0 1px 4px rgba(200, 151, 58, 0.25));
}

.footer-section p { color: rgba(255,255,255,0.58); font-size: 0.93rem; line-height: 1.7; }
.footer-section h5 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.58); font-size: 0.93rem; transition: color var(--transition), padding-left var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.91rem; }
.footer-contact i    { color: var(--gold); margin-top: 3px; flex-shrink: 0; width: 16px; text-align: center; }
.footer-contact a    { color: rgba(255,255,255,0.58); }
.footer-contact a:hover { color: var(--gold); }

.footer-line {
  border-color: rgba(255,255,255,0.08);
  margin: 48px 0 24px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.90rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--gold); font-weight: 700; }
.footer-bottom a:hover { color: var(--gold-2); text-decoration: underline; }

/* ----------------------------------------------------------
   FLOATING ELEMENTS
---------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 88px; right: 22px;
  z-index: 50;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 1.75rem;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.floating-whatsapp:hover {
  transform: scale(1.10) translateY(-3px);
  box-shadow: 0 14px 36px rgba(37,211,102,0.55);
  color: var(--white);
}
.floating-whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--charcoal);
  color: var(--white);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity var(--transition), transform var(--transition);
}
.floating-whatsapp:hover .floating-whatsapp-tooltip { opacity: 1; transform: translateX(0); }

.scroll-top {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 50;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--navy);
  font-size: 1rem;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(200,151,58,0.40);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-dark); }

/* ----------------------------------------------------------
   ACCESSIBILITY — REDUCED MOTION
---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ----------------------------------------------------------
   RESPONSIVE — TABLET (≤ 991px)
---------------------------------------------------------- */
@media (max-width: 991px) {
  .section-padding { padding: 80px 0; }

  .navbar-collapse {
    background: var(--navy-glass);
    padding: 18px 20px;
    border-radius: 18px;
    margin-top: 10px;
    box-shadow: var(--shadow-lg);
  }

  /* Hero carousel — tablet */
  .hero-slide-content { top: 46%; transform: translate(-50%, -50%); }
  .hero-cta-layer     { bottom: 98px; }
  .hero-indicators    { bottom: 104px; }
  .hero-counter       { bottom: 110px; right: 20px; }
  .hero-nav-btn       { width: 44px; height: 44px; }

  .bs-inner { flex-wrap: wrap; }
  .bs-field  { min-width: 45%; }
  .bs-divider { display: none; }
  .btn-booking-check { width: 100%; padding: 18px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5) { grid-row: span 1; }

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

  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }

  .contact-info-panel { height: auto; }

  .image-frame-wrapper { padding-right: 16px; padding-bottom: 16px; }
  .stack-badge { right: 6px; bottom: 22px; }

  /* Menu — 2 cards on tablet */
  .menu-nav-btn { width: 40px; height: 40px; font-size: 0.85rem; }
}

/* ----------------------------------------------------------
   RESPONSIVE — MOBILE (≤ 575px)
---------------------------------------------------------- */
@media (max-width: 575px) {
  /* Hero carousel — mobile */
  .hero-slide-content   { top: 36%; transform: translate(-50%, -50%); width: 94%; }
  .hero-cta-layer       { bottom: 16px; padding-bottom: 8px; }
  .hero-indicators      { bottom: 22px; }
  .hero-counter         { display: none; }
  .hero-nav-btn         { width: 36px; height: 36px; font-size: 0.78rem; }
  .hero-nav-prev        { left: 10px; }
  .hero-nav-next        { right: 10px; }
  .scroll-down          { display: none; }


  .hero-pills           { gap: 6px; }
  .hero-pills span      { font-size: 0.78rem; padding: 6px 13px; }

  .booking-strip { position: static; }
  .bs-field { min-width: 100%; padding: 16px 20px; }

  .contact-panel, .contact-info-panel { padding: 26px 22px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { min-height: 180px; }

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

  .lightbox-prev, .lightbox-next { display: none; }

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

  .cta-strip-actions .btn { width: 100%; }

  .welcome-quote p { font-size: 1.3rem; }

  .brand-sub { display: none; }

  /* Menu — 1 card on mobile, hide nav buttons (swipe instead) */
  .menu-nav-btn           { display: none; }
  .menu-carousel-outer    { gap: 0; }
  .menu-card-img          { height: 170px; }
  .menu-dish-icon         { font-size: 3rem; }
}

.btn-outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); font-weight: 600; font-family: 'Inter', sans-serif; transition: var(--transition); } .btn-outline-gold:hover, .btn-outline-gold:focus { background: var(--gold); color: var(--navy); transform: translateY(-2px); box-shadow: var(--gold-glow); }
