html { scroll-padding-top: calc(80px + 1rem); }

:root {
  /* Seaweed Village 2 | Skill round 5.9.1 | Clash Display + DM Sans | Deep Rose #9f1239 */
  --font-head: 'Cabinet Grotesk', 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --accent:       #9f1239;
  --accent-dark:  #881337;
  --accent-light: rgba(159, 18, 57, 0.12);

  --footer-bg:      #180309;
  --footer-text:    rgba(255, 255, 255, 0.72);
  --footer-heading: #ffffff;
  --footer-line:    rgba(255, 255, 255, 0.10);

  --bg:      #fafaf9;
  --bg-alt:  #ffffff;
  --surface: #ffffff;
  --dark:    #0a0a0a;
  --mid:     #525252;
  --light:   #737373;
  --border:  #e5e5e5;
  --white:   #ffffff;

  --radius:    12px;
  --radius-sm: 6px;
  --radius-lg: 24px;

  --shadow:    0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.10);

  --ease:    250ms cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:   80px;
  --max-w:   1200px;
  --sec-pad: 80px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--dark);
  background: var(--bg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, iframe {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
p {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}
p:last-child {
  margin-bottom: 0;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin: 0 0 1rem;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  letter-spacing: -0.01em;
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
}
h4 {
  font-size: 1.1875rem;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1200px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.section {
  padding: var(--sec-pad) 0;
}

.section-eyebrow {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
  display: block;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--ease);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}
.btn-maps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background var(--ease);
  text-decoration: none;
}
.btn-maps:hover {
  background: var(--accent-dark);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--ease), backdrop-filter var(--ease), border-color var(--ease);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

/* NOTE: Removed problematic media query that forced white background on mobile */

.navbar-inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 2rem;
  height: 100% !important; /* Fixes the 1/3 cut-off glitch */
}
.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-navbar {
  display: block;
  height: var(--nav-h);
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a {
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color var(--ease);
}
.navbar.scrolled .nav-links a {
  color: var(--mid);
}
@media (max-width: 900px) {
  .nav-links a {
    color: var(--dark);
  }
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  border: 2px solid var(--accent) !important;
  text-decoration: none !important;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
  border-color: var(--accent-dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--ease);
}

/* Fix: Only dark on scroll */
.navbar.scrolled .hamburger span {
  background: var(--dark) !important;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-cta.btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 2000; /* Fix: Increased from 300 to be above navbar */
  transform: translateY(-110%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
  padding: 20px 24px 36px;
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: all;
}
.mobile-menu-close {
  display: block;
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--mid);
  padding: 8px 12px;
  margin-bottom: 8px;
}
.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-links li {
  border-bottom: 1px solid var(--border);
}
.mobile-nav-links li:last-child {
  border-bottom: none;
}
.mobile-nav-links a {
  display: block;
  padding: 18px 8px;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: color var(--ease);
}
.mobile-nav-links a:hover {
  color: var(--accent);
}
.mobile-nav-cta {
  display: block !important;
  margin-top: 16px !important;
  padding: 14px 24px !important;
  background: var(--accent) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  text-align: center !important;
  font-weight: 600 !important;
}
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1999; /* Fix: Increased from 299 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.menu-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
@media (min-width: 769px) {
  .mobile-menu,
  .menu-backdrop {
    display: none !important;
  }
}

/* Nav sentinel — invisible, used by IntersectionObserver only */
.nav-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.22) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: clamp(6rem, 14vh, 10rem) 32px 64px;
  max-width: 740px;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.75rem, 6vw, 5rem);
  margin: 0 0 24px;
  letter-spacing: -0.025em;
}
.hero-tagline {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 56ch;
  margin: 0 0 32px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-content {
    padding-top: clamp(5rem, 16vh, 8rem);
    padding-bottom: 48px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn {
    text-align: center;
    justify-content: center;
  }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--bg-alt);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text p {
  color: var(--mid);
}
.about-image-col {
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.about-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  max-height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
@media (max-width: 900px) {
  .about-img {
    min-height: 260px;
    max-height: 400px;
  }
}

/* ============================================================
   ACTIVITIES SECTION
   ============================================================ */
.activities-section {
  background: var(--bg);
}
.activities-banner {
  width: 100%;
  margin: 24px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.activities-banner img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .activities-banner img {
    height: 200px;
  }
}
.section-intro {
  font-size: 1.0625rem;
  color: var(--mid);
  margin: 24px 0 48px;
  line-height: 1.75;
  max-width: 100%;
  text-align: justify;
}

/* Core activity cards (2×2 grid) */
.activity-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .activity-cards {
    grid-template-columns: 1fr;
  }
}
.activity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.activity-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border);
}
.activity-card-body {
  padding: 20px 24px 24px;
  flex: 1;
}
.activity-card-body h3 {
  font-size: 1.375rem;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.activity-card-body h3 i {
  color: var(--accent);
  font-size: 1.1rem;
}
.activity-card-body p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.7;
  margin: 0;
}

/* On-site activities */
.onsite-activities {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 56px;
}
.onsite-activities h3 {
  font-size: 1.375rem;
  margin: 0 0 18px;
}
.onsite-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.onsite-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--mid);
  font-weight: 500;
}
.onsite-item i {
  color: var(--accent);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

/* Tour blocks (alternating L/R layout) */
.tour-blocks {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.tour-block {
  display: flex;
  gap: 48px;
  align-items: stretch;
  margin: 0;
}
.tour-block.tour-block-reverse {
  flex-direction: row-reverse;
}
.tour-block-image {
  flex: 1;
  min-width: 0;
}
.tour-block-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.tour-block-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tour-eyebrow {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.tour-block-content h3 {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  margin: 0 0 12px;
}
.tour-block-content p {
  font-size: 1.0625rem;
  color: var(--mid);
  line-height: 1.7;
  margin: 0 0 14px;
}
.tour-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tour-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.55;
}
.tour-highlights li i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}
.tour-note {
  font-size: 0.9375rem;
  color: var(--mid);
  background: var(--bg);
  border-left: 3px solid var(--accent-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  margin-top: 14px;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .tour-block,
  .tour-block.tour-block-reverse {
    flex-direction: column;
    gap: 24px;
    margin: 44px 0;
  }
  .tour-block-image img {
    min-height: 240px;
    max-height: 300px;
  }
}

/* ============================================================
   ROOMS SECTION
   ============================================================ */
.rooms-section {
  background: var(--bg-alt);
}
.rooms-intro {
  font-size: 1.0625rem;
  color: var(--mid);
  margin: 0 0 40px;
  line-height: 1.7;
  max-width: 68ch;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.rooms-grid-single {
  grid-template-columns: 1fr;
}
@media (max-width: 1024px) {
  .rooms-grid:not(.rooms-grid-single) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .rooms-grid,
  .rooms-grid-single {
    grid-template-columns: 1fr;
  }
}
.room-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: box-shadow var(--ease), transform var(--ease);
}
.room-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Carousel */
.carousel {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--border);
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--dark);
  opacity: 1;
  transition: background var(--ease);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.carousel-btn:hover {
  background: var(--white);
}
.carousel-btn.prev {
  left: 8px;
}
.carousel-btn.next {
  right: 8px;
}
.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 10;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--ease), transform var(--ease);
}
.carousel-dot.active {
  background: var(--white);
  transform: scale(1.15);
}

/* View Details row */
.room-view-details-row {
  display: flex;
  justify-content: center;
  padding: 14px 16px 0;
}
.villa-view-link,
.btn-view-details {
  display: block;
  width: 100%;
  padding: 9px 16px;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  transition: background var(--ease), color var(--ease);
  text-decoration: none;
}
.villa-view-link:hover,
.btn-view-details:hover {
  background: var(--accent);
  color: var(--white);
}

/* Room card body */
.room-card-body {
  padding: 16px 20px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room-card-body h3 {
  font-size: 1.25rem;
  margin: 0 0 6px;
}
.room-capacity {
  font-size: 0.9375rem;
  color: var(--light);
  margin: 0 0 12px;
}
.room-amenities {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.7;
}
.room-amenities li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 3px 0;
}
.room-amenities li i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
  width: 14px;
}
.room-card-buttons {
  padding: 0 20px 20px;
}
.btn-room-cta {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  transition: background var(--ease);
  text-decoration: none;
}
.btn-room-cta:hover {
  background: var(--accent-dark);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  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);
  cursor: pointer;
}
.modal-dialog {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 560px;
  width: 100%;
  max-height: 80dvh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-dialog h3 {
  margin: 0 0 8px;
  padding-right: 2.5rem;
}
.modal-capacity {
  font-size: 0.9375rem;
  color: var(--light);
  margin: 0 0 14px;
}
.modal-dialog p {
  color: var(--mid);
  margin: 0 0 12px;
}
.modal-amenities {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 1rem;
  color: var(--mid);
}
.modal-amenities li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.modal-amenities li:last-child {
  border-bottom: none;
}
.modal-amenities li i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}
.modal-room-cta {
  display: block;
  width: 100%;
  margin-top: 8px;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--mid);
  padding: 4px 8px;
  transition: color var(--ease);
}
.modal-close:hover {
  color: var(--dark);
}
@media (max-width: 600px) {
  .modal-dialog {
    padding: 1.5rem;
    max-height: 90dvh;
  }
}

/* ============================================================
   MEALS SECTION
   ============================================================ */
.meals-section {
  background: var(--bg);
}
.meals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .meals-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.meals-text h2 {
  margin-bottom: 16px;
}
.meals-text h3 {
  font-size: 1.25rem;
  margin: 28px 0 10px;
}
.meals-text p {
  color: var(--mid);
  margin-bottom: 12px;
}
.meals-breakdown {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 24px;
  padding: 18px 22px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.meal-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.meal-item > i {
  font-size: 1.25rem;
  color: var(--accent);
  margin-top: 2px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.meal-item div {
  flex: 1;
  min-width: 0;
}
.meal-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}
.meal-item span {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.55;
}
.meals-image-col {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.meals-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
@media (max-width: 900px) {
  .meals-image-col {
    position: static;
    order: -1;
  }
  .meals-img {
    height: 260px;
  }
}

/* ============================================================
   GETTING THERE SECTION
   ============================================================ */
.getting-there-section {
  background: var(--bg-alt);
}
.getting-there-grid {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .getting-there-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.getting-there-content h3 {
  font-size: 1.25rem;
  margin: 28px 0 10px;
  color: var(--dark);
}
.getting-there-content h3:first-of-type {
  margin-top: 0;
}
.getting-there-content p {
  color: var(--mid);
}
.flight-routes {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flight-routes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.55;
}
.flight-routes li i {
  color: var(--accent);
  margin-top: 7px;
  flex-shrink: 0;
  font-size: 0.45rem;
}
.getting-there-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
@media (max-width: 900px) {
  .getting-there-sidebar {
    position: static;
  }
}
.sidebar-getting-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.maps-embed {
  border-radius: var(--radius);
  overflow: hidden;
}
.maps-embed iframe {
  display: block;
  width: 100%;
  border-radius: var(--radius);
}

/* Info cards (sidebar cards in Getting There + Contact) */
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.info-card h4 {
  font-size: 1.1875rem;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
}
.info-card h4 i {
  color: var(--accent);
}
.info-card p {
  font-size: 1rem;
  color: var(--mid);
  margin: 0 0 8px;
  line-height: 1.6;
}
.info-card p:last-child {
  margin-bottom: 0;
}
.info-card strong {
  color: var(--dark);
  font-weight: 600;
}
.info-card-note {
  font-size: 0.9375rem !important;
  color: var(--light) !important;
  font-style: italic;
  margin-top: 6px !important;
}

/* Travel Tips list */
.travel-tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.travel-tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--mid);
}
.travel-tips-list li i {
  flex-shrink: 0;
  width: 20px;
  font-size: 1rem;
  color: var(--accent);
  margin-top: 3px;
  text-align: center;
}
.travel-tips-list li span {
  display: block;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-sidebar {
    order: -1;
  }
}
.contact-form-col {
  min-width: 0;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: #166534;
  font-weight: 500;
}
.form-success i {
  font-size: 1.25rem;
  color: #16a34a;
  flex-shrink: 0;
}
.form-error-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  color: #991b1b;
  font-weight: 500;
}
.form-error-banner i {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 580px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
}
.req {
  color: var(--accent);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23737373' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
  padding-right: 36px;
  cursor: pointer;
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.form-group.field-error input,
.form-group.field-error select,
.form-group.field-error textarea {
  border-color: #dc2626;
}
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.btn-submit {
  padding: 13px 32px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--ease);
  white-space: nowrap;
}
.btn-submit:hover {
  background: var(--accent-dark);
}
.form-reassurance {
  font-size: 0.9375rem;
  color: var(--light);
  margin: 0;
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
@media (max-width: 960px) {
  .contact-sidebar {
    position: static;
  }
}
.quick-facts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quick-facts-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.5;
}
.quick-facts-list li i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}
.quick-facts-list li span {
  flex: 1;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
  background: var(--bg-alt);
}
.reviews-intro {
  font-size: 1.0625rem;
  color: var(--mid);
  margin: 0 0 40px;
  max-width: 60ch;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow var(--ease);
}
.review-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
}
.review-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 1rem;
}
.review-body {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.review-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
}
.review-country {
  font-size: 0.9375rem;
  color: var(--light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer-brand-col {
  min-width: 0;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--footer-heading);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.footer-desc {
  font-size: 1rem;
  color: var(--footer-text);
  line-height: 1.65;
  margin: 0 0 12px;
}
.footer-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  color: var(--footer-text);
  margin: 0;
}
.footer-location i {
  color: var(--accent);
  flex-shrink: 0;
}
.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--footer-heading);
  margin: 0 0 16px;
}
.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col a {
  font-size: 1rem;
  color: var(--footer-text);
  text-decoration: none;
  transition: color var(--ease);
}
.footer-links-col a:hover {
  color: var(--footer-heading);
}
.footer-contact-col {
  display: flex;
  flex-direction: column;
}
.footer-enquiry-link {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--footer-heading);
  text-decoration: none;
  margin-bottom: 20px;
  transition: opacity var(--ease);
}
.footer-enquiry-link:hover {
  opacity: 0.8;
}
.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--footer-text);
  font-size: 1rem;
  text-decoration: none;
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}
.social-icons a:hover {
  color: var(--footer-heading);
  border-color: var(--accent);
  background: rgba(159, 18, 57, 0.2);
}
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* ============================================================
   GLOBAL RESPONSIVE REFINEMENTS
   ============================================================ */
@media (max-width: 768px) {
  html { scroll-padding-top: calc(80px + 1rem); }

:root {
    --sec-pad: 56px;
  }
  .navbar-inner {
    padding: 0 1rem;
  }
  .onsite-list {
    gap: 8px 16px;
  }
  .meals-breakdown {
    padding: 14px 16px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  html { scroll-padding-top: calc(80px + 1rem); }

:root {
    --sec-pad: 48px;
  }
  h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .btn {
    font-size: 0.9375rem;
    padding: 11px 18px;
  }
  .tour-highlights li {
    font-size: 0.9375rem;
  }
  .activity-card img {
    aspect-ratio: 4/3;
  }
  .footer-grid {
    gap: 24px;
  }
}

/* ========= ADD-ON FIXES & TWEAKS ========= */
.navbar-logo { margin-right: auto; }
.navbar-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; white-space: nowrap; }
.navbar-links a { color: rgba(255,255,255,0.9); text-decoration: none; font-size: 1.0625rem; font-weight: 600; padding: 0.4rem 0.75rem; }
.navbar.scrolled .navbar-links a { color: #6b7280; }
.navbar-links a:hover { color: rgba(255,255,255,0.7); }
.navbar.scrolled .navbar-links a:hover { color: var(--accent); }
.nav-cta a { background: var(--accent); color: #fff !important; padding: 0.4rem 1.125rem; border-radius: 6px; font-size: 1rem; font-weight: 700; }
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-start; overflow: hidden; margin-top: -80px; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right,rgba(0,0,0,0.55) 0%,rgba(0,0,0,0.35) 55%,rgba(0,0,0,0.15) 100%); z-index: 1; }
@media (max-width: 900px) { .hero-overlay { background: linear-gradient(to bottom,rgba(0,0,0,0.3) 0%,rgba(0,0,0,0.5) 60%,rgba(0,0,0,0.65) 100%); } }
.hero-content { position: relative; z-index: 2; padding-top: 33.33vh; padding-bottom: 4rem; margin-left: max(100px, 6vw); margin-right: 200px; text-align: left; max-width: none; }
@media (max-width: 900px) { .hero-content { margin-left: 1.5rem; margin-right: 1.5rem; } }
.hero-heading { font-size: clamp(2.5rem, 6vw, 4.25rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 1rem; }
@media (min-width: 901px) { .hero-heading { white-space: nowrap; } }
.hero-sub { font-size: clamp(1.0625rem, 1.5vw, 1.25rem); color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 52ch; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-cta { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 2rem; border-radius: 6px; font-size: 1.0625rem; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.hero-cta--primary { background: var(--accent); color: #fff; }
.hero-cta--primary:hover { background: #881337; }
.hero-cta--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.hero-cta--outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.nav-sentinel { height: 80px; opacity: 0; pointer-events: none; }

/* Desktop base switcher rules */
.lang-switcher-desktop { flex-shrink: 0; display: flex; }
@media (max-width: 1023px) { .lang-switcher-desktop { display: none !important; } }

/* Unified Desktop Lang Switcher Pill (Top / Unscrolled) */
.lang-switcher-x13,
.lang-switcher-x21,
.lang-switcher-x22 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-left: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4); /* Thin transparent white border */
  border-radius: 100px; /* Perfect pill shape */
  padding: 0.35rem 1rem;
  background: transparent;
  transition: all var(--ease);
}

.lang-switcher-x13 a,
.lang-switcher-x21 a,
.lang-switcher-x22 a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7); /* Slightly dimmed unselected text */
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.lang-switcher-x13 .lang-active,
.lang-switcher-x21 .lang-active,
.lang-switcher-x22 .lang-active {
  color: #fff;
  font-weight: 600; /* Makes the active language bold */
}

.lang-switcher-x21 .lang-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9375rem;
}

/* Hover Effect for Unselected Language (Top / Unscrolled) */
.lang-switcher-x13 a:not(.lang-active):hover,
.lang-switcher-x21 a:not(.lang-active):hover,
.lang-switcher-x22 a:not(.lang-active):hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5); /* Subtle glow highlight on hover */
}

/* Mobile base switcher rules */
.lang-switcher-xm11, .lang-switcher-xm12, .lang-switcher-xm14 { display: flex; gap: 0.375rem; font-size: 0.6875rem; }
.lang-switcher-xm11 a, .lang-switcher-xm12 a, .lang-switcher-xm14 a { color: rgba(255,255,255,0.6); text-decoration: none; }
.lang-switcher-xm11 .lang-active, .lang-switcher-xm12 .lang-active, .lang-switcher-xm14 .lang-active { color: #fff; }
.navbar-right-mobile { display: none; flex-direction: column; align-items: center; gap: 2px; }
@media (max-width: 1023px) { .navbar-right-mobile { display: flex; } .navbar-links { display: none !important; } }
@media (min-width: 1024px) { .lang-switcher-mobile { display: none !important; } }

/* Footer */
.footer-social { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: inline-flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; font-size: 1rem; }
.footer-social a:hover { background: rgba(255,255,255,0.18); }
.footer-lang { display: flex; gap: 0.75rem; align-items: center; margin-top: 1.25rem; }
.footer-flag { display: inline-flex; align-items: center; opacity: 0.75; transition: opacity 0.2s; text-decoration: none; }
.footer-flag:hover,.footer-flag.lang-active { opacity: 1; }
.flag-svg { display: block; width: 28px; height: 18px; }
.footer-enquiry { color: #fff; font-size: 1.0625rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 1.25rem; }
.footer-enquiry:hover { opacity: 0.7; }
/* Contact */
.contact-card { background: var(--surface, #f9fafb); border: 1px solid var(--border, #e5e7eb); border-radius: 10px; padding: 1.25rem 1.375rem; margin-bottom: 1rem; }
.contact-card h4 { font-size: 1.0625rem; margin: 0 0 0.625rem; display: flex; align-items: center; gap: 0.5rem; }
.contact-card h4 i { color: var(--accent); }
.contact-card p,.contact-card address { font-size: 1rem; color: #6b7280; margin: 0; font-style: normal; line-height: 1.55; }
.quick-facts-sidebar { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.quick-facts-sidebar li { display: flex; align-items: center; gap: 0.625rem; font-size: 1rem; color: #6b7280; }
.quick-facts-sidebar li i { color: var(--accent); width: 1.25rem; text-align: center; flex-shrink: 0; }
.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row--2 { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 1rem; font-weight: 600; }
.form-field input,.form-field select,.form-field textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid #e5e7eb; border-radius: 6px; font-size: 1rem; }
.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(159,18,57,0.12); }
.form-field textarea { resize: vertical; min-height: 110px; }
.btn-submit { display: inline-flex; padding: 0.875rem 2.25rem; background: var(--accent); color: #fff; border: none; border-radius: 6px; font-weight: 600; font-size: 1rem; cursor: pointer; }
.btn-submit:hover { background: #881337; }
.form-reassurance { font-size: 0.9375rem; color: #6b7280; margin: 0.75rem 0 0; }
.form-error { background: #fef2f2; border-left: 4px solid #dc2626; color: #7f1d1d; padding: 1rem 1.25rem; margin-bottom: 1.5rem; border-radius: 6px; }
.form-success { background: #f0fdf4; border-left: 4px solid #16a34a; color: #14532d; padding: 1rem 1.25rem; margin-bottom: 1.5rem; border-radius: 6px; }
.booking-form { display: flex; flex-direction: column; gap: 1.25rem; }
.optional-label { font-size: 0.9375rem; font-weight: 400; color: #6b7280; }
.mobile-cta a { display: block; margin-top: 1.25rem; padding: 0.875rem; background: var(--accent); color: #fff !important; text-align: center; border-radius: 6px; font-weight: 600; text-decoration: none; }

/* Mobile font floor */
@media (max-width: 768px) {
  .villa-specs li,.villa-desc,.room-features li { font-size: 1rem; }
  .tour-block-desc,.tour-block-highlights li,.tour-text p { font-size: 1rem; }
  .onsite-item { font-size: 1rem; }
  .travel-tips-list li { font-size: 1rem; }
  .modal-dialog p,.modal-dialog li { font-size: 1rem; }
  .review-body,.review-name { font-size: 1rem; }
  .section-eyebrow,.section-intro { font-size: 1rem; }
  .optional-label { font-size: 1rem; }
  .activity-card p { font-size: 1rem; }
  .contact-card p,.contact-card address,.quick-facts-sidebar li { font-size: 1rem; }
  .btn,.btn-room-cta { font-size: 1rem; }
  .transfer-step p,.transfer-content p { font-size: 1rem; }
  .meal-desc,.meals-text p { font-size: 1rem; }
  .footer-copyright { font-size: 0.9375rem; }
  .form-reassurance { font-size: 0.9375rem; }
  .review-country { font-size: 0.9375rem; }
}

/* Reduce section padding by 75px */
#villas, #activities, #meals, #getting-here {
  padding-top: calc(var(--section-pad, 5rem) - 75px) !important;
}

/* Sipadan sites card grid */
.sipadan-sites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.site-card {
  padding: 1.25rem;
  background: var(--surface, #f9fafb);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 10px;
}
.site-card strong {
  display: block;
  font-size: 1.0625rem;
  color: var(--text, #1a1a1a);
  margin-bottom: 0.375rem;
}
.site-card p {
  font-size: 1rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 768px) {
  .sipadan-sites-grid { grid-template-columns: 1fr; }
}

/* Tour block grid per v25 */
.tour-block {
  display: grid !important;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
  margin: 0 !important;
}
.tour-block-reverse {
  grid-template-columns: 1.4fr 1fr;
}
.tour-block-image { min-width: 0; overflow: hidden; }
.tour-block-content { min-width: 0; overflow-wrap: break-word; }
@media (max-width: 768px) {
  .tour-block, .tour-block-reverse { grid-template-columns: 1fr; }
}

/* Reduce contact section padding */
#contact {
  padding-top: calc(var(--section-pad, 5rem) - 75px) !important;
}

/* Footer flags less padding below social */
.footer-lang {
  margin-top: 0.75rem !important;
}

/* Tour note card below image */
.tour-note-card {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface, #f9fafb);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.55;
}
.tour-note-card strong { color: var(--text, #1a1a1a); }

/* Paddle boat image original width */
img[src*="paddle-boat"] {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
}

/* Tour highlights fullwidth card grid */
.tour-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
  grid-column: 1 / -1;
}
.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--surface, #f9fafb);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 8px;
}
.highlight-card i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.highlight-card p {
  font-size: 1rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 768px) {
  .tour-highlights-grid { grid-template-columns: 1fr; }
}

/* Form placeholder consistent style */
.booking-form input::placeholder,
.booking-form textarea::placeholder,
.booking-form select {
  color: #9ca3af;
  font-family: var(--font-body);
  font-size: 1rem;
  opacity: 1;
}

/* Paddle boat image 50% desktop */
img[src*="paddle-boat-activity"] {
  width: 50% !important;
  height: auto !important;
}
@media (max-width: 768px) {
  img[src*="paddle-boat-activity"] { width: 100% !important; }
}

/* Paddle boat leisure same size as guest lifestyle */
img[src*="paddle-boat-leisure"] {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
img[src*="guest-lifestyle-photography"] {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* Make tour-block a proper grid that allows children to break out */
.tour-block {
  display: grid !important;
  grid-template-columns: 1fr 1.4fr !important;
}
.tour-block-reverse {
  grid-template-columns: 1.4fr 1fr !important;
}

/* Scuba diving section - reduce excessive padding/margin */
.activity-card + .activity-card {
  margin-top: 0;
}

/* Fix the right-side activity image to match left */
.activity-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Remove excessive space above scuba diving activity card */
.activity-cards-grid {
  gap: 1.5rem;
}

/* Tour highlights grid spacing */
.tour-highlights-grid {
  margin-top: 0;
  margin-bottom: 0;
}

/* Sipadan sites grid spacing */
.sipadan-sites-grid {
  margin-top: 0;
  margin-bottom: 0;
}

/* Constrain tour-blocks to container max-width */
.tour-blocks {
  max-width: var(--max-w, 1200px);
  margin-left: auto;
  margin-right: auto;
}

/* 100px gap above each tour block */
.tour-block {
  margin-top: 100px !important;
}
.tour-block:first-child {
  margin-top: 0 !important;
}

/* Card grids no extra top margin */
.tour-highlights-grid,
.sipadan-sites-grid {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Sipadan addon card full width */
.tour-note-fullwidth {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface, #f9fafb);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--mid, #6b7280);
  line-height: 1.55;
}
.tour-note-fullwidth strong { color: var(--text, #1a1a1a); }

/* Room section - full width 2-column layout for single room */
.room-card {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 0;
  background: var(--bg-alt, #f9fafb);
  border-radius: var(--radius, 10px);
  overflow: hidden;
  border: 1px solid var(--border, #e5e7eb);
}
.room-card .carousel {
  width: 100%;
}
.room-card .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-card .room-info {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.room-card .room-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.room-card .room-actions .btn-room-cta,
.room-card .room-actions .villa-view-link {
  width: 100%;
  text-align: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .room-card { grid-template-columns: 1fr; }
  .room-card .room-info { padding: 1.5rem; }
}

/* Additional mobile font floors */
@media (max-width: 768px) {
  .tour-note-card p, .tour-note-fullwidth p { font-size: 1rem; }
  .tour-eyebrow { font-size: 1rem; }
  .tour-block-content p { font-size: 1rem; }
  .tour-block-content h3 { font-size: 1.125rem; }
  .highlight-card p { font-size: 1rem; }
  .site-card p { font-size: 1rem; }
  .room-capacity { font-size: 1rem; }
}

/* ===== ROOM CARD FULL-WIDTH 2-COLUMN ===== */
.rooms-grid-single .room-card {
  display: grid !important;
  grid-template-columns: 2fr 3fr !important;
  grid-template-rows: 1fr auto;
  gap: 0 !important;
  background: var(--bg-alt, #f9fafb);
  border-radius: var(--radius, 10px);
  overflow: hidden;
  border: 1px solid var(--border, #e5e7eb);
  width: 100%;
}
.rooms-grid-single .room-card .carousel {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
}
.rooms-grid-single .room-card .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rooms-grid-single .room-card .room-view-details-row {
  grid-column: 1;
  grid-row: 2;
  padding: 0.75rem 1rem;
}
.rooms-grid-single .room-card .room-card-body {
  grid-column: 2;
  grid-row: 1;
  padding: 2rem 2.5rem 1rem;
}
.rooms-grid-single .room-card .room-card-buttons {
  grid-column: 2;
  grid-row: 2;
  padding: 0 2.5rem 1rem;
  display: flex;
  align-items: flex-start;
}
.rooms-grid-single .room-card .room-card-buttons .btn-room-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
}
@media (max-width: 900px) {
  .rooms-grid-single .room-card {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
  }
  .rooms-grid-single .room-card .carousel { order: 1 !important; min-height: 250px; }
  .rooms-grid-single .room-card .room-view-details-row { order: 2 !important; padding: 0.75rem 1.5rem; }
  .rooms-grid-single .room-card .room-card-body { order: 3 !important; padding: 1.5rem; }
  .rooms-grid-single .room-card .room-card-buttons { order: 4 !important; padding: 0 1.5rem 1.5rem; }
}

/* ===== MOBILE TOUR BLOCKS SINGLE COLUMN ===== */
@media (max-width: 768px) {
  .tour-block {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    margin-top: 60px !important;
  }
  .tour-block .tour-block-image { order: 1; }
  .tour-block .tour-block-content { order: 2; }
}

/* ===== COMPREHENSIVE MOBILE FONT FLOOR ===== */
@media (max-width: 768px) {
  body { font-size: 1rem; }
  p, li, td, th, span, address, label, input, select, textarea { font-size: 1rem; }
  .tour-block-content p, .tour-block-content h3 { font-size: 1rem; }
  .tour-eyebrow { font-size: 0.9375rem; }
  .room-amenities li { font-size: 1rem; }
  .room-card-body p, .room-card-body h3 { font-size: 1rem; }
  h3 { font-size: 1.125rem; }
  .footer-copyright { font-size: 0.9375rem; }
  .form-reassurance { font-size: 0.9375rem; }
  .review-country { font-size: 0.9375rem; }
}

/* View details button same height as book button */
.rooms-grid-single .room-card .room-view-details-row .villa-view-link,
.rooms-grid-single .room-card .room-card-buttons .btn-room-cta {
  padding: 0.875rem 1.5rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================
   COMPREHENSIVE NAVBAR & LANG SWITCHER FIX
   ========================================= */

/* Desktop Scrolled - Apply to ALL variants (x13, x21, x22) */
.navbar.scrolled .lang-switcher-x13,
.navbar.scrolled .lang-switcher-x21,
.navbar.scrolled .lang-switcher-x22 {
  background: rgba(0,0,0,0.05) !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
  border-radius: 100px !important; /* Creates the nice pill shape */
}

/* Give x21 breathing room (padding) since it originally had none */
.navbar.scrolled .lang-switcher-x21 {
  padding: 0.35rem 1rem !important;
}

.navbar.scrolled .lang-switcher-x13 a,
.navbar.scrolled .lang-switcher-x21 a,
.navbar.scrolled .lang-switcher-x22 a {
  color: #4b5563 !important;
}

.navbar.scrolled .lang-switcher-x13 .lang-active,
.navbar.scrolled .lang-switcher-x21 .lang-active,
.navbar.scrolled .lang-switcher-x22 .lang-active {
  color: #1a1a1a !important;
}

/* Keep the subtle inner highlight for x13/x22 active states, but skip it for x21 to keep it clean */
.navbar.scrolled .lang-switcher-x13 .lang-active,
.navbar.scrolled .lang-switcher-x22 .lang-active {
  background: rgba(0,0,0,0.08) !important;
  border-radius: 20px;
}

.navbar.scrolled .lang-switcher-x21 .lang-divider {
  color: rgba(0,0,0,0.2) !important;
}

/* Mobile Lang Switchers - Apply to ALL variants (xm11, xm12, xm14) */
.navbar-right-mobile .lang-switcher-xm11 a,
.navbar-right-mobile .lang-switcher-xm12 a,
.navbar-right-mobile .lang-switcher-xm14 a {
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.navbar.scrolled .navbar-right-mobile .lang-switcher-xm11 a,
.navbar.scrolled .navbar-right-mobile .lang-switcher-xm12 a,
.navbar.scrolled .navbar-right-mobile .lang-switcher-xm14 a {
  color: #4b5563 !important;
  text-shadow: none !important;
}
.navbar.scrolled .navbar-right-mobile .lang-switcher-xm11 .lang-active,
.navbar.scrolled .navbar-right-mobile .lang-switcher-xm12 .lang-active,
.navbar.scrolled .navbar-right-mobile .lang-switcher-xm14 .lang-active {
  color: #1a1a1a !important;
}

/* Fix mobile logo color inversion */
.logo-navbar { 
  filter: brightness(0) invert(1); 
  transition: filter 0.25s; 
}
.navbar.scrolled .logo-navbar { 
  filter: none !important; 
}
@media (max-width: 900px) { 
  .logo-navbar { filter: brightness(0) invert(1); } 
}