/* ============================================
   SHALA RIVER TOURS — MAIN STYLESHEET
   Theme: Luxury Alpine Nature / Refined Organic
   Fonts: Playfair Display + Jost
   ============================================ */

:root {
  --teal:        #1a7a6e;
  --teal-dark:   #115c52;
  --teal-light:  #2aa090;
  --gold:        #c9a227;
  --gold-light:  #e8c252;
  --cream:       #f8f4ef;
  --cream-dark:  #ede7de;
  --text:        #1e2922;
  --text-light:  #4a5c52;
  --white:       #ffffff;
  --shadow:      0 8px 40px rgba(26,122,110,0.12);
  --shadow-lg:   0 20px 60px rgba(26,122,110,0.18);
  --footer-bg:   #0e2620;
  --navbar-height:     72px;
  --topbar-height:     36px;
  --header-offset:     calc(var(--navbar-height) + var(--topbar-height)); /* 108px: total fixed header height while the top bar is visible */
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

/* ── Top bar ────────────────────────────────── */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: var(--teal-dark); color: rgba(255,255,255,0.9);
  font-size: .8rem; height: 36px;
}
.top-bar-inner {
  max-width: 1280px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; gap: 1.6rem; padding: 0 2rem;
}
.top-bar-item { color: rgba(255,255,255,0.9); text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; transition: color .15s; }
.top-bar-item:hover { color: var(--gold-light); }
.top-bar-note { color: rgba(255,255,255,0.55); margin-left: auto; }
@media (max-width: 720px) {
  .top-bar-note { display: none; }
}
@media (max-width: 480px) {
  .top-bar { display: none; } /* mobile already has the sticky WhatsApp/Book bar at the bottom */
  .navbar { top: 0; } /* no top bar to offset below at this width */
  :root { --header-offset: var(--navbar-height); } /* top bar is hidden, so only the navbar's own height needs clearing */
  .nav-toggle-label { display: none; } /* icon-only on very small screens to avoid crowding the logo; the visible pill background still makes it read clearly as a button */
  .nav-toggle { padding: 8px 10px; }
}

/* ── Navbar ─────────────────────────────────── */
.navbar {
  position: fixed; top: var(--topbar-height); left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,122,110,0.1);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }

.nav-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--teal-dark);
  transition: var(--transition);
}
.nav-logo svg { color: var(--teal); }
.nav-logo:hover { color: var(--teal); }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links > li > a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-light);
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--teal); background: rgba(26,122,110,0.07); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  box-shadow: 0 4px 15px rgba(26,122,110,0.3);
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,122,110,0.4) !important;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border: 1px solid rgba(26,122,110,0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li a {
  display: block; padding: 0.7rem 1.2rem;
  font-size: 0.9rem; color: var(--text-light);
  transition: var(--transition);
}
.dropdown-menu li a:hover { color: var(--teal); background: var(--cream); }

.nav-toggle {
  display: none; align-items: center; gap: 8px;
  background: var(--cream); border: 1.5px solid rgba(26,122,110,0.25);
  border-radius: 999px; cursor: pointer; padding: 8px 14px 8px 12px;
  transition: var(--transition);
}
.nav-toggle:hover { background: var(--teal); border-color: var(--teal); }
.nav-toggle:hover .hamburger span { background: #fff; }
.nav-toggle:hover .nav-toggle-label { color: #fff; }
.nav-toggle span.hamburger {
  display: flex; flex-direction: column; gap: 5px; flex-shrink: 0;
}
.nav-toggle .hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--teal-dark); border-radius: 2px; transition: var(--transition);
}
.nav-toggle-label {
  font-size: 0.85rem; font-weight: 600; color: var(--teal-dark);
  letter-spacing: 0.02em; transition: var(--transition);
}

/* ── Sections / Layout ──────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,162,39,0.1);
  padding: 0.35rem 1rem; border-radius: 50px;
  margin-bottom: 1rem;
}

.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header p { color: var(--text-light); margin-top: 1rem; font-size: 1.05rem; }

/* ── Hero ─────────────────────────────────── */
/* Hero uses a real <img class="hero-bg-img"> for Google LCP preloading.
   The old .hero-bg div approach has been removed. */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: var(--header-offset);
  background: linear-gradient(135deg, var(--teal-dark) 0%, #0d3d35 50%, #071f1b 100%);
}

.hero-content {
  position: relative; z-index: 2; text-align: center;
  color: var(--white); padding: 2rem;
  animation: heroFadeIn 1.2s ease both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,0.2); border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold-light); font-size: 0.8rem; font-weight: 500;
  padding: 0.4rem 1.2rem; border-radius: 50px;
  margin-bottom: 1.5rem; letter-spacing: 0.05em;
}

.hero h1, .hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white); margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 em, .hero-highlight { color: var(--gold-light); font-style: italic; }
.hero p, .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8); max-width: 540px;
  margin: 0 auto 2.5rem;
}

.hero-btns, .hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--text) !important;
  padding: 0.9rem 2rem;
  border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.03em;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,162,39,0.4);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,162,39,0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white) !important;
  padding: 0.9rem 2rem;
  border-radius: 50px; font-weight: 500;
  font-size: 0.95rem; border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition); display: inline-block;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.9rem 2rem;
  border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; border: none; cursor: pointer;
  transition: var(--transition); display: inline-block;
  box-shadow: 0 4px 15px rgba(26,122,110,0.3);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,122,110,0.4);
}

.hero-stats {
  display: flex; gap: 2.5rem; justify-content: center;
  margin-top: 3rem; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--gold-light);
}
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}
.hero-scroll svg { color: rgba(255,255,255,0.4); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Cards ──────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  border: 1px solid rgba(26,122,110,0.06);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ── Feature Grid ──────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(26,122,110,0.08);
  transition: var(--transition);
  text-align: center;
}
.feature-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(26,122,110,0.1), rgba(26,122,110,0.05));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; color: var(--teal); font-size: 1.8rem;
}
.feature-card h3 { margin-bottom: 0.6rem; }
.feature-card p { color: var(--text-light); font-size: 0.95rem; }
.feature-link {
  display: inline-block; margin-top: 1rem;
  color: var(--teal); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: var(--transition);
}
.feature-link:hover { color: var(--teal-dark); transform: translateX(3px); }

/* ── Testimonials ──────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border-left: 4px solid var(--teal);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.8rem; }
.testimonial-text { color: var(--text-light); font-style: italic; margin-bottom: 1rem; line-height: 1.7; }
.testimonial-author strong { display: block; font-weight: 600; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

/* ── Schedule ──────────────────────────────── */
.schedule-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.schedule-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(26,122,110,0.1);
  text-align: center;
}
.schedule-card h3 { color: var(--teal); margin-bottom: 0.3rem; }
.schedule-card .subtitle { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
.departure-time {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.8rem 1rem; background: var(--cream);
  border-radius: 10px; margin-bottom: 0.5rem;
}
.departure-time .label { font-size: 0.85rem; color: var(--text-light); }
.departure-time .time { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--teal); }

/* ── Pricing ──────────────────────────────── */
.pricing-section { background: var(--cream); }
.pricing-tabs { display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 3rem; flex-wrap: wrap; }
.pricing-tab {
  padding: 0.6rem 1.5rem;
  border-radius: 50px; font-weight: 500; font-size: 0.9rem;
  border: 2px solid rgba(26,122,110,0.2);
  background: transparent; cursor: pointer;
  transition: var(--transition); color: var(--text-light);
}
.pricing-tab.active {
  background: var(--teal); color: var(--white);
  border-color: var(--teal); box-shadow: 0 4px 12px rgba(26,122,110,0.3);
}

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured::before {
  content: 'Best Value';
  position: absolute; top: 1rem; right: -2rem;
  background: var(--gold); color: var(--text);
  font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 2.5rem;
  transform: rotate(35deg);
  letter-spacing: 0.05em;
}
.pricing-card:hover { border-color: var(--teal-light); box-shadow: var(--shadow-lg); }
.price-type { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--text); }
.price-amount sup { font-size: 1.2rem; vertical-align: super; }
.price-unit { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
.price-features { list-style: none; margin-bottom: 1.8rem; }
.price-features li {
  padding: 0.4rem 0;
  font-size: 0.9rem; color: var(--text-light);
  display: flex; align-items: center; gap: 8px;
}
.price-features li::before { content: '✓'; color: var(--teal); font-weight: 700; }

/* ── Gallery ──────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}
.gallery-item { overflow: hidden; border-radius: var(--radius); cursor: pointer; position: relative; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,38,32,0.7) 0%, transparent 50%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 0.9rem; font-weight: 500; }

/* ── CTA Banner ──────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark), #0d3d35);
  color: var(--white); text-align: center; padding: 5rem 2rem;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('https://public.youware.com/users-website-assets/prod/78ae7f5d-6d2b-4fa7-80c5-1a20044f5e3c/cb59e463eb8d4552ad023b8282def195.jpg');
  background-size: cover; background-position: center;
  opacity: 0.15;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 2rem; }

/* ── Page Header ─────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--teal-dark), #0d3d35);
  color: var(--white); padding: 7rem 2rem 4rem;
  text-align: center; margin-top: var(--header-offset); position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  opacity: 0.2;
  background-size: cover; background-position: center;
}
.page-header h1 { color: var(--white); margin-bottom: 0.8rem; }
.page-header p { color: rgba(255,255,255,0.75); max-width: 550px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center;
  justify-content: center; margin-bottom: 1rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ── Forms ───────────────────────────────── */
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block; margin-bottom: 0.4rem;
  font-size: 0.9rem; font-weight: 500; color: var(--text);
}
.form-label .required { color: #e04040; }
.form-control {
  width: 100%; padding: 0.8rem 1rem;
  border: 1.5px solid rgba(26,122,110,0.2);
  border-radius: var(--radius); font-family: 'Jost', sans-serif;
  font-size: 0.95rem; color: var(--text);
  background: var(--white);
  transition: var(--transition);
}
.form-control:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,122,110,0.1);
}
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 110px; }

.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }

.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow);
}

/* Price preview */
.price-preview {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; margin-top: 1.5rem; text-align: center;
}
.price-preview .total { font-size: 2rem; font-family: 'Playfair Display', serif; font-weight: 700; }
.price-preview .note { font-size: 0.8rem; opacity: 0.8; margin-top: 0.3rem; }

/* Alert */
.alert {
  padding: 1rem 1.3rem; border-radius: var(--radius);
  margin-bottom: 1.2rem; font-size: 0.9rem; font-weight: 500;
}
.alert-success { background: rgba(34,139,34,0.1); color: #1a6b1a; border: 1px solid rgba(34,139,34,0.25); }
.alert-error   { background: rgba(220,38,38,0.1); color: #b91c1c; border: 1px solid rgba(220,38,38,0.25); }
.alert-info    { background: rgba(26,122,110,0.08); color: var(--teal-dark); border: 1px solid rgba(26,122,110,0.2); }

/* Steps */
.steps { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.step { flex: 1; min-width: 140px; text-align: center; padding: 1rem; position: relative; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cream); border: 2px solid rgba(26,122,110,0.2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; margin: 0 auto 0.6rem;
  color: var(--text-light); transition: var(--transition);
}
.step.active .step-num { background: var(--teal); color: var(--white); border-color: var(--teal); }
.step.done .step-num { background: var(--teal-dark); color: var(--white); border-color: var(--teal-dark); }
.step p { font-size: 0.8rem; color: var(--text-light); }

/* ── Restaurant Menu ─────────────────────── */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.menu-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.menu-card h3 { color: var(--teal); margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 2px solid var(--cream-dark); }
.menu-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 0.7rem 0; border-bottom: 1px solid var(--cream);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name { font-size: 0.95rem; font-weight: 500; }
.menu-item-served-with { font-size: 0.78rem; color: var(--text-light); font-weight: 400; font-style: italic; }
.menu-item-price { color: var(--teal); font-weight: 700; white-space: nowrap; }

/* ── Accommodation ───────────────────────── */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.room-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.room-img { width: 100%; height: 220px; object-fit: cover; }
.room-body { padding: 1.5rem; }
.room-price { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--teal); }
.room-price span { font-size: 0.8rem; color: var(--text-light); font-family: 'Jost', sans-serif; }
.room-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 0.8rem 0 1.2rem; }
.room-tag {
  background: var(--cream); color: var(--text-light);
  font-size: 0.75rem; padding: 0.25rem 0.7rem; border-radius: 50px;
}

/* ── History Timeline ─────────────────────── */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--teal), var(--teal-light));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex; gap: 2rem; margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease both;
}
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-content {
  flex: 1; background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(26,122,110,0.08);
}
.timeline-item:nth-child(odd) .timeline-content { text-align: right; }
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--teal);
  margin-bottom: 0.4rem;
}
.timeline-dot {
  width: 16px; height: 16px; background: var(--teal);
  border: 3px solid var(--white); border-radius: 50%;
  box-shadow: 0 0 0 3px var(--teal);
  flex-shrink: 0; align-self: flex-start; margin-top: 1.5rem;
  position: relative; z-index: 1;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Contact ─────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info-card {
  background: var(--teal-dark); color: var(--white);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.contact-info-card p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 0.95rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold-light);
}
.contact-item .label { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.2rem; }
.contact-item a, .contact-item span { color: rgba(255,255,255,0.9); font-size: 0.95rem; }
.contact-item a:hover { color: var(--gold-light); }

/* ── Admin ───────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px; background: var(--teal-dark);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 100;
}
.admin-sidebar-logo {
  padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--white); font-weight: 700;
}
.admin-nav { padding: 1rem 0; flex: 1; }
.admin-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 500;
  transition: var(--transition);
}
.admin-nav a:hover, .admin-nav a.active {
  color: var(--white); background: rgba(255,255,255,0.1);
  border-right: 3px solid var(--gold);
}
.admin-main { margin-left: 260px; flex: 1; background: #f0f4f2; min-height: 100vh; }
.admin-header {
  background: var(--white); padding: 1.2rem 2rem;
  border-bottom: 1px solid rgba(26,122,110,0.1);
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.admin-header h1 { font-size: 1.3rem; font-weight: 600; }
.admin-content { padding: 2rem; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.stat-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-left: 4px solid var(--teal);
}
.stat-card .stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--teal); font-weight: 700; }
.stat-card .stat-label { font-size: 0.85rem; color: var(--text-light); margin-top: 0.2rem; }

.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th {
  background: var(--teal-dark); color: var(--white);
  padding: 0.8rem 1rem; text-align: left; font-weight: 500;
  font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase;
}
.data-table td { padding: 0.8rem 1rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
.data-table tr:hover td { background: rgba(26,122,110,0.04); }
.data-table-wrap { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }

.badge {
  display: inline-block; padding: 0.25rem 0.7rem;
  border-radius: 50px; font-size: 0.75rem; font-weight: 600;
}
.badge-pending  { background: rgba(245,158,11,0.15); color: #b45309; }
.badge-confirmed{ background: rgba(34,197,94,0.15); color: #15803d; }
.badge-cancelled{ background: rgba(239,68,68,0.15); color: #b91c1c; }
.badge-completed{ background: rgba(99,102,241,0.15); color: #4338ca; }

/* ── Info Box ─────────────────────────────── */
.info-box {
  background: var(--cream); border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.5rem; margin: 1.5rem 0;
}
.info-box h4 { color: var(--teal); margin-bottom: 0.4rem; }
.info-box p, .info-box li { font-size: 0.9rem; color: var(--text-light); }
.info-box ul { list-style: disc; padding-left: 1.2rem; }

/* ── Footer ──────────────────────────────── */
.footer { background: var(--footer-bg); color: rgba(255,255,255,0.7); position: relative; }
.footer-waves { margin-bottom: -4px; line-height: 0; }
.footer-inner { padding: 4rem 2rem 2rem; max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.9rem; margin: 1rem 0; line-height: 1.7; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--white); font-weight: 700;
}
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: var(--transition);
}
.footer-social a:hover { background: var(--teal); color: var(--white); }
.footer-col h4 { color: var(--white); margin-bottom: 1.2rem; font-size: 0.95rem; letter-spacing: 0.05em; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-tagline { font-size: 0.88rem; margin: 0.6rem 0 1.2rem; color: rgba(255,255,255,0.55); }
.footer-badges { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85); font-size: 0.78rem; font-weight: 600;
  padding: 0.35rem 0.8rem; border-radius: 50px;
}
.footer-contact li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; }
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--teal-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom-wrap { display: flex; flex-direction: column; }
.footer-payment-row {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  padding-top: 1.6rem; margin-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-payment-label { font-size: .78rem; color: rgba(255,255,255,0.5); }
.footer-payment-badge {
  font-size: .74rem; font-weight: 600; color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: .3rem .7rem; border-radius: 20px;
}
.footer-bottom-wrap .footer-bottom { padding-top: 1.2rem; }
.footer-copyright { margin: 0; color: rgba(255,255,255,0.65); }
.footer-nav-links {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0 1.2rem;
  list-style: none; margin: 0; padding: 0;
}
.footer-nav-links li { margin: 0; }
.footer-nav-links a {
  color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.82rem;
  transition: color .15s; display: inline-block; padding: .3rem 0;
}
.footer-nav-links a:hover { color: var(--gold-light); }

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: auto; }
  .timeline::before { left: 0; }
  .timeline-item { flex-direction: column !important; padding-left: 1.5rem; }
  .timeline-item .timeline-content { text-align: left !important; }
  .timeline-dot { position: absolute; left: -8px; }
  .timeline { padding-left: 1rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 1rem; border-bottom: 1px solid rgba(26,122,110,0.1); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: var(--cream); opacity: 1; visibility: visible; transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: auto; grid-row: auto; }
  .gallery-item { height: 200px; }
  .hero-stats { gap: 1.5rem; }
  .admin-sidebar { transform: translateX(-100%); transition: var(--transition); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  /* Two-column intro/detail grids used across About, Accommodation, Canoe,
     History, Restaurant, Tours, and Contact -- previously each page had
     its own near-duplicate inline <style> block for this exact rule with
     inconsistent breakpoints (700px vs 768px); consolidated here to one
     rule at one breakpoint used everywhere. */
  .about-grid, .intro-grid, .how-grid, .bring-grid, .res-layout, .contact-map-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── Floating WhatsApp Button ─────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 9000;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid rgba(26,122,110,.1);
  overflow: hidden; transition: border-color .25s;
}
.faq-item.open { border-color: var(--teal); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.1rem 1.4rem;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'Jost', sans-serif; font-size: .97rem; font-weight: 600;
  color: var(--text); line-height: 1.4;
}
.faq-q:hover { color: var(--teal); }
.faq-icon { flex-shrink: 0; transition: transform .3s; color: var(--teal); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  padding: 0 1.4rem 1.1rem; font-size: .92rem;
  color: var(--text-light); line-height: 1.75;
  border-top: 1px solid var(--cream-dark);
  animation: faqSlide .2s ease;
}
.faq-a[hidden] { display: none; }
.faq-a strong { color: var(--text); }
@keyframes faqSlide { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }

/* ── Trust Badges ─────────────────────────────────────────── */
.footer-trust {
  display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center;
  padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 2rem;
}
.trust-badge {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75); font-size: .78rem; font-weight: 500;
  padding: .4rem 1rem; border-radius: 50px; letter-spacing: .03em;
}

/* ── Footer contact lines ─────────────────────────────────── */
.contact-line {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .85rem; margin-bottom: .55rem;
}
.contact-line svg { flex-shrink: 0; margin-top: 1px; color: var(--teal-light); }
.contact-line a, .contact-line span { color: rgba(255,255,255,.8); }
.contact-line a:hover { color: var(--teal-light); }

/* ── Footer headings → h3 override in footer context ─────── */
.footer-col h3 {
  font-size: .93rem; font-weight: 600; letter-spacing: .05em;
  color: var(--white); margin-bottom: 1.1rem;
  font-family: 'Jost', sans-serif; text-transform: uppercase;
}

/* ── Improved h2 / heading hierarchy for SEO ─────────────── */
.footer-bottom { flex-wrap: wrap; gap: .6rem; }

/* ── Hero image (LCP element — real <img> not CSS background) ── */
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.35;
  pointer-events: none;
}
/* .hero-bg-img::after removed - overlay handled by .hero::after */
/* Dark overlay on hero */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(14,38,32,0.5) 0%, rgba(14,38,32,0.85) 100%);
  pointer-events: none;
}

/* ── Core Web Vitals: explicit aspect ratios prevent CLS ─── */
.gallery-img { aspect-ratio: 4/3; object-fit: cover; width: 100%; height: 100%; transition: transform 0.6s ease; }
.room-img    { aspect-ratio: 16/9; object-fit: cover; }

/* ── Skip link (accessibility / Lighthouse) ──────────────── */
.skip-link:focus {
  position: fixed !important; left: 1rem !important; top: 1rem !important;
  width: auto !important; height: auto !important; overflow: visible !important;
  padding: .6rem 1.2rem; background: var(--teal); color: white;
  border-radius: 8px; font-weight: 600; z-index: 99999; text-decoration: none;
}

/* ── Nav aria-expanded toggle visual ─────────────────────── */
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-label { display: none; } /* icon alone reads clearly as "close" once open; the text label would be redundant/confusing here */

/* ── Review stars with structured markup support ─────────── */
.review-stars { color: var(--gold); letter-spacing: .1em; }

/* ── Lazy load fade-in ────────────────────────────────────── */
img[loading="lazy"] { opacity: 0; transition: opacity .4s ease; }
img[loading="lazy"].loaded { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   SEO & PROFESSIONALISM IMPROVEMENTS — v2
   ═══════════════════════════════════════════════════════════════ */

/* ── Trust Bar ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(26,122,110,.08);
  padding: .9rem 2rem;
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 500; color: var(--text-light);
  white-space: nowrap;
}
.trust-item .stars { color: var(--gold); font-size: .9rem; }
.trust-item strong { color: var(--text); }
.trust-divider { width: 1px; height: 18px; background: rgba(0,0,0,.1); }

/* ── Mobile floating Book Now bar ───────────────────────────── */
.mobile-book-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 8999;
  background: var(--teal-dark);
  padding: .9rem 1.2rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.18);
}
.mobile-book-bar-inner {
  display: flex; gap: .7rem; align-items: center; max-width: 500px; margin: 0 auto;
}
.mobile-book-bar .price-hint {
  flex: 1; color: rgba(255,255,255,.85); font-size: .78rem; line-height: 1.3;
}
.mobile-book-bar .price-hint strong { display: block; color: var(--white); font-size: .95rem; }
.mobile-book-bar .btn-book-mobile {
  background: var(--gold); color: var(--text);
  padding: .7rem 1.4rem; border-radius: 50px;
  font-weight: 700; font-size: .88rem; white-space: nowrap;
  text-decoration: none; flex-shrink: 0;
}
.mobile-book-bar .btn-wa-mobile {
  background: #25d366; color: #fff;
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .mobile-book-bar { display: block; }
  /* push WhatsApp float above mobile bar */
  .whatsapp-float { bottom: 5.5rem; }
  /* extra padding at bottom so content isn't hidden behind bar */
  body { padding-bottom: 70px; }
}

/* ── Urgency / season strip ─────────────────────────────────── */
.season-strip {
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  color: var(--white); text-align: center;
  padding: .55rem 1rem; font-size: .82rem; font-weight: 500;
  letter-spacing: .03em;
}
.season-strip a { color: var(--gold-light); text-decoration: underline; }

/* ── Star rating display block ──────────────────────────────── */
.rating-block {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--cream); border-radius: 50px;
  padding: .4rem 1rem; margin-bottom: 1.2rem;
}
.rating-block .stars { color: var(--gold); font-size: 1.05rem; letter-spacing: .06em; }
.rating-block .score { font-family: 'Playfair Display',serif; font-weight: 700; font-size: 1rem; }
.rating-block .count { font-size: .78rem; color: var(--text-light); }
/* Hero variant — white text */
.rating-block.hero-rating {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  margin-bottom: 1rem;
}
.rating-block.hero-rating .stars { color: var(--gold-light); }
.rating-block.hero-rating .score,
.rating-block.hero-rating .count { color: rgba(255,255,255,.9); }

/* ── Blog / articles section ────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: var(--transition); border: 1px solid rgba(26,122,110,.06);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform .6s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-img-wrap { overflow: hidden; }
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); background: rgba(26,122,110,.08);
  padding: .25rem .7rem; border-radius: 50px; margin-bottom: .7rem;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: .5rem; line-height: 1.35; }
.blog-card h3 a { color: var(--text); transition: var(--transition); }
.blog-card h3 a:hover { color: var(--teal); }
.blog-card p { font-size: .88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.blog-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: var(--text-light);
  padding-top: .8rem; border-top: 1px solid var(--cream-dark);
}
.blog-card-footer a { color: var(--teal); font-weight: 600; }

/* ── Enhanced gallery lightbox ──────────────────────────────── */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.94); z-index: 99999;
  display: none; align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
.lb-img-wrap { position: relative; max-width: 90vw; max-height: 85vh; }
#lb-img {
  max-width: 90vw; max-height: 80vh;
  border-radius: 8px; display: block;
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
  user-select: none;
}
.lb-caption {
  color: rgba(255,255,255,.85); text-align: center;
  font-size: .88rem; margin-top: .8rem; letter-spacing: .03em;
}
.lb-counter {
  color: rgba(255,255,255,.45); text-align: center;
  font-size: .75rem; margin-top: .3rem;
}
.lb-btn {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 100000;
  backdrop-filter: blur(4px);
}
.lb-btn:hover { background: rgba(255,255,255,.25); }
#lb-prev { left: 1rem; }
#lb-next { right: 1rem; }
#lb-close {
  position: fixed; top: 1rem; right: 1rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 100000;
}
#lb-close:hover { background: rgba(255,255,255,.3); }

/* ── Page-level og:image blocks (hidden, for meta only) ─────── */
/* ── Inline keyword phrases ─────────────────────────────────── */
.keyword-highlight { color: var(--teal); font-weight: 600; }

/* ── 'How to get here' map embed placeholder ────────────────── */
.map-embed-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 16/7;
  background: var(--cream-dark);
}
.map-embed-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ── Email notification badge in admin ──────────────────────── */
.notif-dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: #ef4444; margin-left: 4px; vertical-align: middle;
}

/* ── Scroll-triggered animations (intersection observer) ────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }


/* ═══════════════════════════════════════════════════
   BUG FIXES & IMPROVEMENTS v3
   ═══════════════════════════════════════════════════ */

/* Fix 5: WhatsApp float hidden on mobile (book bar already has WA) */
@media (max-width: 768px) {
  .whatsapp-float { display: none; }
}

/* Fix 11: Proper tab panel accessibility + focus states */
.pricing-tabs[role="tablist"] { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.pricing-tab[role="tab"] { cursor: pointer; }
.pricing-tab[role="tab"][aria-selected="true"] {
  background: var(--teal); color: var(--white);
  border-color: var(--teal); box-shadow: 0 4px 12px rgba(26,122,110,0.3);
}
.pricing-tab:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Fix: prefers-reduced-motion — respect user accessibility preference */
@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;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Fix: focus-visible outlines for keyboard navigation */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}
a:focus:not(:focus-visible) { outline: none; }

/* Fix: aria-required asterisk accessible on all backgrounds */
.form-label .required {
  color: #c0392b;
  font-weight: 700;
  margin-left: 2px;
}

/* Fix: print styles — hide non-essential elements when printing */
@media print {
  .navbar, .whatsapp-float, .mobile-book-bar, .season-strip,
  .trust-bar, .hero-scroll, .cta-banner, footer { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; }
  .hero { min-height: auto; padding: 2rem; }
}

/* Fix: navbar transition uses transform for GPU compositing */
.navbar { will-change: transform; }

/* Blog index page */
.blog-index-header {
  background: linear-gradient(135deg, var(--teal-dark), #0d3d35);
  color: var(--white); padding: 7rem 2rem 4rem;
  text-align: center; margin-top: var(--header-offset);
}
.blog-index-header h1 { color: var(--white); margin-bottom: .8rem; }
.blog-index-header p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }

/* Admin CSRF token inputs */
.admin-csrf-token { display: none; }

/* ═══════════════════════════════════════════════════════════════
   NEW FEATURES CSS — v4
   ═══════════════════════════════════════════════════════════════ */

/* ── Cookie Consent Banner ─────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9500; /* above mobile-book-bar(8999) below lightbox(9999) */
  background: #0e2620; color: rgba(255,255,255,.9);
  padding: 1rem 1.5rem;
  box-shadow: 0 -4px 30px rgba(0,0,0,.3);
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { flex: 1; min-width: 220px; font-size: .85rem; line-height: 1.55; margin: 0; }
.cookie-banner p a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner-btns { display: flex; gap: .6rem; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--teal); color: #fff; border: none;
  padding: .55rem 1.3rem; border-radius: 50px;
  font-size: .85rem; font-weight: 600; cursor: pointer;
  transition: background .2s;
}
.btn-cookie-accept:hover { background: var(--teal-dark); }
.btn-cookie-decline {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.2);
  padding: .55rem 1.1rem; border-radius: 50px;
  font-size: .85rem; cursor: pointer; transition: background .2s;
}
.btn-cookie-decline:hover { background: rgba(255,255,255,.18); }

/* ── Group Pricing Calculator ──────────────────────────────── */
.pricing-calc {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow);
  border: 2px solid rgba(26,122,110,.1);
  margin-top: 2rem; max-width: 540px; margin-left: auto; margin-right: auto;
}
.pricing-calc h3 { color: var(--teal); margin-bottom: 1.2rem; text-align: center; font-size: 1.1rem; }
.calc-slider-wrap { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.calc-slider {
  -webkit-appearance: none; appearance: none;
  flex: 1; height: 6px; border-radius: 3px;
  background: linear-gradient(to right, var(--teal) var(--pct,0%), var(--cream-dark) var(--pct,0%));
  outline: none; cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal); border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(26,122,110,.35); cursor: pointer;
}
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal); border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(26,122,110,.35); cursor: pointer;
}
.calc-count {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700;
  flex-shrink: 0;
}
.calc-result {
  background: var(--cream); border-radius: var(--radius);
  padding: 1.2rem; text-align: center;
}
.calc-result .best-label {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--teal); margin-bottom: .5rem;
}
.calc-result .price-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .9rem; padding: .3rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.calc-result .price-row:last-child { border: none; }
.calc-result .highlight {
  background: var(--teal); color: #fff; border-radius: 8px;
  padding: .8rem 1.2rem; margin-top: .5rem;
  font-weight: 700;
}

/* ── Discount Code field on booking form ───────────────────── */
.promo-row { position: relative; }
.promo-row .promo-btn {
  position: absolute; right: .5rem; top: 50%; transform: translateY(-50%);
  background: var(--teal); color: #fff; border: none;
  padding: .35rem .9rem; border-radius: 6px;
  font-size: .8rem; font-weight: 600; cursor: pointer;
}
.promo-success { color: #16a34a; font-size: .82rem; margin-top: .3rem; font-weight: 600; }
.promo-error   { color: #dc2626; font-size: .82rem; margin-top: .3rem; }
.promo-discount {
  background: #d1fae5; border: 1px solid #6ee7b7;
  border-radius: 8px; padding: .6rem 1rem;
  font-size: .85rem; color: #065f46; margin-top: .5rem;
  display: flex; justify-content: space-between;
}

/* ── Admin Booking Calendar ────────────────────────────────── */
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px; border-radius: var(--radius); overflow: hidden;
}
.cal-day-hdr {
  background: var(--teal-dark); color: rgba(255,255,255,.8);
  text-align: center; padding: .5rem;
  font-size: .72rem; font-weight: 600; text-transform: uppercase;
}
.cal-day {
  background: var(--white); min-height: 72px; padding: .4rem .5rem;
  position: relative; border: 1px solid rgba(0,0,0,.05);
  vertical-align: top; cursor: default;
}
.cal-day.other-month { background: #f9f9f9; }
.cal-day.today { border: 2px solid var(--teal) !important; }
.cal-day .day-num {
  font-size: .78rem; font-weight: 700; color: var(--text-light);
  margin-bottom: .2rem;
}
.cal-day.today .day-num { color: var(--teal); }
.cal-event {
  display: block; background: var(--teal); color: #fff;
  font-size: .65rem; border-radius: 3px; padding: .15rem .3rem;
  margin-bottom: 2px; white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; cursor: pointer;
}
.cal-event.pending  { background: #f59e0b; }
.cal-event.confirmed{ background: var(--teal); }
.cal-event.private  { background: #7c3aed; }
.cal-nav { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.cal-nav h3 { flex: 1; text-align: center; font-size: 1.1rem; }
.cal-nav button {
  background: var(--cream); border: none; padding: .5rem 1rem;
  border-radius: 8px; cursor: pointer; font-weight: 600; font-size: .9rem;
}
.cal-nav button:hover { background: var(--teal); color: #fff; }

/* ── Daily Manifest Print Styles ───────────────────────────── */
.manifest-wrap { max-width: 800px; margin: 0 auto; }
.manifest-date-hdr {
  background: var(--teal-dark); color: #fff;
  padding: 1rem 1.5rem; border-radius: var(--radius) var(--radius) 0 0;
  display: flex; justify-content: space-between; align-items: center;
}
.manifest-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.manifest-table th {
  background: var(--teal); color: #fff;
  padding: .6rem .9rem; text-align: left; font-size: .75rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
}
.manifest-table td { padding: .6rem .9rem; border-bottom: 1px solid rgba(0,0,0,.05); }
.manifest-table tr:hover td { background: rgba(26,122,110,.04); }
.manifest-departure-group {
  background: var(--cream); padding: .5rem .9rem;
  font-weight: 700; color: var(--teal); font-size: .82rem;
  border-left: 4px solid var(--teal);
}
@media print {
  .admin-sidebar, .admin-topbar, .no-print { display: none !important; }
  .admin-main { margin-left: 0 !important; }
  .manifest-wrap { max-width: 100%; }
  .manifest-table { font-size: 11pt; }
  body { background: white; }
}

/* ── Language Selector ─────────────────────────────────────── */
.lang-selector {
  display: flex; align-items: center; gap: .4rem;
  margin-left: .5rem;
}
.lang-btn {
  background: none; border: 1.5px solid rgba(26,122,110,.2);
  border-radius: 6px; padding: .2rem .5rem;
  font-size: .75rem; font-weight: 600; cursor: pointer;
  color: var(--text-light); transition: var(--transition);
  line-height: 1.4;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--teal); color: #fff; border-color: var(--teal);
}

/* ── Review Submission Form ────────────────────────────────── */
.review-form-wrap {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 2rem; max-width: 600px; margin: 0 auto;
}
.star-picker { display: flex; gap: .3rem; margin-bottom: 1rem; flex-direction: row-reverse; justify-content: flex-end; }
.star-picker input { display: none; }
.star-picker label {
  font-size: 2rem; color: var(--cream-dark); cursor: pointer;
  transition: color .15s;
}
.star-picker input:checked ~ label,
.star-picker label:hover,
.star-picker label:hover ~ label { color: var(--gold); }

/* ── Live Chat Badge ───────────────────────────────────────── */
.chat-badge {
  position: fixed; bottom: 5.5rem; left: 1.5rem;
  background: var(--teal-dark); color: #fff;
  padding: .5rem 1rem; border-radius: 50px;
  font-size: .78rem; font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,.2);
  cursor: pointer; z-index: 8000;
  animation: chatPulse 3s ease-in-out infinite;
  display: none; /* shown by JS after 15s */
}
@keyframes chatPulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
@media (max-width: 768px) { .chat-badge { display: none !important; } }


/* ── WordPress Compatibility ─────────────────────────────── */
.admin-bar .navbar { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .navbar { top: 46px; } }
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--text-light); text-align: center; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }
