/* =============================================================
   Bihing Angan Resort — style.css
   Font: Cabinet Grotesk + DM Sans  |  Accent: Forest Emerald #059669
   ============================================================= */

/* ── Reset & Root ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:root {
  --accent:        #059669;
  --accent-hover:  #047857;
  --accent-light:  rgba(5,150,105,0.12);
  --footer-bg:     #011710;
  --font-heading:  'Cabinet Grotesk', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --text:          #111827;
  --text-muted:    #6b7280;
  --bg:            #ffffff;
  --bg-alt:        #f9fafb;
  --border:        #e5e7eb;
  --max-w:         1200px;
  --nav-h:         80px;
  --navbar-h:      80px;
  --btn-radius:    6px;
  --img-radius:    8px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--navbar-h) + 1rem);
}
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

/* ── Typography helpers ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.section-subheading {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
}
.section-intro {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 800px;
  margin-bottom: 2.5rem;
}

.section-header { margin-bottom: 2.5rem; }
.section-header .section-subheading { margin-top: 0.5rem; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── Section spacing ────────────────────────────────────────── */
.section { padding-block: 5rem; }
.bg-alt  { background: var(--bg-alt); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  border: 2px solid transparent;
  line-height: 1;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--navbar-h);
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 12px rgba(0,0,0,0.1);
}
.navbar.scrolled .navbar-links a { color: var(--text); }
.navbar.scrolled .navbar-links a:hover { color: var(--accent); }
.navbar.scrolled .nav-cta a { color: #fff !important; }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: max(75px, 5vw);
}

.navbar-logo { display: flex; align-items: center; }
.logo-navbar { height: 52px; width: auto; object-fit: contain; }

/* Logo: white when transparent (top), normal when scrolled */
.navbar:not(.scrolled) .logo-navbar { filter: brightness(0) invert(1); }
.navbar.scrolled .logo-navbar { filter: none; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar-links a {
  font-size: 1.0625rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  transition: color 0.2s;
  white-space: nowrap;
}
.navbar-links a:hover { color: #fff; }
.navbar-links .nav-cta a {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: var(--btn-radius);
}
.navbar-links .nav-cta a:hover { background: var(--accent-hover); }

.nav-sentinel { height: var(--navbar-h); display: block; }

/* §8: Desktop lang switcher */
.lang-switcher-x13 {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 1.25rem;
}
.lang-switcher-x13 a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.lang-switcher-x13 a:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
.lang-switcher-x13 a.active { border-color: rgba(255,255,255,0.7); color: #fff; }

/* Scrolled: greyish, not green */
.navbar.scrolled .lang-switcher-x13 a {
  border-color: rgba(0,0,0,0.18);
  color: #6b7280;
}
.navbar.scrolled .lang-switcher-x13 a:hover {
  border-color: rgba(0,0,0,0.35);
  color: var(--text);
}
.navbar.scrolled .lang-switcher-x13 a.active {
  border-color: rgba(0,0,0,0.3);
  color: var(--text);
  font-weight: 700;
}

/* §8: Mobile menu lang switcher */
.lang-switcher-xm12 {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 0 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}
.lang-switcher-xm12 a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.lang-switcher-xm12 a:hover { border-color: var(--accent); color: var(--accent); }
.lang-switcher-xm12 a.active { border-color: var(--accent); color: var(--accent); font-weight: 700; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 910;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.2s;
}
.navbar.scrolled .hamburger span { background: var(--text); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100%;
  background: #fff;
  z-index: 950;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  transition: right 0.3s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}
.mobile-menu.open { right: 0; }

.mobile-menu-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.mobile-nav-links {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-links li a {
  display: block;
  padding: 0.9rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav-links li a:hover { color: var(--accent); }
.mobile-nav-links .mobile-cta {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--accent);
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  border-radius: var(--btn-radius);
  font-weight: 600;
  font-size: 1.125rem;
  border-bottom: none !important;
}
.mobile-nav-links .mobile-cta:hover { background: var(--accent-hover); }

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 940;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu-backdrop.open { opacity: 1; pointer-events: auto; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--navbar-h));
}

.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.58) 0%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.12) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 7rem;
  padding-bottom: 4rem;
  margin-left: max(100px, 6vw);
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 560px;
  font-weight: 300;
  line-height: 1.65;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.about-text p:last-of-type { margin-bottom: 1.5rem; }

.btn-about-cta { margin-top: 0.5rem; }

.about-image-wrap {
  position: sticky;
  top: calc(var(--navbar-h) + 2rem);
}
.about-image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--img-radius);
}

/* ── ROOMS / CHALETS ────────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.villa-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.villa-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); }

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f3f4f6;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s;
  z-index: 5;
}
.carousel-btn:hover { background: rgba(0,0,0,0.7); }
.carousel-btn.prev { left: 0.6rem; }
.carousel-btn.next { right: 0.6rem; }

.carousel-dots {
  position: absolute;
  bottom: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 5;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: #fff; transform: scale(1.2); }

.villa-view-link {
  display: block;
  width: 100%;
  background: var(--accent-light);
  color: var(--accent);
  border: none;
  border-top: 1px solid rgba(5,150,105,0.15);
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}
.villa-view-link:hover { background: rgba(5,150,105,0.2); }

.villa-info {
  padding: 1.25rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.villa-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.villa-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.villa-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: var(--text-muted);
}
.villa-specs li { display: flex; align-items: center; gap: 0.4rem; }
.villa-specs li i { color: var(--accent); font-size: 0.8rem; }

.btn-room-cta {
  margin-top: auto;
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.btn-room-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* ── MEALS ──────────────────────────────────────────────────── */
.meals-section { background: var(--bg); }

.meals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.meals-image-wrap { position: sticky; top: calc(var(--navbar-h) + 2rem); }
.meals-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--img-radius);
}

.meals-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.meals-periods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.meal-period {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: var(--bg-alt);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}
.meal-icon {
  font-size: 1.15rem;
  color: var(--accent);
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.meal-detail { display: flex; flex-direction: column; gap: 0.25rem; }
.meal-detail strong { font-size: 0.95rem; color: var(--text); }
.meal-detail span { font-size: 0.9rem; color: var(--text-muted); }

.meals-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  background: var(--accent-light);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-left: 3px solid var(--accent);
}
.meals-note i { color: var(--accent); flex-shrink: 0; }

/* ── ACTIVITIES ─────────────────────────────────────────────── */
.activities-section { background: var(--bg-alt); }

/* Activities banner: 66% width, original proportions */
.activities-banner {
  width: 66%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  border-radius: var(--img-radius);
  overflow: hidden;
}
.activities-banner-img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
}

/* Core activity cards grid */
.activity-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.activity-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.activity-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.activity-card > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.activity-card-body {
  padding: 1.1rem 1.2rem;
  flex: 1;
}
.activity-card-body h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.activity-card-body h3 i { color: var(--accent); font-size: 0.9rem; }
.activity-card-body p { font-size: 1rem; color: var(--text-muted); }

/* On-site activities */
.onsite-activities {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}
.onsite-heading {
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
  font-family: var(--font-heading);
}
.onsite-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.onsite-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 24px;
  border: 1px solid rgba(5,150,105,0.2);
}
.onsite-item i { font-size: 0.85rem; }

/* Tour blocks */
.tour-blocks-heading {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.tour-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}
.tour-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.tour-block-reverse { direction: rtl; }
.tour-block-reverse > * { direction: ltr; }

.tour-image-wrap {
  border-radius: var(--img-radius);
  overflow: hidden;
}
/* Tour images: square */
.tour-image-wrap img {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  object-fit: cover;
}
.tour-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.tour-content > p { font-size: 1rem; color: var(--text-muted); margin-bottom: 1rem; }

.tour-highlights { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.tour-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--text-muted);
}
.tour-highlights li i { color: var(--accent); flex-shrink: 0; margin-top: 0.2rem; font-size: 0.8rem; }
.tour-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--accent-light);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--accent);
  margin-top: 0.5rem;
}

/* ── GETTING HERE ────────────────────────────────────────────── */
.getting-here-section { background: var(--bg); }

.getting-here-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.getting-here-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.getting-here-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.getting-here-block h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
}
.getting-here-block h3 i { color: var(--accent); font-size: 0.95rem; }
.getting-here-block p { font-size: 1rem; color: var(--text-muted); margin-bottom: 0.6rem; }

.flight-routes,
.transfer-details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem;
}
.flight-routes li,
.transfer-details li {
  font-size: 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.flight-routes li i,
.transfer-details li i { color: var(--accent); font-size: 0.55rem; flex-shrink: 0; }

/* Sidebar */
.getting-here-sidebar {
  position: sticky;
  top: calc(var(--navbar-h) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-image-wrap {
  border-radius: var(--img-radius);
  overflow: hidden;
}
.sidebar-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.maps-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: var(--btn-radius);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background 0.2s;
  text-align: center;
}
.maps-btn:hover { background: var(--accent-hover); }
.maps-btn i { font-size: 0.85rem; }

.maps-iframe-wrap {
  border-radius: var(--img-radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.maps-iframe-wrap iframe { display: block; }

.travel-tips-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
}
.travel-tips-card h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
}
.travel-tips-card h4 i { color: var(--accent); }
.travel-tips-list { display: flex; flex-direction: column; gap: 0.8rem; }
.travel-tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--text-muted);
}
.travel-tips-list li i { color: var(--accent); flex-shrink: 0; margin-top: 0.15rem; width: 14px; text-align: center; }
.travel-tips-list li span strong { color: var(--text); }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-section { background: var(--bg-alt); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 2rem 2.25rem;
}

/* §30 Form banners */
.form-banner {
  padding: 1rem 1.2rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.form-banner i { flex-shrink: 0; margin-top: 0.1rem; }
.form-banner-success { background: rgba(5,150,105,0.1); color: #065f46; border-left: 4px solid var(--accent); }
.form-banner-success i { color: var(--accent); }
.form-banner-error { background: rgba(220,38,38,0.08); color: #991b1b; border-left: 4px solid #dc2626; }
.form-banner-error i { color: #dc2626; }

.booking-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-dates { }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.required-asterisk { color: #dc2626; }

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(5,150,105,0.12);
}
.form-field textarea { resize: vertical; line-height: 1.6; }
.form-field select { appearance: auto; }
.field-error input,
.field-error select { border-color: #dc2626; }

.form-reassurance {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.form-reassurance i { color: var(--accent); }

.btn-submit {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.875rem;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--navbar-h) + 2rem);
}

.info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
}
.info-card h4 {
  font-size: 1rem;
  font-family: var(--font-heading);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
}
.info-card h4 i { color: var(--accent); font-size: 0.85rem; }
.info-card p { font-size: 1rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.info-card-meta { font-size: 1rem; color: var(--accent); font-weight: 600; }
.info-card-list { display: flex; flex-direction: column; gap: 0.4rem; }
.info-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--text-muted);
}
.info-card-list li i { color: var(--accent); flex-shrink: 0; margin-top: 0.2rem; font-size: 0.8rem; }

.quick-facts-list { display: flex; flex-direction: column; gap: 0.6rem; }
.quick-facts-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--text-muted);
}
.quick-facts-list li i { color: var(--accent); flex-shrink: 0; margin-top: 0.15rem; width: 16px; text-align: center; }

/* ── REVIEWS ─────────────────────────────────────────────────── */
.reviews-section { background: var(--bg); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-stars { display: flex; gap: 3px; }
.review-stars i { color: #f59e0b; font-size: 0.85rem; }
.review-body { font-size: 1rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.review-author {
  margin-top: auto;
  padding-top: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.review-name { font-size: 1rem; font-weight: 600; color: var(--text); flex-shrink: 0; }
.review-country { font-size: 1rem; color: var(--text-muted); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.7);
  padding-block: 3.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.footer-location {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-location i { color: var(--accent); font-size: 0.75rem; }

.footer-links-col h4,
.footer-social-col h4 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.1rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links-col ul a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links-col ul a:hover { color: #fff; }

.footer-enquiry-link {
  display: inline-block;
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
  font-weight: 700;
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}
.footer-enquiry-link:hover { color: #fff; }

.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--accent); color: #fff; }

/* Footer lang flags */
.footer-lang-switcher {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.footer-flag {
  display: inline-flex;
  align-items: center;
  opacity: 0.65;
  border-radius: 3px;
  overflow: hidden;
  transition: opacity 0.2s;
  border: none;
  background: none;
  padding: 0;
}
.footer-flag:hover { opacity: 1; }
.footer-flag-active { opacity: 1; }
.flag-svg { width: 28px !important; height: 18px !important; display: block; }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.25rem; }
.footer-bottom {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ── MODAL ───────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal.open { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  position: relative;
  background: #fff;
  border-radius: 10px;
  max-width: 560px;
  width: 100%;
  padding: 2rem;
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 0.25rem;
}
.modal-close:hover { color: var(--text); }

.modal-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  padding-right: 2rem;
}
.modal-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.modal-specs {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  list-style: none;
}
.modal-specs li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.modal-specs li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid,
  .meals-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-wrap,
  .meals-image-wrap { position: static; }
  .about-image,
  .meals-image { height: 320px; }

  .getting-here-grid { grid-template-columns: 1fr; }
  .getting-here-sidebar { position: static; }

  .activity-cards-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand-col { grid-column: 1 / -1; }

  .tour-block,
  .tour-block-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section { padding-block: 3.5rem; }

  .navbar-links { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 80vh; }
  .hero-content { max-width: 100%; margin-left: 0; }

  .navbar-inner { padding-inline: 1rem 1.25rem; }

  .rooms-grid { grid-template-columns: 1fr; }

  .activity-cards-grid { grid-template-columns: 1fr; }
  .activities-banner { width: 100%; }
  .activities-banner-img { max-height: 200px; }

  .reviews-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  /* ── MOBILE FONT SIZES ─── */
  body { font-size: 1.0625rem; }

  h2, .section-heading { font-size: 1.625rem; }
  h3, .villa-name, .onsite-heading, .tour-blocks-heading { font-size: 1.25rem; }
  h4, .travel-tips-card h4 { font-size: 1.125rem; }
  .info-card h4 { font-size: 1.0625rem; }
  .hero-heading { font-size: clamp(1.75rem, 8vw, 2.5rem); }

  .section-eyebrow { font-size: 1rem; }

  p { font-size: 1.0625rem; }
  .about-text p, .meals-text p, .section-intro, .section-subheading,
  .hero-tagline, .getting-here-block p, .tour-content > p { font-size: 1.0625rem; }

  /* Lists — already 1rem desktop, confirm on mobile */
  li { font-size: 1rem; }
  .flight-routes li, .transfer-details li { font-size: 1rem; }
  .tour-highlights li { font-size: 1rem; }
  .travel-tips-list li { font-size: 1rem; }
  .info-card-list li { font-size: 1rem; }
  .quick-facts-list li { font-size: 1rem; }
  .villa-specs, .villa-specs li { font-size: 1rem; }
  .onsite-item { font-size: 1rem; }

  .villa-desc { font-size: 1rem; }
  .villa-view-link { font-size: 1rem; }
  .activity-card-body p { font-size: 1rem; }
  .review-body { font-size: 1rem; }
  .review-name { font-size: 1rem; }
  .review-country { font-size: 1rem; }
  .meal-detail strong, .meal-detail span { font-size: 1rem; }
  .meals-note { font-size: 1rem; }
  .tour-note { font-size: 1rem; }

  .info-card p { font-size: 1rem; }
  .info-card-meta { font-size: 1rem; }

  .form-field label { font-size: 1rem; }
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 1rem; }
  .form-reassurance { font-size: 1rem; }
  .btn-submit { font-size: 1rem; }

  .footer-brand { font-size: 1.75rem; }
  .footer-desc { font-size: 1rem; }
  .footer-location { font-size: 1rem; }
  .footer-links-col h4,
  .footer-social-col h4 { font-size: 1rem; letter-spacing: 0; }
  .footer-links-col ul a { font-size: 1rem; }
  .footer-enquiry-link { font-size: 1rem; }
  .footer-bottom { font-size: 1rem; color: rgba(255,255,255,0.6); }
}

@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .reviews-grid { grid-template-columns: 1fr; }
}
