/* ==========================================================
   Royal Resort Semporna — style.css
   Font: Clash Display + DM Sans | Accent: Burnt Orange #c2410c
   ========================================================== */

/* ==========================================================
   CSS CUSTOM PROPERTIES (tokens)
   ========================================================== */
html { scroll-padding-top: calc(80px + 1rem); }

:root {
  /* Typography */
  --font-heading: 'Cabinet Grotesk', 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Accent color: Burnt Orange */
  --accent:       #c2410c;
  --accent-hover: #9a3412;
  --accent-light: rgba(194, 65, 12, 0.12);

  /* Backgrounds */
  --bg:           #ffffff;
  --bg-alt:       #f8f5f2;

  /* Text */
  --text:         #1a1a1a;
  --text-muted:   #6b7280;

  /* Border */
  --border:       #e5e0da;

  /* Layout */
  --max-w:        1200px;
  --nav-h:        68px;
  --navbar-h:     68px;

  /* Radii */
  --img-radius:   12px;
  --btn-radius:   8px;
  --card-radius:  16px;

  /* Section padding */
  --section-pad-top:    4.5rem;
  --section-pad-bottom: 4.5rem;

  /* Footer (dark, derived from accent) */
  --footer-bg:    #1d0901;
  --footer-text:  rgba(255, 255, 255, 0.65);
  --footer-head:  #ffffff;
  --footer-line:  rgba(255, 255, 255, 0.10);
  --footer-chip:  rgba(255, 255, 255, 0.10);
  --footer-chip-h: rgba(255, 255, 255, 0.18);
}

/* ==========================================================
   RESET & BASE
   ========================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  max-width: 100%;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* ==========================================================
   TYPOGRAPHY
   ========================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-top: 0;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.125rem; }

p {
  font-size: 1.0625rem;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 1rem;
}

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

a:hover {
  text-decoration: none;
}

/* ==========================================================
   LAYOUT UTILITIES
   ========================================================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1200px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.section {
  padding-top: var(--section-pad-top);
  padding-bottom: var(--section-pad-bottom);
}

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

/* ==========================================================
   SECTION HEADING ELEMENTS
   ========================================================== */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 68ch;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

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

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

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

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.btn-submit {
  display: inline-flex;
  width: auto;
  align-self: flex-start;
  padding: 0.875rem 2rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

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

/* ==========================================================
   NAV SENTINEL (visually hidden, used by IntersectionObserver)
   ========================================================== */
.nav-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

/* ==========================================================
   NAVBAR
   ========================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: transparent;
  transition: background 0.25s, box-shadow 0.25s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 900px) {
  .navbar {
    background: transparent;
    box-shadow: none;
  }
  .navbar.scrolled {
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 1px 0 var(--border);
  }
}

.navbar-inner {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 120px;
  padding: 0 1.5rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: #fff;
}

.navbar.scrolled .navbar-links a {
  color: var(--text-muted);
}

.navbar.scrolled .navbar-links a:hover {
  color: var(--accent);
}

.navbar-links .nav-cta a {
  background: var(--accent);
  color: #fff;
  padding: 0.4rem 1.1rem;
  border-radius: var(--btn-radius);
  transition: background 0.2s;
  text-decoration: none;
}

.navbar-links .nav-cta a:hover {
  background: var(--accent-hover);
  color: #fff;
}

/* ==========================================================
   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;
}

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

.navbar:not(.scrolled) .hamburger-bar {
  background: #fff;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
  .navbar-links {
    display: none;
  }
  .navbar-logo img {
    height: 36px;
  }
  .navbar-inner {
    padding: 0 1rem;
  }
}

/* ==========================================================
   MOBILE MENU
   ========================================================== */
.mobile-menu {
  position: fixed;
  top: var(--navbar-h);
  right: 0;
  width: min(320px, 88vw);
  max-height: calc(100vh - var(--navbar-h) - 2rem);
  height: auto;
  overflow-y: auto;
  background: #fff;
  z-index: 950;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-bottom-left-radius: 12px;
  box-shadow: -8px 12px 36px rgba(0, 0, 0, 0.15);
}

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.mobile-menu-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.1rem;
  padding: 0;
  transition: color 0.2s;
}

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

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav-links a {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s;
}

.mobile-nav-links a:hover {
  color: var(--accent);
}

.mobile-nav-links .mobile-cta {
  color: var(--accent);
  font-weight: 700;
}

.menu-backdrop {
  position: fixed;
  inset: var(--navbar-h) 0 0 0;
  background: rgba(17, 24, 39, 0.30);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 940;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

@media (max-width: 768px) {
  .hero-overlay {
    background: rgba(0, 0, 0, 0.45);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-title {
  font-family: var(--font-heading);
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 54ch;
}

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

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

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.about-image img {
  width: 100%;
  border-radius: var(--img-radius);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.highlight-item i {
  color: var(--accent);
  font-size: 1.1rem;
  width: 20px;
  flex-shrink: 0;
}

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

@media (max-width: 1024px) {
  .activity-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .activity-cards-grid {
    grid-template-columns: 1fr;
  }
}

.activity-card {
  background: var(--bg);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.activity-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  transform: translateY(-2px);
}

.activity-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.activity-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.activity-card:hover .activity-card-img img {
  transform: scale(1.04);
}

.activity-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.activity-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
}

.activity-card-icon i {
  color: var(--accent);
  font-size: 1rem;
}

.activity-card-body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
}

.activity-card-body p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================
   ACTIVITIES — full-width intro
   ========================================================== */
.activities-intro {
  max-width: 100%;
}

/* ==========================================================
   ON-SITE ACTIVITIES
   ========================================================== */
.onsite-activities {
  background: var(--bg-alt);
  border-radius: var(--card-radius);
  padding: 2rem 2.5rem;
  margin-bottom: 3.5rem;
}

.onsite-title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.onsite-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.onsite-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
}

.onsite-item i {
  color: var(--accent);
  font-size: 1rem;
  width: 18px;
}

/* ==========================================================
   TOURS SECTION
   ========================================================== */
.tours-section {
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.tours-title {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  margin-bottom: 0.75rem;
}

.tours-intro {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 68ch;
}

.tour-blocks {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.tour-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
}

@media (max-width: 900px) {
  .tour-block {
    grid-template-columns: 1fr;
  }
}

.tour-block-img {
  overflow: hidden;
  height: 100%;
  min-height: 220px;
}

.tour-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
}

.tour-block-body {
  padding: 1.75rem 1.75rem 1.75rem 0;
}

@media (max-width: 900px) {
  .tour-block-body {
    padding: 1.5rem;
  }
}

.tour-block-body h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.tour-block-body p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.tour-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tour-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 1rem;
  color: var(--text);
}

.tour-highlights li i {
  color: var(--accent);
  font-size: 0.875rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ==========================================================
   VILLAS (ROOMS)
   ========================================================== */
.villas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .villas-grid {
    grid-template-columns: 1fr;
  }
}

.villa-card {
  background: var(--bg);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.villa-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.villa-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.875rem;
}

.villa-name {
  font-size: 1.35rem;
  margin: 0;
}

.villa-count {
  font-size: 0.9375rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.villa-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.villa-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.villa-specs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text);
}

.villa-specs li i {
  color: var(--accent);
  width: 16px;
  font-size: 0.875rem;
}

.villa-actions {
  display: flex;
  gap: 0.875rem;
  margin-top: auto;
  flex-wrap: wrap;
}

.villa-view-link {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  padding: 0.6rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.villa-view-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-room-cta {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--btn-radius);
  padding: 0.6rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-room-cta:hover {
  background: var(--accent-hover);
}

/* ==========================================================
   CAROUSEL
   ========================================================== */
.carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f0ede9;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}

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

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: var(--text);
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s;
}

.carousel-btn:hover {
  background: #fff;
}

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

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

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

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

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

/* ==========================================================
   MODALS
   ========================================================== */
.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);
}

.modal-dialog {
  position: relative;
  background: var(--bg);
  border-radius: var(--img-radius);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
}

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

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

.modal-dialog h3 {
  margin-bottom: 0.25rem;
}

.modal-room-count {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.modal-amenities {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.modal-amenities li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--text);
}

.modal-amenities li i {
  color: var(--accent);
  width: 16px;
  font-size: 0.875rem;
}

.modal-room-cta {
  margin-top: 1.25rem;
  width: 100%;
  padding: 0.75rem 1.5rem;
  justify-content: center;
}

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

@media (max-width: 900px) {
  .meals-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.meals-image img {
  width: 100%;
  border-radius: var(--img-radius);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.meals-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.meal-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.meal-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.meal-icon i {
  color: var(--accent);
  font-size: 1rem;
}

.meal-content h4 {
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
}

.meal-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

.meals-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-left: 3px solid var(--accent-light);
  padding-left: 1rem;
  margin-top: 1rem;
}

/* ==========================================================
   GETTING HERE
   ========================================================== */
.getting-here-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .getting-here-grid {
    grid-template-columns: 1fr;
  }
}

.transfer-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: var(--card-radius);
  margin-bottom: 1.25rem;
}

.transfer-card:last-child {
  margin-bottom: 0;
}

.transfer-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.transfer-card-icon i {
  color: var(--accent);
  font-size: 1.15rem;
}

.transfer-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.transfer-card-body p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

.getting-here-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.location-image {
  width: 100%;
  border-radius: var(--img-radius);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.maps-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.875rem 1.25rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

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

.map-embed {
  border-radius: var(--img-radius);
  overflow: hidden;
}

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

.travel-tips {
  background: var(--bg-alt);
  border-radius: var(--card-radius);
  padding: 1.5rem;
}

.travel-tips h4 {
  font-size: 1.0625rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.travel-tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.travel-tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.travel-tips-list li i {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 16px;
}

/* ==========================================================
   CONTACT
   ========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Form layout */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

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

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

@media (max-width: 700px) {
  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, outline 0.1s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: var(--accent);
}

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

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

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.required-asterisk {
  color: var(--accent);
  margin-left: 0.2rem;
  font-weight: 700;
}

/* Form banner */
.form-banner {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: var(--btn-radius);
  font-size: 1rem;
  line-height: 1.5;
}

.form-banner i {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.form-banner strong {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.form-banner p {
  margin: 0;
  font-size: 1rem;
}

.form-banner-success {
  background: #d1fae5;
  border-left: 4px solid #059669;
  color: #065f46;
}

.form-banner-success i {
  color: #059669;
}

.form-banner-error {
  background: #fef2f2;
  border-left: 4px solid #dc2626;
  color: #7f1d1d;
}

.form-banner-error i {
  color: #dc2626;
}

/* Info cards */
.info-card {
  background: var(--bg-alt);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.info-card:last-child {
  margin-bottom: 0;
}

.info-card h4 {
  font-size: 1.0625rem;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.info-card p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.info-card p strong {
  color: var(--text);
}

.info-card-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.contact-info-col {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

@media (max-width: 1024px) {
  .contact-info-col {
    position: static;
  }
}

/* Quick facts */
.quick-facts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

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

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

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

/* ==========================================================
   REVIEWS
   ========================================================== */
.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.reviews-score {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.reviews-stars {
  display: flex;
  gap: 3px;
}

.reviews-stars i {
  color: #f59e0b;
  font-size: 1.1rem;
}

.reviews-count {
  font-size: 1rem;
  color: var(--text-muted);
}

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

@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(--bg);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s;
}

.review-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.review-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.review-name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
}

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

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

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

.review-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 0 1.5rem;
  font-size: 1rem;
}

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

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--footer-head);
  margin-bottom: 0.75rem;
}

.footer-description {
  color: var(--footer-text);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 42rem;
}

.footer-col-heading {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--footer-text);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--footer-head);
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.15s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-enquiry {
  color: var(--footer-head);
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.footer-enquiry:hover {
  opacity: 0.7;
}

.footer-enquiry i {
  font-size: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--footer-chip);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-head);
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--footer-chip-h);
}

.footer-divider {
  border: none;
  height: 1px;
  background: var(--footer-line);
  margin: 1.5rem 0;
}

.footer-copyright {
  text-align: center;
  font-size: 1rem;
  color: var(--footer-text);
  margin: 0;
}

/* ==========================================================
   DEFENSIVE: no underlines
   ========================================================== */
.navbar-logo,
.navbar-links a,
.mobile-menu a,
.btn,
.btn-room-cta,
.btn-submit,
.villa-view-link,
.modal-room-cta,
.maps-btn,
.footer-links a,
.footer-enquiry,
.footer-social a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* ==========================================================
   SECTION — ACTIVITIES (bg-white)
   ========================================================== */
.section-activities {
  background: var(--bg);
}

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

:root {
    --section-pad-top:    3rem;
    --section-pad-bottom: 3rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

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

  .villa-specs {
    grid-template-columns: 1fr;
  }

  .modal-amenities {
    grid-template-columns: 1fr;
  }

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

  .onsite-activities {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========= AUDIT FIXES ========= */
.logo-navbar { max-height: 70px; width: auto; padding: 0 !important; margin: 0 !important; filter: brightness(0) invert(1); transition: filter 0.25s; }
.navbar.scrolled .logo-navbar { filter: none; }
@media (max-width: 900px) { .logo-navbar { filter: none; } }
.navbar-logo { margin-right: auto; }
.navbar-inner { display: flex; align-items: center; height: 80px; width: 100%; padding-left: 120px; padding-right: 120px; gap: 1rem; }
@media (max-width: 900px) { .navbar-inner { padding-left: 1rem; padding-right: 1rem; } }
.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 { opacity: 0.9; }
.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; }
/* Lang switcher */
.lang-switcher-desktop { flex-shrink: 0; display: flex; }
.lang-switcher-x22 { display: flex; align-items: center; margin-left: 18px; background: rgba(255,255,255,0.1); border-radius: 20px; overflow: hidden; }
.lang-switcher-x22 a { font-size: 0.875rem; padding: 0.25rem 0.75rem; color: rgba(255,255,255,0.7); text-decoration: none; }
.lang-switcher-x22 .lang-active { color: #fff; background: rgba(255,255,255,0.15); }
.navbar.scrolled .lang-switcher-x22 { background: rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.12); }
.navbar.scrolled .lang-switcher-x22 a { color: #4b5563; }
.navbar.scrolled .lang-switcher-x22 .lang-active { color: #1a1a1a; background: rgba(0,0,0,0.1); }
.lang-switcher-x13 { display: flex; align-items: center; margin-left: 18px; border: 1px solid rgba(194,65,12,0.5); border-radius: 20px; overflow: hidden; }
.lang-switcher-x13 a { font-size: 0.875rem; padding: 0.25rem 0.75rem; color: rgba(255,255,255,0.7); text-decoration: none; }
.lang-switcher-x13 .lang-active { color: #fff; background: rgba(194,65,12,0.15); }
.lang-switcher-x21 { display: flex; align-items: center; gap: 0.5rem; margin-left: 18px; font-size: 0.9375rem; }
.lang-switcher-x21 a { color: rgba(255,255,255,0.7); text-decoration: none; }
.lang-switcher-x21 .lang-active { color: #fff; }
.lang-switcher-x21 .lang-divider { color: rgba(255,255,255,0.3); }
.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 .lang-switcher-xm12 a { color: #fff !important; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.navbar.scrolled .navbar-right-mobile .lang-switcher-xm12 a { color: #4b5563 !important; text-shadow: none; }
.navbar.scrolled .navbar-right-mobile .lang-switcher-xm12 .lang-active { color: #1a1a1a !important; }
.lang-switcher-x22 a:hover,.lang-switcher-x13 a:hover,.lang-switcher-x21 a:hover { color: #fff; }
.navbar.scrolled .lang-switcher-x22 a:hover,.navbar.scrolled .lang-switcher-x13 a:hover,.navbar.scrolled .lang-switcher-x21 a:hover { color: var(--accent); }
.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; } .lang-switcher-desktop { display: none !important; } }
@media (min-width: 1024px) { .lang-switcher-mobile { display: none !important; } }
.hamburger-bar { background: #fff !important; }
.navbar.scrolled .hamburger-bar { background: #1a1a1a !important; }
/* Footer */
.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; }
/* 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(194,65,12,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 { opacity: 0.9; }
.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) {
  p, li, td, th, span, address, label, input, select, textarea { font-size: 1rem; }
  .footer-copyright { font-size: 0.9375rem; }
  .form-reassurance { font-size: 0.9375rem; }
  .review-country { font-size: 0.9375rem; }
}

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

/* ========= ADDITIONAL FIXES ========= */

/* Form placeholder consistent */
.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #9ca3af !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1rem !important;
  opacity: 1 !important;
}
.booking-form select {
  color: #9ca3af;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}
.booking-form select option { color: var(--text, #1a1a1a); }
.booking-form input,
.booking-form textarea,
.booking-form select {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text, #1a1a1a);
}

/* Travel tips fullwidth 3 columns */
.travel-tips-fullwidth { margin-top: 2rem; }
.travel-tips-fullwidth h4 { margin-bottom: 1.25rem; font-size: 1.1875rem; display: flex; align-items: center; gap: 0.5rem; }
.travel-tips-fullwidth h4 i { color: var(--accent); }
.travel-tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; list-style: none; padding: 0; margin: 0; }
.travel-tip-item { padding: 1rem 1.25rem; background: var(--surface, #f9fafb); border: 1px solid var(--border, #e5e7eb); border-radius: 6px; font-size: 1rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.travel-tip-item i { color: var(--accent); flex-shrink: 0; margin-top: 0.2rem; }
.travel-tip-item p { margin: 0; line-height: 1.55; }
@media (max-width: 768px) { .travel-tips-grid { grid-template-columns: 1fr; } }

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

/* Footer location */
.footer-location { font-size: 1rem; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; }
.footer-location i { color: var(--accent) !important; }

/* Mobile logo fit in navbar */
@media (max-width: 900px) {
  .logo-navbar { max-height: 70px; filter: none; }
  .navbar-inner { padding: 0 1rem !important; }
  
  /* Mobile lang switcher + hamburger colors at top (non-scrolled) */
  .navbar-right-mobile .lang-switcher-xm12 a { color: #fff !important; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
  .navbar.scrolled .navbar-right-mobile .lang-switcher-xm12 a { color: #4b5563 !important; text-shadow: none; }
  .navbar.scrolled .navbar-right-mobile .lang-switcher-xm12 .lang-active { color: #1a1a1a !important; }
  .hamburger-bar { background: #fff !important; }
  .navbar.scrolled .hamburger-bar { background: #1a1a1a !important; }
}

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

/* Logo 80px in both desktop and mobile */
/* Logo sizing handled above */

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





/* Logo padding bottom 2px */
.navbar-logo { padding: 0; margin-right: auto; }

/* Mobile X button on right side of popup menu */
@media (max-width: 900px) {
  .mobile-menu-close,
  .mobile-nav-close,
  #closeMenu {
    position: absolute !important;
    right: 1rem !important;
    left: auto !important;
    top: 1rem !important;
  }
}

/* Activities section padding reduced by 75px */
#activities { padding-top: calc(var(--section-pad, 5rem) - 75px) !important; }
