/* ============================================================
   style.css — Kulapuan Island Resort
   round 5.9.2 — generated 2026-05-10
   Fonts : Cabinet Grotesk + DM Sans
   Accent: Forest Emerald #059669
   ============================================================ */

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --accent:         #059669;
  --accent-dark:    #047857;
  --accent-light:   #a7f3d0;
  --accent-xlight:  #ecfdf5;
  --footer-bg:      #01261a;
  --footer-text:    rgba(255,255,255,0.85);
  --footer-muted:   rgba(255,255,255,0.95);
  --font-head:      'Cabinet Grotesk', sans-serif;
  --font-body:      'DM Sans', system-ui, sans-serif;
  --navbar-h:       80px;
  --text:           #1a1a1a;
  --text-muted:     #555;
  --bg:             #ffffff;
  --bg-alt:         #f5f8f6;
  --border:         #d9e4de;
  --radius:         10px;
  --shadow:         0 2px 12px rgba(0, 0, 0, .08);
  --shadow-md:      0 4px 24px rgba(0, 0, 0, .13);
  --transition:     0.25s ease;
  --container-max:  1200px;
  --section-pad:    84px;
}

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

html {
  scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 24px);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.bg-alt {
  background: var(--bg-alt);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
  margin-bottom: 12px;
}

h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 8px;
}

p {
  margin-bottom: 14px;
}

p:last-child {
  margin-bottom: 0;
}

/* --- Eyebrow --- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* --- Utilities --- */
.text-center {
  text-align: center;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 44px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--navbar-h);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 16px rgba(0, 0, 0, .09);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 16px rgba(0, 0, 0, .09);
}

.navbar-inner {
  display: flex;
  align-items: center;
  height: var(--navbar-h);
  gap: 20px;
}

.navbar-logo {
  flex-shrink: 0;
  text-decoration: none;
}

.logo-navbar {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 11px;
  border-radius: 5px;
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.nav-links a:hover {
  background: var(--accent-xlight);
  color: var(--accent-dark);
  text-decoration: none;
}

.btn-nav-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition);
  text-decoration: none;
}

.btn-nav-cta:hover {
  background: var(--accent-dark);
  text-decoration: none;
  color: #fff;
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: background var(--transition);
}

/* --- Nav Sentinel: zero-height anchor for IntersectionObserver --- */
.nav-sentinel {
  position: absolute;
  top: var(--navbar-h);
  left: 0;
  width: 100%;
  height: 0;
  pointer-events: none;
}

/* ============================================================
   MOBILE MENU — Adil Pattern
   Slide-down panel, light surface, blurred backdrop
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: #fff;
  padding: 20px 24px 32px;
  transform: translateY(-108%);
  transition: transform 0.32s ease;
  box-shadow: var(--shadow-md);
  border-bottom: 2px solid var(--accent-light);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px 0;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.mobile-menu-close:hover {
  color: var(--text);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav-links a {
  display: block;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  padding: 10px 10px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}

.mobile-nav-links a:hover {
  background: var(--accent-xlight);
  color: var(--accent-dark);
  text-decoration: none;
}

.mobile-nav-cta {
  margin-top: 8px;
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 700 !important;
  text-align: center;
  border-radius: 7px;
}

.mobile-nav-cta:hover {
  background: var(--accent-dark) !important;
  color: #fff !important;
}

.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 940;
  background: rgba(0, 0, 0, .42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.menu-backdrop.open {
  display: block;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 30vh;
}

.hero-bg-img,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, .35) 0%,
    rgba(0, 0, 0, .40) 30%,
    rgba(0, 0, 0, .15) 60%,
    rgba(0, 0, 0, .30) 100%
  );
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .28);
}

.hero-tagline {
  color: rgba(255, 255, 255, .88);
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.65;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 7px;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
  text-align: center;
}

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

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 7px;
  border: 2px solid rgba(255, 255, 255, .72);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
  text-align: center;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .16);
  border-color: #fff;
  text-decoration: none;
  color: #fff;
}

.btn-submit {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 24px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 16px;
}

.btn-submit:hover {
  background: var(--accent-dark);
}

.btn-maps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 7px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: background var(--transition);
}

.btn-maps:hover {
  background: var(--accent-dark);
  color: #fff;
  text-decoration: none;
}

.btn-view-details {
  background: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-align: center;
}

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

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text .section-eyebrow {
  margin-bottom: 8px;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   ROOMS SECTION
   ============================================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 8px;
}

.room-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.room-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* --- Carousel --- */
.carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e8eeea;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .38);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  transition: background var(--transition);
  z-index: 5;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, .62);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 5;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}

.carousel-dot.active {
  background: #fff;
}

/* --- Room Card Body --- */
.room-card-body {
  padding: 20px 20px 0;
  flex: 1;
}

.room-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  list-style: none;
  margin-bottom: 12px;
}

.room-specs li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.room-specs li i {
  color: var(--accent);
  font-size: 0.9375rem;
}

.room-card-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.room-view-details-row {
  padding: 14px 20px 0;
  display: flex;
  justify-content: center;
}

.room-card-buttons {
  padding: 12px 20px 20px;
  display: flex;
  gap: 10px;
}

.room-card-buttons .btn-room-cta {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.9375rem;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.open {
  display: flex;
}

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

.modal-box {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .25);
}

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

.modal-close:hover {
  color: var(--text);
}

.modal-box h3 {
  margin-bottom: 16px;
}

.modal-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.modal-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text-muted);
}

.modal-features li i {
  color: var(--accent);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.modal-cta {
  margin-top: 20px;
  width: 100%;
}

/* ============================================================
   ACTIVITIES SECTION
   ============================================================ */

/* --- A: Core Activity Cards --- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.activity-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.activity-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.activity-card > img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.activity-card-body {
  padding: 18px 18px 20px;
}

.activity-card-body h3 {
  font-size: 1.1875rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.activity-card-body h3 i {
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.activity-card-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* --- C: On-Site Activities --- */
.onsite-activities {
  background: var(--accent-xlight);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 48px;
}

.onsite-activities h3 {
  color: var(--accent-dark);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.onsite-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  list-style: none;
}

.onsite-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent-dark);
}

.onsite-list li i {
  color: var(--accent);
  font-size: 0.9375rem;
}

/* --- B: Tour Blocks --- */
.tour-blocks {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tour-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}

.tour-block-image {
  overflow: hidden;
  display: flex;
  align-items: center;
}

.tour-block-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.tour-block:hover .tour-block-image img {
  transform: scale(1.04);
}

.tour-block-reverse {
  direction: rtl;
}

.tour-block-reverse .tour-block-content {
  direction: ltr;
}

.tour-block-reverse .tour-block-image {
  direction: ltr;
}

.tour-block-content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tour-eyebrow {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.tour-block-content h3 {
  margin-bottom: 12px;
}

.tour-block-content > p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.highlights li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}

.highlights li::before {
  content: '•';
  position: absolute;
  left: 2px;
  color: var(--accent);
  font-size: 1.1rem;
  top: 0;
}

.sipadan-sites {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.sipadan-sites li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.sipadan-sites li strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.tour-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* --- Activities Intro (below tour blocks) --- */
.activities-intro {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  margin-top: 44px;
}

.activities-intro p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.72;
}

/* ============================================================
   MEALS SECTION
   ============================================================ */
.meals-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

.meals-content h2 {
  margin-bottom: 14px;
}

.meals-content > p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 28px;
}

.meals-breakdown {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.meal-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.meal-item i {
  font-size: 1.4rem;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.meal-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.meal-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.meals-detail {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.meals-detail h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--text);
}

.meals-detail p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.meals-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--navbar-h) + 24px);
}

/* ============================================================
   GETTING THERE SECTION
   ============================================================ */
.getting-there-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.getting-there-content h3 {
  font-size: 1.1rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--text);
}

.getting-there-content h3:first-of-type {
  margin-top: 0;
}

.getting-there-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.flight-routes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0 20px;
}

.flight-routes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.flight-routes li i {
  color: var(--accent);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.transfer-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0 20px;
}

.transfer-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.transfer-details li i {
  color: var(--accent);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Sidebar --- */
.getting-there-sidebar {
  position: sticky;
  top: calc(var(--navbar-h) + 24px);
}

.sidebar-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
}

.sidebar-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
}

.map-embed iframe {
  display: block;
  border: 0;
  width: 100%;
}

.travel-tips-card {
  background: var(--accent-xlight);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.travel-tips-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  margin-bottom: 14px;
  font-size: 1.125rem;
}

.travel-tips-card h4 i {
  color: var(--accent);
}

.travel-tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.travel-tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.travel-tips-list li i {
  color: var(--accent);
  font-size: 0.9375rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* Form Banners */
.form-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-banner-success {
  background: var(--accent-xlight);
  color: var(--accent-dark);
  border: 1px solid var(--accent-light);
}

.form-banner-error {
  background: #fff1f1;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Form Rows */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.req {
  color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, .13);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #dc2626;
}

.form-reassurance {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Contact Sidebar */
.contact-sidebar {
  position: sticky;
  top: calc(var(--navbar-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.bg-alt .info-card {
  background: #fff;
}

.info-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 10px;
}

.info-card h4 i {
  color: var(--accent);
  flex-shrink: 0;
}

.info-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

.transfer-times {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.transfer-times li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-left: 12px;
  border-left: 2px solid var(--accent-light);
  line-height: 1.5;
}

.info-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 8px;
}

.quick-facts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.quick-facts-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.quick-facts-list li i {
  color: var(--accent);
  font-size: 0.9375rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.quick-facts-list li span {
  line-height: 1.5;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-stars i {
  color: #f59e0b;
  font-size: 0.95rem;
}

.review-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  flex: 1;
}

.review-author {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.review-country {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
}

.footer-name {
  font-family: var(--font-head);
  font-size: 1.4375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.9375rem;
  color: var(--footer-muted);
  line-height: 1.65;
  max-width: 340px;
  margin-bottom: 16px;
}

.footer-location {
  font-size: 0.9375rem;
  color: var(--footer-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.footer-location i {
  color: var(--accent-light);
  flex-shrink: 0;
}

.footer-col-heading {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: var(--footer-muted);
  transition: color var(--transition);
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-enquiry-link {
  font-size: 0.9375rem;
  color: var(--accent-light);
  transition: color var(--transition);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-enquiry-link:hover {
  color: #fff;
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: var(--footer-muted);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 18px 24px;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.9375rem;
  color: var(--footer-muted);
  margin: 0;
}
.footer-flags {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ff {
  display: block;
  line-height: 0;
  opacity: 0.45;
  transition: opacity 0.2s ease;
}
.ff:hover { opacity: 0.75; }
.ff-active { opacity: 1 !important; }
.ff svg { display: block; }

/* ============================================================
   RESPONSIVE — Large Tablet (max 1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .meals-image img {
    height: 380px;
    position: static;
  }
}

/* ============================================================
   RESPONSIVE — Tablet (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .getting-there-grid {
    grid-template-columns: 1fr;
  }

  .getting-there-sidebar {
    position: static;
  }

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

  .contact-sidebar {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .tour-block-content {
    padding: 28px 28px;
  }
}

/* ============================================================
   RESPONSIVE — Mobile (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
    --navbar-h: 68px;
  }

  /* --- Navbar: hide desktop links, show hamburger --- */
  .nav-links {
    display: none;
  }

  .btn-nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* --- Hero --- */
  .hero {
    min-height: 100svh;
    align-items: flex-start;
    padding-top: 22vh;
    padding-bottom: 0;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* --- About --- */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image img {
    height: 280px;
  }

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

  /* --- Activities --- */
  .activities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .tour-block {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .tour-block-reverse {
    direction: ltr;
  }

  .tour-block-image img {
    height: auto;
    max-height: 320px;
    width: 100%;
    object-fit: cover;
  }

  .tour-block-content {
    padding: 24px 22px;
  }

  /* --- Meals --- */
  .meals-grid {
    grid-template-columns: 1fr;
  }

  .meals-image img {
    height: 280px;
    position: static;
  }

  /* --- Getting There --- */
  .getting-there-grid {
    grid-template-columns: 1fr;
  }

  .getting-there-sidebar {
    position: static;
  }

  /* --- Contact --- */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    position: static;
  }

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

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

  /* --- Footer --- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1;
  }

  /* --- Modal --- */
  .modal-box {
    padding: 28px 20px;
    margin: 12px;
  }
}

/* ============================================================
   RESPONSIVE — Small Mobile (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .activities-grid {
    grid-template-columns: 1fr;
  }

  .onsite-list {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .section-intro {
    font-size: 1.0625rem;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ============================================================
   ACCESSIBILITY UTILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Single room: 2-column layout ── */
.room-layout-single {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
  background: var(--bg-card, #fff);
  border-radius: var(--radius-card, 12px);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.room-carousel-col { min-width: 0; overflow: hidden; }
.room-carousel-col .carousel { aspect-ratio: 4/3; height: auto; }
.room-carousel-col .carousel-slide img { height: 100%; object-fit: cover; }
.room-info-col {
  display: flex; flex-direction: column; justify-content: center;
  padding: 2rem 2.5rem 2rem 0; gap: 1rem;
}
.room-info-col h3 { margin: 0; }
.room-info-col .room-footer { margin-top: 0.5rem; }
.room-info-col .btn-room-cta { width: 100%; }
@media (max-width: 900px) {
  .room-layout-single { grid-template-columns: 1fr; gap: 0; }
  .room-info-col { padding: 1.5rem; }
}

/* ── Hero full-bleed (no container) ── */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: max(100px, 6vw);
  padding: 0 24px;
}
@media (max-width: 640px) {
  body { font-size: 1.0625rem; }

  p, li, dd, dt, span, label, td, th, blockquote,
  .section-intro,
  .section-eyebrow,
  .room-specs li,
  .room-info-col p,
  .tour-body p,
  .tour-body h4,
  .tour-highlights li,
  .activity-body p,
  .onsite-list li,
  .meal-list li,
  .review-body,
  .review-name,
  .review-country,
  .info-card p,
  .info-list li,
  .quick-facts-list li,
  .quick-fact span,
  .quick-fact strong,
  .sidebar-card p,
  .travel-tip p,
  .footer-desc,
  .footer-location,
  .footer-col a,
  .footer-col li,
  .form-group label,
  .form-group input,
  .form-group select,
  .form-group textarea,
  .btn,
  .btn-primary,
  .btn-outline {
    font-size: 1.0625rem !important;
  }

  .section-title, h2 {
    font-size: 1.5rem !important;
  }

  h3,
  .activity-card-body h3,
  .tour-block-content h3,
  .onsite-activities h3,
  .meals-detail h3,
  .getting-there-content h3 {
    font-size: 1.1875rem !important;
  }

  .tour-body h4,
  .sidebar-card h4,
  .info-card h4,
  .travel-tips-card h4 {
    font-size: 1.1875rem !important;
  }

  .footer-brand-name {
    font-size: 1.625rem !important;
  }

  .hero-content { margin-left: 24px !important; margin-right: 24px !important; padding: 0 !important; }
}

/* ── Footer enquiry link: same as nav links ── */
.footer-enquiry-link {
  color: var(--footer-text) !important;
  font-weight: 700 !important;
  font-size: 1.0625rem !important;
}

/* ── Footer description +2px ── */
.footer-desc { font-size: 1.0625rem !important; }

/* ── Footer brand name +2px ── */
.footer-brand-name { font-size: 2.125rem !important; }

/* ── Reviews: no italic ── */
.review-body, .review-text { font-style: normal !important; }

/* ── Tour images: don't force height, use original proportions ── */
.tour-img { height: auto !important; max-height: none !important; }
.tour-img img { height: auto !important; object-fit: contain !important; }

/* ── Tour card titles +2px ── */
.tour-body h4 { font-size: 1.1875rem !important; }

/* ── Form fields: audit font sizes ── */
.form-group input,
.form-group select,
.form-group textarea {
  font-size: 1.0625rem !important;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  font-size: 1.0625rem !important;
  font-family: var(--font-body) !important;
  opacity: 1 !important;
}
.form-group label {
  font-size: 1rem !important;
}

/* ── Contact section reduced padding ── */
#contact { padding-top: 1rem !important; }

/* ── Reviews / Testimonials: less padding above ── */
#reviews { padding-top: 40px; }

/* ── Navbar fixes ── */
.navbar-inner {
  padding-left: max(75px, 5vw) !important;
  padding-right: max(1.5rem, 3vw) !important;
  max-width: none !important;
}
.nav-links a { font-size: 1.0625rem !important; font-weight: 600 !important; }
.nav-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  font-size: 1rem !important; font-weight: 700 !important;
  margin-left: 1.5rem !important;
  padding: 9px 20px;
  border-radius: 6px;
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--accent-dark); color: #fff !important; text-decoration: none; }
.logo-navbar { height: 80px !important; padding: 0 !important; margin: 0 !important; }

/* ── Lang switcher: hide duplicate, desktop pill ── */
.lang-switcher-x13 {
  display: inline-flex; align-items: stretch; border: 1px solid var(--accent);
  border-radius: 99px; overflow: hidden; margin-left: 1rem; flex-shrink: 0;
}
.lang-switcher-x13 .lang-link {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.15rem 0.5rem; font-size: 0.75rem; font-weight: 600;
  line-height: 1; color: var(--text-mid, #666); text-decoration: none;
}
.lang-switcher-x13 .lang-active { background: var(--accent); color: #fff; }
.lang-switcher-x13 .lang-link:not(.lang-active):hover { color: var(--accent); }

.lang-switcher-xm12 {
  display: none; align-items: center; gap: 0.25rem; margin-left: auto; margin-right: 0.15rem;
}
.lang-switcher-xm12 .lang-link {
  font-size: 0.8125rem; font-weight: 600; color: rgba(0,0,0,0.4);
  text-decoration: none; padding: 0.15rem 0.3rem;
}
.lang-switcher-xm12 .lang-active { color: var(--text); }

@media (max-width: 1024px) {
  .navbar-inner { padding-left: 24px !important; padding-right: 24px !important; }
  .lang-switcher-x13 { display: none !important; }
  .lang-switcher-xm12 { display: flex !important; }
  .navbar .nav-cta { display: none !important; }
}

/* ── Mobile menu CTA button ── */
.mobile-nav-links .nav-cta {
  display: block !important;
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 700 !important;
  text-align: center !important;
  border-radius: 7px !important;
  margin-top: 8px !important;
  padding: 12px 10px !important;
}
.mobile-nav-links .nav-cta:hover {
  background: var(--accent-dark) !important;
}
