/* ==========================================================
   Sea Coral Water village — style.css
   Generated: 2026-04-25 | Skill round 5.9.1
   Font: Cabinet Grotesk + DM Sans | Accent: Deep Teal #0d9488
   ========================================================== */

/* ─────────────────────────────────────────────────────────
   CSS CUSTOM PROPERTIES (design tokens)
───────────────────────────────────────────────────────── */
:root {
  --accent:          #9f1239;
  --accent-dark:     #881337;
  --accent-light:    rgba(159, 18, 57, 0.12);
  --text:            #1c1917;
  --text-muted:      #57534e;
  --text-light:      #a8a29e;
  --bg:              #ffffff;
  --bg-alt:          #fafaf9;
  --bg-card:         #ffffff;
  --border:          #e7e5e4;
  --shadow-sm:       0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:       0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:       0 12px 40px rgba(0,0,0,0.13);
  --radius:          12px;
  --radius-sm:       8px;
  --btn-radius:      8px;
  --navbar-h:        80px;
  --font-heading:    'Cabinet Grotesk', system-ui, sans-serif;
  --font-body:       'DM Sans', sans-serif;
  --footer-bg:       #170208;
  --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);
  --container-max:   1200px;
  --section-pad:     5rem 0;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
}

p {
  color: var(--text);
}

/* ─────────────────────────────────────────────────────────
   CONTAINER
───────────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
}

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

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

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

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

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

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

.btn-nav {
  background: var(--accent);
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  font-size: 0.9375rem;
}

.btn-nav:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

.btn-mobile-cta {
  background: var(--accent);
  color: #ffffff;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
}

.btn-mobile-cta:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

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

.btn-room-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #ffffff;
}

.btn-submit {
  background: var(--accent);
  color: #ffffff;
  border: 2px solid var(--accent);
  border-radius: var(--btn-radius);
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.btn-submit:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #ffffff;
}

/* ─────────────────────────────────────────────────────────
   NO UNWANTED UNDERLINES — each selector listed individually
───────────────────────────────────────────────────────── */
.navbar-logo { text-decoration: none; }
.navbar-links a { text-decoration: none; }
.mobile-menu a { text-decoration: none; }
.btn { text-decoration: none; }
.btn-room-cta { text-decoration: none; }
.btn-submit { text-decoration: none; }
.villa-view-link { text-decoration: none; }
.modal-room-cta { text-decoration: none; }
.maps-btn { text-decoration: none; }
.footer-links a { text-decoration: none; }
.footer-enquiry { text-decoration: none; }
.footer-social a { text-decoration: none; }

a:hover {
  text-decoration: none;
}

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

.navbar.scrolled {
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-h);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1rem;
}

.navbar-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.navbar.scrolled .navbar-logo img {
  filter: none;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.navbar-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.90);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.navbar-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

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

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

/* Nav sentinel — hides the 1px gap that can appear under fixed nav */
.nav-sentinel {
  display: block;
  height: 0;
  pointer-events: none;
  visibility: hidden;
}

/* 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: #ffffff;
  border-radius: 2px;
  transition: background 0.2s;
}

.navbar.scrolled .hamburger-bar {
  background: var(--text);
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .navbar-links {
    display: none;
  }

  .btn-nav {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────
   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: #ffffff;
  z-index: 950;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.4, 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);
}

.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.visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.mobile-nav-links a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

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

/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  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(
    135deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.30) 60%,
    rgba(0, 0, 0, 0.10) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--navbar-h) + 3rem) 1.5rem 4rem;
}

.hero-location {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 700px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

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

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

.about-intro {
  font-size: 1.125rem;
  color: var(--text) !important;
  font-weight: 500;
}

.about-image-wrap {
  position: sticky;
  top: calc(var(--navbar-h) + 2rem);
}

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

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

  .about-image-wrap {
    position: static;
    order: -1;
  }

  .about-img {
    height: 260px;
  }
}

/* ─────────────────────────────────────────────────────────
   ACTIVITIES
───────────────────────────────────────────────────────── */
.activities-intro {
  max-width: 100%;
  width: 100%;
}

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

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

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

.activity-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--accent-light);
  border-radius: 50%;
  margin: 1.5rem auto 0;
  font-size: 1.25rem;
  color: var(--accent);
}

.activity-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 1rem;
}

.activity-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  padding: 1rem 1.25rem 0.5rem;
}

.activity-card-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding: 0 1.25rem 1.5rem;
  line-height: 1.6;
}

/* C: On-site activities */
.onsite-activities {
  background: var(--accent-light);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 3.5rem;
}

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

.onsite-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

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

.onsite-list li i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

/* B: Tours section */
.tours-section {
  margin-top: 0.5rem;
}

.tours-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.tours-intro {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 720px;
}

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

.tour-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.tour-block-no-img {
  grid-template-columns: 1fr;
}

.tour-block-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.tour-block-body {
  padding: 1.5rem;
}

.tour-block-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tour-block-title i {
  color: var(--accent);
  font-size: 1rem;
}

.tour-block-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

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

  .tour-block-img {
    height: 220px;
    min-height: unset;
  }
}

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

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

.villa-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.villa-card:hover {
  box-shadow: var(--shadow-md);
}

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

.villa-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--text);
}

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

.villa-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.25rem;
  flex: 1;
}

.villa-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  padding: 0.3rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.villa-features li:last-child {
  border-bottom: none;
}

.villa-features li i {
  color: var(--accent);
  font-size: 0.875rem;
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
}

.villa-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.villa-view-link {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 0.6rem 1.25rem;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.villa-view-link:hover {
  background: var(--accent);
  color: #ffffff;
}

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

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

/* ─────────────────────────────────────────────────────────
   CAROUSEL
───────────────────────────────────────────────────────── */
.carousel {
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: var(--radius) var(--radius) 0 0;
  aspect-ratio: 4 / 3;
}

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

.carousel-slide {
  min-width: 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%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
  background: var(--accent);
  color: #ffffff;
}

.carousel-btn.prev {
  left: 0.625rem;
}

.carousel-btn.next {
  right: 0.625rem;
}

.carousel-dots {
  position: absolute;
  bottom: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  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 0.2s;
  flex-shrink: 0;
}

.carousel-dot.active,
.carousel-dot:hover {
  background: #ffffff;
}

/* ─────────────────────────────────────────────────────────
   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);
  cursor: pointer;
}

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

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

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

.modal-room-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-right: 2rem;
}

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

.modal-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.modal-features-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.4rem 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.modal-features-list li:last-child {
  border-bottom: none;
}

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

.modal-room-cta {
  display: block;
  text-align: center;
  width: auto;
  margin-top: 0.5rem;
}

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

.meals-image-wrap img.meals-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.meals-text p.meals-intro {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

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

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

.meal-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  margin-top: 0.125rem;
}

.meal-detail strong {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

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

.meals-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  border-left: 3px solid var(--accent);
}

.meals-note i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

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

  .meals-image-wrap {
    order: -1;
  }

  .meals-image-wrap img.meals-img {
    height: 260px;
  }
}

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

.transfer-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.transfer-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.125rem;
  margin-top: 0.125rem;
}

.step-text h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--text);
}

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

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

.location-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
}

.maps-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--btn-radius);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background 0.2s;
  text-decoration: none;
  justify-content: center;
}

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

.maps-btn i {
  font-size: 1rem;
}

.map-embed {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

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

.travel-tips {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  border: 1px solid var(--border);
}

.travel-tips h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
}

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

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

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

.travel-tips-list li i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 1rem;
  text-align: center;
}

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

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

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

/* Form */
.contact-form-wrap {
  display: flex;
  flex-direction: column;
}

.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;
}

.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;
}

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

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

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

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 3px solid var(--accent-light);
  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: 120px;
  line-height: 1.6;
}

.required-asterisk {
  color: var(--accent);
  margin-left: 0.125rem;
}

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

.info-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

.info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
}

.info-card h4 i {
  color: var(--accent);
  font-size: 0.9375rem;
}

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

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

.quick-facts-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.quick-facts-list li i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 1rem;
  text-align: center;
}

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

  .contact-info-col {
    position: static;
    order: -1;
  }

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

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.875rem;
  color: #f59e0b;
  font-size: 0.9375rem;
}

.review-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
  font-style: normal;
}

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

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

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

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

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 0 2rem;
}

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

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

.footer-description {
  font-size: 0.9375rem;
  color: var(--footer-text);
  line-height: 1.6;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.footer-links a:hover {
  color: var(--footer-head);
}

.footer-enquiry {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--footer-head);
  margin-bottom: 1.25rem;
  transition: gap 0.2s, color 0.2s;
  text-decoration: none;
}

.footer-enquiry:hover {
  gap: 0.75rem;
  color: #ffffff;
}

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

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

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

.footer-divider {
  border: none;
  border-top: 1px solid var(--footer-line);
  margin-bottom: 1.5rem;
}

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

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

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

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

/* ─────────────────────────────────────────────────────────
   SCROLLED NAVBAR STATE (IntersectionObserver via script.js)
───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .navbar {
    background: rgba(0, 0, 0, 0.6);
  }

  .navbar.scrolled {
    background: var(--bg);
  }
}

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

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

.section-rooms {
  background: var(--bg);
}

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

.section-getting-here {
  background: var(--bg);
}

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

.section-reviews {
  background: var(--bg);
}

/* ─────────────────────────────────────────────────────────
   MOBILE GLOBAL SAFEGUARDS
───────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  body {
    font-size: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-content {
    padding-top: calc(var(--navbar-h) + 2rem);
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-info-col {
    order: unset;
  }
}

/* Typography floor — nothing below 0.9375rem (15px) */
.review-country,
.review-author,
.activity-card-text,
.tour-block-body p,
.villa-desc,
.villa-features li,
.modal-room-desc,
.modal-features-list li,
.form-group label,
.info-card p,
.quick-facts-list li,
.travel-tips-list li,
.footer-links a,
.footer-description {
  font-size: 0.9375rem;
}

/* Language Switcher */
.x13-lang{display:flex;align-items:center;gap:0;margin-left:18px;background:rgba(255,255,255,.12);border-radius:999px;padding:.15rem;border:1px solid rgba(13,148,136,.5);flex-shrink:0}.x13-t{display:flex;align-items:center;justify-content:center;padding:.2rem .55rem;font-size:.875rem;font-weight:700;color:rgba(255,255,255,.7);text-decoration:none;border-radius:999px;transition:color .2s,background .2s;line-height:1}.x13-t:hover{color:#fff}.x13-t.x13-active{color:#fff;background:rgba(255,255,255,.22)}.navbar.scrolled .x13-lang{background:var(--bg-alt);border-color:rgba(13,148,136,.3)}.navbar.scrolled .x13-t{color:var(--text-muted)}.navbar.scrolled .x13-t:hover{color:var(--accent)}.navbar.scrolled .x13-t.x13-active{color:var(--text);background:rgba(13,148,136,.08)}@media(max-width:1023px){.x13-lang{display:none}}
.x21-lang{display:flex;align-items:center;gap:.25rem;margin-left:18px;flex-shrink:0}.x21-t{font-size:.9375rem;font-weight:700;text-decoration:none;color:rgba(255,255,255,.45);transition:color .2s;line-height:1}.x21-t:hover{color:rgba(255,255,255,.85)}.x21-t.x21-active{color:#fff}.x21-div{width:1px;height:12px;background:rgba(255,255,255,.3)}.navbar.scrolled .x21-t{color:var(--text-muted)}.navbar.scrolled .x21-t:hover{color:var(--accent)}.navbar.scrolled .x21-t.x21-active{color:var(--text)}.navbar.scrolled .x21-div{background:var(--border)}@media(max-width:1023px){.x21-lang{display:none}}
.x22-lang{display:flex;align-items:center;gap:.1rem;margin-left:18px;background:rgba(255,255,255,.1);border-radius:999px;padding:.15rem .25rem;flex-shrink:0}.x22-t{display:flex;align-items:center;justify-content:center;padding:.2rem .5rem;font-size:.875rem;font-weight:700;color:rgba(255,255,255,.45);text-decoration:none;border-radius:999px;transition:color .2s,background .2s;line-height:1}.x22-t:hover{color:rgba(255,255,255,.85)}.x22-t.x22-active{color:#fff;background:rgba(255,255,255,.2)}.navbar.scrolled .x22-lang{background:var(--bg-alt)}.navbar.scrolled .x22-t{color:var(--text-muted)}.navbar.scrolled .x22-t:hover{color:var(--accent)}.navbar.scrolled .x22-t.x22-active{color:var(--text);background:rgba(13,148,136,.08)}@media(max-width:1023px){.x22-lang{display:none}}
.xm11-lang{display:none;align-items:center;justify-content:center;gap:.15rem;margin-top:.15rem}.xm11-t{font-size:.6875rem;font-weight:700;letter-spacing:.03em;color:rgba(255,255,255,.7);text-decoration:none;padding:.1rem .2rem;border-radius:3px;line-height:1;transition:color .2s,background .2s}.xm11-t:hover{color:#fff}.xm11-t.xm11-active{color:#fff;background:rgba(255,255,255,.15)}.navbar.scrolled .xm11-t{color:var(--text-muted)}.navbar.scrolled .xm11-t.xm11-active{color:var(--text);background:var(--bg-alt)}@media(max-width:1023px){.xm11-lang{display:flex}}

/* Footer lang flags */
.footer-lang-text{display:flex;align-items:center;gap:.75rem;margin-top:1.25rem}
.flt-a{display:inline-flex;align-items:center;text-decoration:none;opacity:.75;transition:opacity .2s;line-height:1}
.flt-a:hover{opacity:1}.flt-a.flt-active{opacity:.85}
.flag-svg{width:28px;height:auto;border-radius:2px;box-shadow:0 0 0 1px rgba(255,255,255,.1)}
@media(max-width:767px){.footer-lang-text{justify-content:flex-start;gap:1rem}.flt-a{opacity:.9}.flt-a.flt-active{opacity:1}.flag-svg{width:32px}}

/* Logo filter */
.logo-navbar{transition:filter .3s}
.navbar:not(.scrolled) .logo-navbar{filter:brightness(0) invert(1)}

/* Mobile: navbar always white */
@media(max-width:1023px){
  .navbar{background:rgba(255,255,255,.97)!important;border-bottom:1px solid var(--border);box-shadow:0 1px 3px rgba(0,0,0,.08)}
  .navbar .logo-navbar{filter:none!important}
  .navbar .hamburger-bar{background:var(--text)!important}
  .navbar .xm11-t{color:var(--text-muted)!important}
  .navbar .xm11-t.xm11-active{color:var(--text)!important;background:var(--bg-alt)!important}
  .navbar-links{display:none!important}
  .hamburger{display:flex!important}
}

/* ============================================================
   V24 FIXES — appended, do not modify above
   ============================================================ */

/* Hero: left-aligned, 1/3 from top */
.hero-content {
  margin-left: max(100px, 6vw);
  margin-right: 200px;
  padding-top: 33vh;
}
.hero-title { white-space: nowrap; }
@media (max-width: 640px) {
  .hero-content {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    padding-top: 180px;
  }
  .hero-title { white-space: normal; }
}

/* Navbar logo: fill 80px height, no padding, scrolled = 50% black */
.logo-navbar {
  height: var(--navbar-h);
  width: auto;
  padding: 0;
  object-fit: contain;
}
.navbar.scrolled .logo-navbar {
  filter: brightness(0) invert(0.5);
}

/* Tour block: consistent image sizing */
.tour-block {
  grid-template-columns: 1fr 1.4fr;
}
.tour-block-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Footer font sizes per v24 */
.footer-brand { font-size: 2rem; }
.footer-col-heading { font-size: 1.125rem; }
.footer-description { font-size: 1rem; }
.section-eyebrow { font-size: 1.0625rem; }

/* Footer location */
.footer-location {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}
.footer-location i {
  margin-right: 0.3rem;
}

/* scroll-padding */
html { scroll-padding-top: calc(var(--navbar-h) + 1rem); }

/* Travel tips 3-column */
.travel-tips-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 768px) {
  .travel-tips-list {
    grid-template-columns: 1fr;
  }
}

/* Mobile: navbar always white, dark elements */
@media (max-width: 1023px) {
  .navbar {
    background: rgba(255,255,255,0.97) !important;
    border-bottom: 1px solid var(--border, #e5e5e5);
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
  }
  .navbar .logo-navbar {
    filter: none !important;
  }
  .navbar .hamburger-bar {
    background: var(--text) !important;
  }
  .navbar .xm11-t {
    color: var(--text-muted) !important;
  }
  .navbar .xm11-t.xm11-active {
    color: var(--text) !important;
    background: var(--bg-alt, #f5f5f5) !important;
  }
  .navbar-links { display: none !important; }
  .btn-nav { display: none !important; }
  .hamburger { display: flex !important; }

  /* Mobile: tour blocks stack vertically, image on top */
  .tour-block {
    grid-template-columns: 1fr !important;
  }
  .tour-block-img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
  }
}

/* Quick facts icon list */
.quick-facts-list {
  list-style: none;
  padding: 0;
}
.quick-facts-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.quick-facts-list li i {
  color: var(--accent);
  flex-shrink: 0;
  width: 1.2em;
  text-align: center;
}

/* Carousel dots — filled 9px */
.carousel-dot {
  border: none;
  padding: 0;
}

/* Mobile font floor */
@media (max-width: 767px) {
  body { font-size: 1rem; }
  p, li, td, th, label, input, select, textarea { font-size: 1rem; }
  .footer-copyright, .footer-description, .review-country { font-size: 0.9375rem; }
}

/* OVERRIDE: Mobile hamburger & lang — force dark on white bg */
@media (max-width: 1023px) {
  #navbar .hamburger-bar {
    background: #333 !important;
  }
  #navbar.scrolled .hamburger-bar {
    background: #333 !important;
  }
  #navbar .xm11-t {
    color: #555 !important;
  }
  #navbar .xm11-t.xm11-active {
    color: #222 !important;
    background: rgba(0,0,0,0.05) !important;
  }
  #navbar .logo-navbar {
    filter: none !important;
  }
}

/* OVERRIDE: Mobile font floor 1rem — comprehensive */
@media (max-width: 767px) {
  .section-intro, .about-intro, .about-text p, .meals-intro,
  .activity-card-text, .tour-block-body p, .tour-block p,
  .villa-desc, .villa-features li, .villa-features span,
  .meal-detail p, .meals-note,
  .transfer-step p, .step-text p,
  .travel-tips-list li,
  .review-text, .review-card blockquote,
  .info-card p, .info-card span, .info-card li,
  .quick-facts-list li,
  .modal-room-desc, .modal-features-list li,
  .onsite-list li, .section-eyebrow,
  .tours-intro, .activities-intro {
    font-size: 1rem !important;
  }
  .footer-copyright, .review-country {
    font-size: 0.9375rem !important;
  }
  .footer-brand { font-size: 1.5rem !important; }
  .footer-col-heading { font-size: 1rem !important; }
}

/* OVERRIDE: Logo full navbar height */
.navbar-logo img,
.navbar-logo .logo-navbar,
#navbar .navbar-logo img {
  height: 80px !important;
  height: var(--navbar-h, 80px) !important;
  width: auto !important;
  padding: 0 !important;
  object-fit: contain;
}

/* xm12: left of hamburger */
.xm12-row{display:none;align-items:center}
.xm12-lang{display:flex;align-items:center;gap:.1rem;margin-right:.4rem}
.xm12-t{font-size:.6875rem;font-weight:700;letter-spacing:.03em;color:#555;text-decoration:none;padding:.1rem .25rem;border-radius:3px;line-height:1}
.xm12-t.xm12-active{color:#222;background:rgba(0,0,0,.05)}
@media(max-width:1023px){.xm12-row{display:flex}}

/* xm14: above hamburger */
.xm14-wrap{display:none;flex-direction:column;align-items:center;gap:.1rem}
.xm14-lang{display:flex;align-items:center;gap:.1rem}
.xm14-t{font-size:.6875rem;font-weight:700;letter-spacing:.03em;color:#555;text-decoration:none;padding:.1rem .2rem;border-radius:3px;line-height:1}
.xm14-t.xm14-active{color:#222;background:rgba(0,0,0,.05)}
@media(max-width:1023px){.xm14-wrap{display:flex}}

/* OVERRIDE: Footer mobile font sizes — ensure readable */
@media (max-width: 767px) {
  .footer-description,
  .footer-links a,
  .footer-enquiry,
  .footer-location,
  .footer-col-heading,
  .info-card p,
  .info-card li span {
    font-size: 1rem !important;
  }
  .footer-brand {
    font-size: 1.5rem !important;
  }
  .footer-copyright {
    font-size: 0.9375rem !important;
  }
}

/* OVERRIDE: Room grid — 2 columns for 2-room resorts (full width) */
.villas-grid {
  grid-template-columns: repeat(2, 1fr) !important;
}
@media (max-width: 768px) {
  .villas-grid {
    grid-template-columns: 1fr !important;
  }
}

/* OVERRIDE: Travel tips + review text — readable on all screens */
.travel-tips-list li {
  font-size: 1rem;
}
.review-text, .review-card blockquote {
  font-size: 1.0625rem;
}
@media (max-width: 767px) {
  .travel-tips-list li {
    font-size: 1rem !important;
  }
  .review-text, .review-card blockquote {
    font-size: 1rem !important;
  }
}
