/* ===========================
   TROPICAL GARDENS HOTEL CSS
   Fully responsive — desktop nav + mobile bottom nav
   =========================== */

:root {
  --green: #2e7d32;
  --green-dark: #1b5e20;
  --green-light: #43a047;
  --green-pale: #e8f5e9;
  --gold: #f57f17;
  --gold-light: #ffca28;
  --ivory: #fffdf6;
  --stone: #eef0e9;
  --charcoal: #172018;
  --cream: #fafaf7;
  --dark: #1a1a1a;
  --gray: #6b7280;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --shadow-premium: 0 28px 80px rgba(23,32,24,0.18);
  --line-soft: rgba(27,94,32,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --mobile-bottom-nav-height: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  font-weight: 600;
  line-height: 1.65;
  overflow-x: hidden;
  transition: background 0.25s ease, color 0.25s ease;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.bg-cream { background: var(--cream); }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1.5px solid rgba(46,125,50,0.22);
  border-radius: 999px;
  background: var(--green-pale);
  color: var(--green-dark);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}
.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
  background: var(--gold-light);
  color: var(--charcoal);
}
.theme-toggle [data-theme-icon] {
  font-size: 1rem;
  line-height: 1;
}
.mobile-actions { display: flex; align-items: center; gap: 8px; }
.theme-toggle-mobile {
  width: 40px;
  min-height: 40px;
  padding: 0;
}

html[data-theme="dark"] {
  --green: #d4a23a;
  --green-dark: #9f741f;
  --green-light: #f0bf55;
  --green-pale: rgba(212,162,58,0.13);
  --gold: #dba642;
  --gold-light: #ffe08a;
  --ivory: #1c160c;
  --stone: #2c2417;
  --charcoal: #fff2c5;
  --cream: #171209;
  --dark: #f8edca;
  --gray: #c8b98c;
  --white: #11100d;
  --shadow: 0 4px 24px rgba(0,0,0,0.38);
  --shadow-lg: 0 18px 58px rgba(0,0,0,0.5);
}
html[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, rgba(219,166,66,0.16), transparent 34rem),
    linear-gradient(180deg, #141006 0%, #0c0b08 100%);
}
html[data-theme="dark"] .bg-cream,
html[data-theme="dark"] .booking-panel {
  background: #171209;
}
html[data-theme="dark"] #navbar,
html[data-theme="dark"] .mobile-header,
html[data-theme="dark"] .mobile-bottom-nav {
  background: rgba(17,16,13,0.94);
  border-color: rgba(255,224,138,0.17);
  box-shadow: 0 8px 30px rgba(0,0,0,0.34);
  backdrop-filter: blur(14px);
}
html[data-theme="dark"] .topbar,
html[data-theme="dark"] .reservation,
html[data-theme="dark"] .footer {
  background: linear-gradient(135deg, #1b1305 0%, #0b1009 100%);
}
html[data-theme="dark"] .hero-overlay {
  background: linear-gradient(135deg, rgba(17,11,2,0.82) 0%, rgba(111,77,18,0.48) 55%, rgba(0,0,0,0.68) 100%);
}
html[data-theme="dark"] .nav-links a:hover,
html[data-theme="dark"] .menu-footer,
html[data-theme="dark"] .theme-toggle {
  background: rgba(219,166,66,0.16);
  color: var(--gold-light);
  border-color: rgba(255,224,138,0.28);
}
html[data-theme="dark"] .theme-toggle:hover,
html[data-theme="dark"] .nav-cta,
html[data-theme="dark"] .btn-primary,
html[data-theme="dark"] .btn-gold,
html[data-theme="dark"] .mobile-call-btn,
html[data-theme="dark"] .mob-nav-book {
  background: linear-gradient(135deg, #ffe08a 0%, #dba642 62%, #a7731d 100%) !important;
  color: #201304 !important;
  border-color: rgba(255,224,138,0.9) !important;
  box-shadow: 0 10px 24px rgba(219,166,66,0.26);
}
html[data-theme="dark"] .btn-outline-dark,
html[data-theme="dark"] .filter-btn,
html[data-theme="dark"] .menu-tab {
  color: var(--gold-light);
  border-color: rgba(255,224,138,0.38);
  background: rgba(255,224,138,0.04);
}
html[data-theme="dark"] .btn-outline-dark:hover,
html[data-theme="dark"] .filter-btn.active,
html[data-theme="dark"] .filter-btn:hover,
html[data-theme="dark"] .menu-tab.active,
html[data-theme="dark"] .menu-tab:hover {
  background: var(--gold);
  color: #201304;
  border-color: var(--gold);
}
html[data-theme="dark"] .booking-card,
html[data-theme="dark"] .premium-action-bar,
html[data-theme="dark"] .service-card,
html[data-theme="dark"] .room-card,
html[data-theme="dark"] .event-card,
html[data-theme="dark"] .tourism-cards div,
html[data-theme="dark"] .experience-list div,
html[data-theme="dark"] .proof-item,
html[data-theme="dark"] .signature-card,
html[data-theme="dark"] .notification-card,
html[data-theme="dark"] .journey-step,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .contact-form-center,
html[data-theme="dark"] .res-form-wrap,
html[data-theme="dark"] .review-card,
html[data-theme="dark"] .book-modal,
html[data-theme="dark"] .menu-card {
  background: linear-gradient(180deg, rgba(33,26,14,0.98), rgba(20,16,10,0.98));
  border-color: rgba(255,224,138,0.18);
  box-shadow: 0 14px 38px rgba(0,0,0,0.34);
}
html[data-theme="dark"] .service-card,
html[data-theme="dark"] .room-card,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .menu-card,
html[data-theme="dark"] .event-card,
html[data-theme="dark"] .proof-item,
html[data-theme="dark"] .signature-card,
html[data-theme="dark"] .notification-card,
html[data-theme="dark"] .journey-step,
html[data-theme="dark"] .review-card {
  border: 1px solid rgba(255,224,138,0.15);
}
html[data-theme="dark"] .premium-proof {
  background: linear-gradient(180deg, #11100d 0%, #171209 100%);
}
html[data-theme="dark"] .premium-action-bar a {
  color: var(--gold-light);
}
html[data-theme="dark"] .premium-action-bar a:hover,
html[data-theme="dark"] .premium-action-bar a:nth-child(3) {
  color: #201304;
}
html[data-theme="dark"] .service-card.featured,
html[data-theme="dark"] .room-card.featured,
html[data-theme="dark"] .menu-card.featured {
  border-color: var(--gold);
}
html[data-theme="dark"] .about-badge,
html[data-theme="dark"] .service-featured-tag,
html[data-theme="dark"] .room-featured-tag,
html[data-theme="dark"] .room-badge,
html[data-theme="dark"] .featured-badge {
  background: var(--gold);
  color: #201304;
}
html[data-theme="dark"] .form-group input,
html[data-theme="dark"] .form-group select,
html[data-theme="dark"] .form-group textarea,
html[data-theme="dark"] .booking-field input,
html[data-theme="dark"] .booking-field select {
  background: #0d0c09;
  border-color: rgba(255,224,138,0.26);
  color: var(--dark);
}
html[data-theme="dark"] .form-group input:focus,
html[data-theme="dark"] .form-group select:focus,
html[data-theme="dark"] .form-group textarea:focus,
html[data-theme="dark"] .booking-field input:focus,
html[data-theme="dark"] .booking-field select:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(219,166,66,0.16);
}
html[data-theme="dark"] .book-option {
  background: rgba(255,224,138,0.06);
  border-color: rgba(255,224,138,0.16);
  color: var(--dark);
}
html[data-theme="dark"] .book-option:hover {
  background: rgba(255,224,138,0.13);
  border-color: rgba(255,224,138,0.42);
}
html[data-theme="dark"] .book-option-icon-green,
html[data-theme="dark"] .toast {
  background: var(--gold) !important;
  color: #201304;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-size: 0.92rem; font-weight: 600;
  font-family: var(--font-sans);
  border: 2px solid transparent;
  cursor: pointer; transition: var(--transition);
  text-align: center; white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.75); }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-soft { background: rgba(255,255,255,0.92); color: var(--green-dark); border-color: rgba(255,255,255,0.92); }
.btn-soft:hover { background: var(--gold-light); color: var(--charcoal); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); font-weight: 700; }
.btn-gold:hover { background: #e65100; transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-dark:hover { background: var(--green); color: var(--white); }
.full-btn { width: 100%; justify-content: center; }

/* ---- SECTION HEADER ---- */
.section-tag { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 10px; }
.section-title { font-family: var(--font-serif); font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 700; color: var(--dark); line-height: 1.25; margin-bottom: 14px; }
.section-sub { color: var(--gray); max-width: 560px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 52px; }

.section-header .section-title,
.proof-copy .section-title {
  letter-spacing: 0;
}

body p,
body li,
body span,
body a,
body label,
body input,
body select,
body textarea,
body button {
  font-weight: 600;
}

strong,
h1,
h2,
h3,
h4,
.section-title,
.section-tag,
.btn,
.nav-links a,
.nav-cta,
.hero-tag,
.room-badge,
.room-featured-tag,
.service-featured-tag,
.featured-badge,
.menu-card-name,
.menu-card-price,
.contact-card h4,
.footer-col h4 {
  font-weight: 800;
}

.section-sub,
.hero-sub,
.about-text p,
.service-body p,
.experience-copy p,
.event-card p,
.tourism-cards span,
.room-body p,
.room-features li,
.signature-card p,
.res-contact-item p,
.contact-card p,
.review-card p,
.footer-brand p,
.footer-col p,
.footer-col ul a,
.menu-card-desc,
.book-modal-sub,
.book-option-text span {
  font-weight: 700;
}

/* ==============================
   TOP BAR — desktop only
   ============================== */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  padding: 8px 24px;
}
.topbar-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar-social { margin-left: auto; display: flex; gap: 10px; }
.topbar-social a {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  transition: var(--transition);
}
.topbar-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ==============================
   DESKTOP NAVBAR
   ============================== */
#navbar {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.nav-container {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 56px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: var(--dark); font-size: 0.88rem; font-weight: 500; padding: 8px 12px; border-radius: 8px; transition: var(--transition); }
.nav-links a:hover { color: var(--green); background: var(--green-pale); }
.nav-cta { background: var(--green) !important; color: var(--white) !important; border-radius: 50px !important; padding: 10px 20px !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--green-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: var(--transition); border-radius: 2px; }

/* ==============================
   MOBILE HEADER — mobile only
   ============================== */
.mobile-header {
  display: none;
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  padding: 10px 16px;
  align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.mobile-logo img { height: 44px; width: auto; object-fit: contain; }
.mobile-call-btn {
  background: var(--green); color: var(--white);
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
}

/* ==============================
   MOBILE BOTTOM NAV — mobile only
   ============================== */
.mobile-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
  height: var(--mobile-bottom-nav-height);
  padding-bottom: env(safe-area-inset-bottom, 0px); /* iPhone notch support */
}
.mobile-bottom-nav {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}
.mob-nav-item {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px; padding: 8px 4px;
  color: var(--gray); transition: var(--transition);
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.mob-nav-item.active,
.mob-nav-item:active { color: var(--green); }
.mob-nav-item::after {
  content: ''; position: absolute; top: 0; left: 20%; right: 20%;
  height: 3px; background: var(--green); border-radius: 0 0 3px 3px;
  transform: scaleX(0); transition: transform 0.25s ease;
}
.mob-nav-item.active::after { transform: scaleX(1); }
.mob-nav-icon { font-size: 1.3rem; line-height: 1; }
.mob-nav-label { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* Book button — highlighted centre item */
.mob-nav-book {
  background: var(--green);
  color: var(--white) !important;
  border-radius: 12px;
  margin: 6px 4px;
  padding: 6px 8px;
  box-shadow: 0 4px 12px rgba(46,125,50,0.35);
}
.mob-nav-book::after { display: none; }
.mob-nav-book .mob-nav-icon { font-size: 1.4rem; }

/* ==============================
   HERO SLIDER
   ============================== */
.hero {
  position: relative; height: 94vh; min-height: 560px;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.9s ease;
  display: flex; align-items: center; justify-content: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,94,32,0.7) 0%, rgba(0,0,0,0.5) 100%); }
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  max-width: 780px; color: var(--white);
  animation: fadeUp 0.8s ease both;
}
.hero-tag { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 4px; color: var(--gold-light); margin-bottom: 16px; }
.hero h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 6vw, 4.4rem); font-weight: 700; line-height: 1.12; margin-bottom: 18px; }
.hero h1 span { color: var(--gold-light); font-style: italic; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.88); margin-bottom: 32px; line-height: 1.7; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-trust {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin-top: 28px;
}
.hero-trust span {
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  border-radius: 50px;
  padding: 7px 13px;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.slide-prev, .slide-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; background: rgba(255,255,255,0.15); border: none;
  color: var(--white); font-size: 2.4rem; width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.slide-prev { left: 20px; }
.slide-next { right: 20px; }
.slide-prev:hover, .slide-next:hover { background: var(--green); }
.slide-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 8px; }
.slide-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: var(--transition); border: none; }
.slide-dot.active { background: var(--gold-light); transform: scale(1.2); }

/* ==============================
   QUICK BOOKING PANEL
   ============================== */
.booking-panel {
  position: relative;
  z-index: 20;
  margin-top: -46px;
  padding: 0 24px 34px;
}
.booking-card {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--ivory);
  border: 1px solid rgba(27,94,32,0.12);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(23,32,24,0.18);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 12px;
  padding: 18px;
  align-items: end;
}
.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-field label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-dark);
}
.booking-field input,
.booking-field select {
  width: 100%;
  border: 1.5px solid #dfe5d9;
  border-radius: 12px;
  background: var(--white);
  min-height: 46px;
  padding: 10px 12px;
  font-family: var(--font-sans);
  color: var(--dark);
  outline: none;
}
.booking-field input:focus,
.booking-field select:focus { border-color: var(--green); }
.booking-submit {
  min-height: 46px;
  justify-content: center;
  border-radius: 12px;
}

/* ==============================
   PREMIUM ACTION BAR
   ============================== */
.premium-action-bar {
  position: sticky;
  top: 72px;
  z-index: 90;
  max-width: 980px;
  margin: -10px auto 0;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: rgba(255,253,246,0.9);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(18px);
}
.premium-action-bar a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  transition: var(--transition);
}
.premium-action-bar a:hover,
.premium-action-bar a:nth-child(3) {
  background: var(--green-dark);
  color: var(--white);
}
.premium-action-bar a:nth-child(2):hover {
  background: #25D366;
  color: var(--white);
}

/* ==============================
   STATS BAR
   ============================== */
.stats-bar { background: var(--charcoal); padding: 18px 24px; }
.stats-container { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 12px; }
.stat-item { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 0.88rem; font-weight: 500; }
.stat-item strong { font-size: 0.85rem; color: var(--gold-light); border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; padding: 4px 9px; }

/* ==============================
   PREMIUM PROOF
   ============================== */
.premium-proof {
  background:
    linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  padding-top: 76px;
}
.proof-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.proof-copy p {
  color: var(--gray);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.proof-item {
  min-height: 250px;
  padding: 24px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,253,246,0.96));
  border: 1px solid rgba(27,94,32,0.1);
  box-shadow: var(--shadow);
}
.proof-item span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 900;
  margin-bottom: 22px;
}
.proof-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.14rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.proof-item p {
  color: var(--gray);
  font-size: 0.88rem;
}

/* ==============================
   ABOUT
   ============================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-imgs { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-img-main { grid-column: span 2; border-radius: var(--radius); height: 260px; box-shadow: var(--shadow-lg); }
.about-img-secondary { border-radius: var(--radius); height: 180px; box-shadow: var(--shadow); }
.about-badge { background: var(--green); border-radius: var(--radius); padding: 18px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; box-shadow: var(--shadow); }
.badge-icon { font-size: 2rem; }
.badge-label { font-size: 0.82rem; font-weight: 700; color: var(--white); line-height: 1.4; }
.about-text { display: flex; flex-direction: column; gap: 16px; }
.about-text p { color: var(--gray); }
.why-grid { display: flex; flex-direction: column; gap: 14px; padding: 18px 0; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-icon { font-size: 1.5rem; flex-shrink: 0; }
.why-item strong { display: block; font-size: 0.93rem; color: var(--dark); margin-bottom: 2px; }
.why-item p { font-size: 0.85rem; color: var(--gray); margin: 0; }

/* ==============================
   SERVICES
   ============================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card.featured { border: 2px solid var(--green); }
.service-featured-tag { position: absolute; top: 12px; right: 12px; background: var(--green); color: var(--white); font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 50px; z-index: 2; }
.service-img { height: 195px; overflow: hidden; }
.service-img img { height: 100%; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.service-icon { font-size: 1.8rem; }
.service-body h3 { font-family: var(--font-serif); font-size: 1.15rem; color: var(--dark); }
.service-body p { font-size: 0.87rem; color: var(--gray); }

/* ==============================
   PREMIUM EXPERIENCE SECTIONS
   ============================== */
.experience-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.experience-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.experience-copy p { color: var(--gray); }
.experience-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.experience-list div {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}
.experience-list strong {
  display: block;
  color: var(--green-dark);
  margin-bottom: 3px;
}
.experience-list span {
  color: var(--gray);
  font-size: 0.88rem;
}
.experience-media {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 14px;
  align-items: end;
}
.experience-media img {
  border-radius: 18px;
  height: 420px;
  box-shadow: var(--shadow-lg);
}
.experience-media img:last-child {
  height: 300px;
  margin-bottom: 42px;
}
.events-section { background: var(--white); }
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event-card {
  background: linear-gradient(180deg, var(--ivory), var(--white));
  border: 1px solid #ebe5d5;
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.event-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--green-dark);
  color: var(--gold-light);
  font-weight: 800;
  margin-bottom: 18px;
}
.event-card h3 {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.event-card p { color: var(--gray); font-size: 0.9rem; }
.tourism-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.section-sub.left { margin-left: 0; }
.tourism-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.tourism-cards div {
  min-height: 132px;
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
}
.tourism-cards strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.tourism-cards span {
  color: var(--gray);
  font-size: 0.88rem;
}

/* ==============================
   ROOMS
   ============================== */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.room-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.room-card.featured { border: 2px solid var(--gold); }
.room-featured-tag { position: absolute; top: 12px; right: 12px; background: var(--gold); color: var(--white); font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 50px; z-index: 2; }
.room-img { position: relative; height: 215px; overflow: hidden; }
.room-img img { height: 100%; transition: transform 0.5s ease; }
.room-card:hover .room-img img { transform: scale(1.06); }
.room-badge { position: absolute; bottom: 12px; left: 12px; background: rgba(27,94,32,0.92); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 5px 14px; border-radius: 50px; }
.room-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.room-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.room-meta span {
  border-radius: 999px;
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 5px 10px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.room-body h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--dark); }
.room-body p { font-size: 0.87rem; color: var(--gray); }
.room-features { display: flex; flex-direction: column; gap: 5px; }
.room-features li { font-size: 0.83rem; color: var(--gray); }

/* ==============================
   AERIAL BANNER
   ============================== */
.banner-aerial { position: relative; height: 440px; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); overflow: hidden; }
.banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.banner-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(27,94,32,0.75), rgba(0,0,0,0.45)); }
.banner-content { position: relative; z-index: 2; max-width: 620px; padding: 0 24px; }
.banner-content h2 { font-family: var(--font-serif); font-size: clamp(1.7rem, 4vw, 2.8rem); margin-bottom: 14px; }
.banner-content p { font-size: 1rem; opacity: 0.9; margin-bottom: 26px; }

/* ==============================
   SIGNATURE STAYS
   ============================== */
.signature-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}
.signature-card {
  min-height: 430px;
  background: var(--white);
  border: 1px solid rgba(27,94,32,0.11);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.signature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.signature-card img {
  height: 210px;
}
.signature-card div {
  padding: 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 11px;
}
.signature-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.signature-card h3 {
  font-family: var(--font-serif);
  color: var(--dark);
  font-size: 1.32rem;
}
.signature-card p {
  color: var(--gray);
  font-size: 0.9rem;
}
.signature-card .btn {
  margin-top: auto;
  justify-content: center;
}
.signature-featured {
  background:
    linear-gradient(180deg, rgba(255,253,246,0.96), rgba(255,255,255,0.98));
  border-color: rgba(245,127,23,0.3);
}
.signature-featured img {
  height: 250px;
}

/* ==============================
   PUBLIC NOTIFICATIONS
   ============================== */
.notifications-section {
  background:
    linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.notifications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.notification-card {
  min-height: 220px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(27,94,32,0.12);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.notification-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.notification-type {
  align-self: flex-start;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.notification-type.promo {
  background: rgba(245,127,23,0.16);
  color: #a35408;
}
.notification-type.alert {
  background: #fff3cd;
  color: #8a5b00;
}
.notification-card h3 {
  font-family: var(--font-serif);
  color: var(--dark);
  font-size: 1.22rem;
}
.notification-card p {
  color: var(--gray);
  font-weight: 700;
  font-size: 0.9rem;
}
.notification-meta {
  margin-top: auto;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 800;
}
.notification-empty {
  grid-column: 1 / -1;
  padding: 28px;
  text-align: center;
  border: 1px dashed rgba(27,94,32,0.22);
  border-radius: 18px;
  color: var(--gray);
  font-weight: 800;
  background: rgba(255,255,255,0.72);
}

/* ==============================
   GALLERY
   ============================== */
.gallery-filter { display: flex; gap: 8px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.filter-btn { padding: 8px 18px; border-radius: 50px; border: 1.5px solid #d1d5db; background: var(--white); cursor: pointer; font-size: 0.83rem; font-weight: 600; color: var(--gray); transition: var(--transition); font-family: var(--font-sans); }
.filter-btn.active, .filter-btn:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item.hidden { display: none; }

/* ==============================
   RESERVATION
   ============================== */
.reservation { background: var(--green-dark); }
.reservation .section-tag { color: var(--gold-light); }
.reservation .section-title { color: var(--white); }
.reservation p { color: rgba(255,255,255,0.8); }
.res-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.res-info { display: flex; flex-direction: column; gap: 20px; }
.res-contact-list { display: flex; flex-direction: column; gap: 14px; }
.res-contact-item { display: flex; gap: 14px; align-items: flex-start; }
.res-contact-item span { font-size: 1.3rem; flex-shrink: 0; }
.res-contact-item strong { display: block; color: var(--white); font-size: 0.88rem; margin-bottom: 2px; }
.res-contact-item p { font-size: 0.86rem; color: rgba(255,255,255,0.75); margin: 0; }
.res-contact-item a { color: var(--gold-light); }
.res-form-wrap { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-lg); }
.res-form h3 { font-family: var(--font-serif); font-size: 1.45rem; margin-bottom: 22px; color: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-group label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); }
.form-group input,
.form-group select,
.form-group textarea { padding: 11px 13px; border: 1.5px solid #e5e7eb; border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: 0.92rem; color: var(--dark); outline: none; transition: border-color 0.2s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.76rem; color: var(--gray); text-align: center; margin-top: 8px; }

/* ==============================
   GUEST JOURNEY
   ============================== */
.guest-journey {
  position: relative;
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.journey-step {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(27,94,32,0.1);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.journey-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold-light);
  font-weight: 900;
  margin-bottom: 18px;
}
.journey-step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.journey-step p {
  color: var(--gray);
  font-size: 0.88rem;
}

/* ==============================
   CONTACT
   ============================== */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 48px; }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 26px 18px; box-shadow: var(--shadow); text-align: center; display: flex; flex-direction: column; gap: 8px; transition: transform 0.3s, box-shadow 0.3s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.c-icon { font-size: 2rem; }
.contact-card h4 { font-family: var(--font-serif); font-size: 1rem; color: var(--dark); }
.contact-card p { font-size: 0.86rem; color: var(--gray); }
.contact-card a { color: var(--green); transition: color 0.2s; }
.contact-card a:hover { color: var(--green-dark); }
.c-link { color: var(--green) !important; font-weight: 600; font-size: 0.84rem; }
.contact-form-outer { max-width: 680px; margin: 0 auto; }
.contact-form-center { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-lg); }
.contact-form-center h3 { font-family: var(--font-serif); font-size: 1.45rem; margin-bottom: 22px; color: var(--dark); text-align: center; }

/* ==============================
   TRUST AND PAYMENT
   ============================== */
.trust-payment {
  background:
    linear-gradient(135deg, rgba(13,51,24,0.94), rgba(27,94,32,0.86)),
    url('https://tropicalgardenshotel.com/wp-content/uploads/2023/06/9.jpg') center/cover;
  color: var(--white);
}
.review-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.review-card {
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
}
.review-card.highlight {
  background: var(--ivory);
  color: var(--dark);
}
.review-card.highlight .section-title { color: var(--dark); }
.review-card.highlight p { color: var(--gray); margin-bottom: 20px; }
.review-card span {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.review-card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
}

/* ==============================
   FOOTER
   ============================== */
.footer { background: #0d3318; color: rgba(255,255,255,0.72); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 44px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo-img { height: 68px; width: auto; object-fit: contain; margin-bottom: 14px; border-radius: 6px; }
.footer-brand p { font-size: 0.87rem; line-height: 1.7; }
.footer-social { display: flex; gap: 8px; margin-top: 14px; }
.footer-social a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; transition: var(--transition); color: rgba(255,255,255,0.75); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.97rem; font-weight: 700; margin-bottom: 14px; font-family: var(--font-serif); }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 0.86rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-col p { font-size: 0.86rem; margin-bottom: 7px; }
.footer-col a { color: rgba(255,255,255,0.72); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 0.8rem; opacity: 0.6; flex-wrap: wrap; gap: 8px; }

/* ==============================
   WHATSAPP FLOAT
   ============================== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 24px; z-index: 250;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ==============================
   TOAST
   ============================== */
.toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--green-dark); color: var(--white);
  padding: 13px 26px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  opacity: 0; transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  z-index: 1000; white-space: nowrap; max-width: 90vw; text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ==============================
   ANIMATIONS
   ============================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ==============================
   RESPONSIVE — TABLET (≤1024px)
   ============================== */
@media (max-width: 1024px) {
  .about-grid, .res-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid, .rooms-grid, .proof-grid, .signature-grid, .notifications-grid, .journey-grid { grid-template-columns: 1fr 1fr; }
  .booking-card { grid-template-columns: repeat(2, 1fr); }
  .booking-submit { grid-column: 1 / -1; }
  .experience-grid, .tourism-layout, .proof-layout { grid-template-columns: 1fr; gap: 34px; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .about-img-main { height: 220px; }
  .about-img-secondary { height: 160px; }
  .premium-action-bar { max-width: calc(100% - 32px); }
}

/* ==============================
   RESPONSIVE — MOBILE (≤768px)
   ============================== */
@media (max-width: 768px) {

  /* Switch header/nav */
  .topbar { display: none; }
  #navbar { display: none; }
  .mobile-header { display: flex; }

  /* Show bottom nav */
  .mobile-bottom-nav {
    display: grid !important;
  }

  /* Body needs bottom padding so content isn't behind the nav */
  body { padding-bottom: var(--mobile-bottom-nav-height); }

  /* Sections */
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: 1.6rem; }

  /* Hero */
  .hero { height: 80vh; min-height: 480px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.9rem; display: none; } /* hide on very small */
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .hero-btns .btn { width: 220px; justify-content: center; }
  .hero-trust { display: none; }
  .slide-prev { left: 10px; }
  .slide-next { right: 10px; }

  .booking-panel { margin-top: 0; padding: 16px; background: var(--cream); }
  .booking-card { grid-template-columns: 1fr; border-radius: 14px; box-shadow: var(--shadow); }
  .premium-action-bar {
    position: static;
    max-width: none;
    margin: 0 16px 8px;
    border-radius: 18px;
    grid-template-columns: 1fr 1fr;
  }
  .premium-action-bar a {
    border-radius: 12px;
    font-size: 0.74rem;
    padding: 0 8px;
  }

  /* Stats bar — horizontal scroll */
  .stats-bar { padding: 12px 16px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .stats-container { flex-wrap: nowrap; justify-content: flex-start; gap: 20px; min-width: max-content; }
  .stat-item { font-size: 0.8rem; white-space: nowrap; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-imgs { grid-template-columns: 1fr 1fr; gap: 10px; }
  .about-img-main { height: 200px; }
  .about-img-secondary { height: 140px; }

  /* Services — single column */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-img { height: 180px; }

  .experience-media { grid-template-columns: 1fr; }
  .experience-media img,
  .experience-media img:last-child { height: 240px; margin-bottom: 0; }
  .proof-grid, .event-grid, .tourism-cards, .review-grid, .notifications-grid, .journey-grid { grid-template-columns: 1fr; }
  .proof-item, .journey-step { min-height: auto; }

  /* Rooms — single column */
  .rooms-grid { grid-template-columns: 1fr; gap: 16px; }
  .room-img { height: 200px; }
  .signature-grid { grid-template-columns: 1fr; }
  .signature-card,
  .signature-featured { min-height: auto; }
  .signature-card img,
  .signature-featured img { height: 210px; }

  /* Banner */
  .banner-aerial { height: 280px; }
  .banner-content h2 { font-size: 1.5rem; }
  .banner-content p { font-size: 0.88rem; }

  /* Gallery — 2 col */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-filter { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: 0.78rem; }

  /* Reservation */
  .res-grid { grid-template-columns: 1fr; gap: 28px; }
  .res-form-wrap { padding: 20px; }
  .res-form h3 { font-size: 1.25rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-form-center { padding: 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer { padding-bottom: 16px; }

  /* WhatsApp button — move up above bottom nav */
  .whatsapp-float { bottom: calc(var(--mobile-bottom-nav-height) + 12px); right: 16px; width: 48px; height: 48px; }

  /* Buttons */
  .btn { padding: 12px 22px; font-size: 0.88rem; }
}

/* ==============================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================== */
@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .premium-action-bar { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.75rem; }
  .hero-tag { font-size: 0.7rem; letter-spacing: 2px; }
  .about-imgs { grid-template-columns: 1fr; }
  .about-img-secondary, .about-badge { display: none; }
  .mob-nav-label { display: none; }
  .mob-nav-icon { font-size: 1.5rem; }
  .mobile-bottom-nav { height: 54px; }
  body { --mobile-bottom-nav-height: 54px; }
}

/* ==============================
   BOOKING MODAL
   ============================== */
.book-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 400;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  animation: fadeIn 0.2s ease;
}
.book-overlay.show { display: block; }

.book-modal {
  display: none;
  position: fixed;
  z-index: 401;
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
  width: 92%; max-width: 440px;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s ease;
}
.book-modal.show {
  display: block;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.book-modal-close {
  position: absolute; top: 14px; right: 16px;
  background: var(--light-gray, #f3f4f6); border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 0.9rem; color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.book-modal-close:hover { background: #e5e7eb; color: var(--dark); }

.book-modal-header { text-align: center; margin-bottom: 24px; }
.book-modal-icon { font-size: 2.4rem; display: block; margin-bottom: 10px; }
.book-modal-header h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--dark); margin-bottom: 4px; }
.book-modal-room { font-size: 0.85rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.book-modal-sub { font-size: 0.88rem; color: var(--gray); }

.book-modal-options { display: flex; flex-direction: column; gap: 0; }

.book-option {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px; border-radius: 14px;
  cursor: pointer; transition: var(--transition);
  text-decoration: none; color: var(--dark);
  border: 2px solid transparent;
}
.book-option:hover { transform: translateY(-2px); border-color: currentColor; }

.book-option-whatsapp {
  background: #e7faf0; color: #1a7a3c;
}
.book-option-whatsapp:hover { background: #d0f5e2; border-color: #25D366; }

.book-option-form {
  background: var(--green-pale); color: var(--green-dark);
}
.book-option-form:hover { background: #c8e6c9; border-color: var(--green); }

.book-option-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.book-option-icon-green { background: var(--green) !important; }

.book-option-text { flex: 1; }
.book-option-text strong { display: block; font-size: 0.97rem; font-weight: 700; margin-bottom: 2px; }
.book-option-text span { font-size: 0.81rem; opacity: 0.75; }

.book-option-arrow { font-size: 1.1rem; opacity: 0.5; }

.book-option-divider {
  text-align: center; position: relative;
  margin: 6px 0;
}
.book-option-divider::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: #e5e7eb;
}
.book-option-divider span {
  position: relative; background: var(--white);
  padding: 0 10px; font-size: 0.78rem; color: var(--gray);
  text-transform: uppercase; letter-spacing: 1px;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Mobile adjustments */
@media (max-width: 480px) {
  .book-modal { padding: 28px 20px 22px; border-radius: 16px; }
  .book-modal-header h3 { font-size: 1.3rem; }
  .book-option { padding: 13px 14px; gap: 12px; }
  .book-option-icon { width: 44px; height: 44px; }
}

/* ==============================
   FOOD MENU SECTION
   ============================== */
.menu-section { background: var(--white); }

.menu-tabs {
  display: flex; gap: 8px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 36px;
}
.menu-tab {
  padding: 9px 20px; border-radius: 50px;
  border: 1.5px solid #d1d5db; background: var(--white);
  cursor: pointer; font-size: 0.85rem; font-weight: 600;
  color: var(--gray); transition: var(--transition);
  font-family: var(--font-sans);
}
.menu-tab.active, .menu-tab:hover {
  background: var(--green); border-color: var(--green); color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  min-height: 200px;
}

.menu-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 20px; border: 1px solid #e8f0e8;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.menu-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.menu-card.featured { border-color: var(--gold); background: #fffde7; }

.menu-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.menu-card-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.menu-card-price { font-size: 0.92rem; font-weight: 800; color: var(--green-dark); white-space: nowrap; flex-shrink: 0; }
.menu-card-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.55; }
.menu-card-cat { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--green); }
.featured-badge {
  position: absolute; top: -1px; right: 12px;
  background: var(--gold); color: var(--white);
  font-size: 0.62rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.5px; padding: 3px 8px; border-radius: 0 0 6px 6px;
}

.menu-loading {
  grid-column: 1 / -1; text-align: center;
  padding: 60px 20px; color: var(--gray); font-size: 0.95rem;
}
.menu-empty {
  grid-column: 1 / -1; text-align: center;
  padding: 48px 20px; color: var(--gray);
}

.menu-footer {
  text-align: center; margin-top: 36px;
  padding: 20px; background: var(--green-pale);
  border-radius: var(--radius); font-size: 0.9rem;
}
.menu-footer a { color: var(--green); font-weight: 600; }
.menu-credit {
  margin-top: 8px;
  font-size: 0.76rem;
  color: var(--gray);
}

/* responsive */
@media (max-width: 1024px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; gap: 12px; }
  .menu-tabs { gap: 6px; }
  .menu-tab { padding: 7px 14px; font-size: 0.78rem; }
  .menu-card { padding: 16px; }
}
