/* =====================================================
   Orange Wave Resort — style.css
   Accent: Burnt Orange #C55202
   Font:   Cabinet Grotesk + DM Sans
   Section order: hero → about → villas → activities → getting-there → meals → contact → reviews → footer
   Round 5.9.1
===================================================== */

/* ── CSS Variables ─────────────────────────────────── */
:root {
  --accent:        #C55202;
  --accent-dark:   #A34401;
  --accent-light:  rgba(197, 82, 2, 0.12);
  --footer-bg:     #00160f;

  --font-head: 'Cabinet Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --navbar-h:  80px;

  --text:      #1a1a1a;
  --text-mute: #555;
  --text-xmute:#888;
  --bg:        #ffffff;
  --bg-alt:    #f4f8f5;
  --border:    #e2e8e5;

  --section-pad: clamp(4rem, 8vw, 7rem);
  --container:   1200px;
  --gap:         2rem;

  --radius:    12px;
  --radius-sm: 6px;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
}

/* ── Reset / Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

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

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

.text-center { text-align: center; }

.section-eyebrow {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.section-intro {
  font-size: 1.0625rem;
  color: var(--text-mute);
  max-width: 100%;
  text-align: justify;
  margin-bottom: 2rem;
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
  line-height: 1.4;
}

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

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

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

/* ── Navbar ────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--navbar-h);
  transition: box-shadow 0.3s;
}

.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-navbar {
  height: var(--navbar-h);
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 1.0625rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.btn-nav-cta {
  background: var(--accent);
  color: #fff !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 1.0625rem;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-nav-cta:hover { background: var(--accent-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Nav sentinel — must not take up space */
.nav-sentinel {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* ── Mobile Menu ───────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  max-height: calc(100vh - 0px);
  overflow-y: auto;
  padding: 1.5rem 1.5rem 2rem;
  transform: translateY(-110%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

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

.mobile-menu-close {
  display: block;
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text);
  padding: 0.25rem 0.5rem;
  margin-bottom: 1rem;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav-links a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.mobile-nav-links a:hover { background: var(--bg-alt); }

.mobile-nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  text-align: center;
  margin-top: 0.5rem;
}

.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.menu-backdrop.open { display: block; }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-start;
  padding-top: clamp(6rem, 14vh, 10rem);
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: #fff;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-size: 1.125rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  opacity: 0.93;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

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

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

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

.about-text p {
  margin-bottom: 1.2rem;
  color: var(--text-mute);
  font-size: 1.0625rem;
}
.about-text p:last-child { margin-bottom: 0; }

.about-text .section-eyebrow { margin-bottom: 0.5rem; }
.about-text .section-h2 { margin-bottom: 1.5rem; }

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

/* ── Rooms / Suites ────────────────────────────────── */
.rooms-section { background: var(--bg-alt); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

/* With only 1 room, center it */
.rooms-grid:has(.room-card:only-child) {
  grid-template-columns: minmax(0, 480px);
  justify-content: center;
}

.room-card {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.room-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

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

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

.carousel-slide {
  flex: 0 0 100%;
  width: 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: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: background 0.2s, opacity 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: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  padding: 0;
}
.carousel-dot.active { background: #fff; }

/* Room card body */
.room-card-body {
  padding: 1.25rem 1.25rem 0.5rem;
  flex: 1;
}

.room-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.room-specs {
  font-size: 0.9375rem;
  color: var(--text-xmute);
  margin-bottom: 0.75rem;
}

.room-card-body p {
  font-size: 1.0625rem;
  color: var(--text-mute);
  line-height: 1.65;
}

/* Room buttons */
.room-card-buttons {
  padding: 0.75rem 1.25rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.btn-view-details {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.btn-view-details:hover { background: var(--accent); color: #fff; }

.btn-room-cta {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.btn-room-cta:hover { background: var(--accent-dark); border-color: 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.55);
  z-index: 0;
  cursor: pointer;
}

.modal-inner {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-mute);
  line-height: 1;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--bg-alt); }

.modal-body {
  padding: 2rem;
}

.modal-body h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
  padding-right: 2rem;
}

.modal-specs {
  font-size: 0.9375rem;
  color: var(--text-xmute);
  margin-bottom: 1.2rem;
}

.modal-body p {
  font-size: 1.0625rem;
  color: var(--text-mute);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.modal-body h4 {
  font-family: var(--font-head);
  font-size: 1.1875rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
  color: var(--text);
}

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

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

.modal-amenities li i {
  color: var(--accent);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.modal-book-btn {
  width: 100%;
}

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

.activities-banner {
  margin: 1.5rem 0;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}
.activities-banner img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.activities-intro {
  max-width: 100%;
  text-align: justify;
  margin-bottom: 2.5rem;
}

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

.activity-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.activity-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.activity-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.activity-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.activity-card-icon {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: var(--accent);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.activity-card-body {
  padding: 1.1rem 1.1rem 1.25rem;
  flex: 1;
}
.activity-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.activity-card-body p {
  font-size: 1rem;
  color: var(--text-mute);
  line-height: 1.6;
}

/* On-site activities */
.on-site-activities {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 3rem;
}

.on-site-heading {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.on-site-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.on-site-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.on-site-item i {
  font-size: 1.4rem;
  color: var(--accent);
}

/* Tour blocks */
.tour-blocks-wrapper { display: flex; flex-direction: column; gap: 3.5rem; }

.tour-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.tour-block-even .tour-block-img { order: 2; }
.tour-block-even .tour-block-text { order: 1; }

.tour-block-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.tour-eyebrow {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.tour-block-text h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: var(--text);
  line-height: 1.25;
}

.tour-block-text p {
  font-size: 1.0625rem;
  color: var(--text-mute);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.highlights li {
  font-size: 1rem;
  color: var(--text-mute);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.55;
}
.highlights li::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.45em;
}

.tour-note {
  font-size: 0.9375rem;
  color: var(--text-xmute);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ── Getting Here ──────────────────────────────────── */
.getting-there-section { background: var(--bg-alt); }

.getting-there-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3.5rem;
  align-items: start;
}

.getting-there-content .section-eyebrow { margin-bottom: 0.5rem; }
.getting-there-content .section-h2 { margin-bottom: 2rem; }

.getting-there-h3 {
  font-family: var(--font-head);
  font-size: 1.1875rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}
.getting-there-content h3:first-of-type { margin-top: 0; }

.getting-there-content p {
  font-size: 1.0625rem;
  color: var(--text-mute);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.flight-routes {
  list-style: none;
  margin: 0.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.flight-routes li {
  font-size: 1.0625rem;
  color: var(--text-mute);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding-left: 0.25rem;
}
.flight-routes li i {
  color: var(--accent);
  font-size: 0.45rem;
  margin-top: 0.6em;
  flex-shrink: 0;
}

/* Getting Here Sidebar */
.getting-there-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.btn-maps-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
}

.maps-iframe-wrapper {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.maps-iframe-wrapper iframe { display: block; }

.travel-tips-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.travel-tips-card .card-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.travel-tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.travel-tips-list li {
  font-size: 1rem;
  color: var(--text-mute);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.55;
}
.travel-tips-list li i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 0.15em;
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
}

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

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

.meals-text .section-eyebrow { margin-bottom: 0.5rem; }
.meals-text .section-h2 { margin-bottom: 1.5rem; }

.meals-text p {
  font-size: 1.0625rem;
  color: var(--text-mute);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.meal-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

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

.meal-icon {
  font-size: 1.35rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
  width: 1.5rem;
  text-align: center;
}

.meal-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.meal-item p {
  font-size: 1rem;
  color: var(--text-mute);
  margin-bottom: 0 !important;
  line-height: 1.55;
}

.meals-note {
  font-size: 0.9375rem !important;
  color: var(--text-xmute) !important;
  font-style: italic;
}

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

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

.contact-section .section-eyebrow { margin-bottom: 0.5rem; }
.contact-section .section-h2 { margin-bottom: 0.5rem; }
.contact-section .section-intro { margin-bottom: 2rem; }

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

/* Form */
.booking-form {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-honeypot { position: absolute; left: -9999px; }

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

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

.form-group-full { margin-bottom: 1rem; }

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

.req { color: var(--accent); }

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: #fff;
}

.form-group input[type="date"] { color-scheme: light; }

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

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.btn-submit {
  padding: 0.75rem 2rem;
  font-size: 1.0625rem;
  font-weight: 700;
}

.form-reassurance {
  font-size: 0.9375rem;
  color: var(--text-xmute);
}

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.card-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.info-card p {
  font-size: 1.0625rem;
  color: var(--text-mute);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}
.info-card p:last-child { margin-bottom: 0; }

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.info-list li {
  font-size: 1rem;
  color: var(--text-mute);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.info-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.5em;
}

.info-note {
  font-size: 0.9375rem !important;
  color: var(--text-xmute) !important;
  font-style: italic;
}

.quick-facts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.quick-facts-list li {
  font-size: 1rem;
  color: var(--text-mute);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.quick-facts-list li i {
  color: var(--accent);
  width: 1rem;
  text-align: center;
  flex-shrink: 0;
  margin-top: 0.15em;
}

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

.reviews-section .section-eyebrow { margin-bottom: 0.5rem; }
.reviews-section .section-h2 { margin-bottom: 0.5rem; }
.reviews-section .section-intro { margin-bottom: 2.5rem; }

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

.review-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
  font-size: 1rem;
}

.review-body {
  font-size: 1.0625rem;
  color: var(--text-mute);
  line-height: 1.7;
  flex: 1;
}

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

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

/* ── Footer ────────────────────────────────────────── */
.site-footer {
  background: var(--footer-bg);
  color: #a0a0b0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 1.5rem 3rem;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 1rem;
  color: #a0a0b0;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  max-width: 380px;
}

.footer-location {
  font-size: 0.9375rem;
  color: #a0a0b0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-location i { color: var(--accent); margin-top: 0.2em; flex-shrink: 0; }

.footer-col-heading {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a {
  font-size: 1rem;
  color: #a0a0b0;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }

.footer-enquiry-link {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.footer-enquiry-link:hover { color: var(--accent); }

.social-icons {
  display: flex;
  gap: 0.65rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.9375rem;
  transition: background 0.2s;
}
.social-icons a:hover { background: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.footer-copy {
  font-size: 0.9375rem;
  color: #a0a0b0;
  text-align: center;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1100px) {
  .core-activities-grid { grid-template-columns: repeat(2, 1fr); }
  .on-site-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-col { order: -1; }
  .about-img { max-width: 100%; }

  .rooms-grid { grid-template-columns: 1fr; }
  .rooms-grid:has(.room-card:only-child) { grid-template-columns: 1fr; justify-content: unset; }

  .getting-there-grid { grid-template-columns: 1fr; }
  .getting-there-sidebar { margin-top: 0; }

  .meals-grid { grid-template-columns: 1fr; gap: 2rem; }
  .meals-image-col { order: -1; }

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

  .tour-block { grid-template-columns: 1fr; }
  .tour-block-even .tour-block-img { order: 0; }
  .tour-block-even .tour-block-text { order: 0; }

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

@media (max-width: 768px) {
  :root { --section-pad: clamp(3rem, 6vw, 5rem); }

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

  .hero { min-height: 75vh; padding-top: 5rem; }
  .hero-content { max-width: 100%; }

  .core-activities-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

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

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

  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .footer-brand-col { grid-column: auto; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }

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

  .core-activities-grid { grid-template-columns: 1fr; }
  .on-site-grid { grid-template-columns: repeat(2, 1fr); }

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

/* V25 AUDIT FIXES */
.logo-navbar { height: 80px; width: auto; padding: 0 !important; margin: 0 auto !important; object-fit: contain; }
.navbar:not(.scrolled) .logo-navbar { filter: brightness(0) invert(1); }
.navbar.scrolled .logo-navbar { filter: none !important; }

.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}}
.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(197,82,2,.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(197,82,2,.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(197,82,2,.08)}@media(max-width:1023px){.x13-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(197,82,2,.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;color:#555;text-decoration:none;padding:.1rem .2rem;border-radius:3px;line-height:1}.xm11-t.xm11-active{color:#222;background:rgba(0,0,0,.05)}@media(max-width:1023px){.xm11-lang{display:flex}}
.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;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-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;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}}

.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:1023px){
  .navbar{background:rgba(255,255,255,.97)!important;border-bottom:1px solid var(--border,#e5e5e5)}
  .navbar .logo-navbar{filter:none!important}
  .navbar .hamburger-bar{background:var(--text)!important}
  .nav-links{display:none!important}
  .hamburger{display:flex!important}
}

html{scroll-padding-top:calc(80px + 1rem)}
.carousel-dot{border:none;padding:0}

@media(max-width:767px){
  body{font-size:1rem}
  p,li,td,th,dd,dt,label,input,select,textarea{font-size:1rem!important}
  .footer-copyright,.review-country{font-size:0.9375rem!important}
}

/* V25: Navbar padding minimum 125px */
.navbar, #navbar { padding-left: 125px !important; padding-right: 125px !important; }
@media(max-width:1023px){ .navbar, #navbar { padding-left: 1rem !important; padding-right: 1rem !important; } }

/* V25: Hero positioning */
.hero { padding-top: 33vh !important; align-items: flex-start !important; }
.hero-content { margin-left: max(100px, 6vw); margin-right: 200px; }
.hero-title { white-space: nowrap; }
@media(max-width:640px){
  .hero { padding-top: 180px !important; }
  .hero-content { margin-left: 1.25rem; margin-right: 1.25rem; }
  .hero-title { white-space: normal; }
}

/* V25: Font sizes desktop */
.card-eyebrow, .section-eyebrow { font-size: 1.0625rem !important; }
.footer-brand { font-size: 2rem !important; }
.footer-col-heading { font-size: 1.125rem !important; }
.flight-routes li i { font-size: 0.75rem !important; }

/* V25: Tour blocks */
.tour-block { grid-template-columns: 1fr 1.4fr !important; }
.tour-block-image img { height: auto !important; aspect-ratio: unset !important; }
@media(max-width:768px){ .tour-block { grid-template-columns: 1fr !important; } }

/* V25: Mobile font floor — comprehensive */
@media (max-width: 767px) {
  body,
  p, li, td, th, dd, dt, span:not(.hamburger-bar), a, label,
  input, select, textarea, button,
  h4, h5, h6,
  .section-intro, .card-eyebrow, .section-eyebrow,
  .room-title, .room-meta, .room-desc, .room-features li,
  .villa-view-link, .facility-chip,
  .modal-specs, .modal-amenities li, .modal-body p,
  .activity-card p, .on-site-item,
  .tour-badge, .tour-block p, .tour-block li,
  .meal-item p, .meal-notes p,
  .travel-tips-list li, .travel-tips h4,
  .review-text, .review-author, .review-stars,
  .form-banner, .form-banner p, .form-group label,
  .form-reassurance,
  .info-card p, .info-card li, .info-note,
  .quick-facts-list li,
  .footer-description, .footer-location,
  .footer-col-heading, .footer-links a,
  .footer-social a, .footer-enquiry,
  .btn, .btn-nav-cta, .mobile-nav-cta,
  .getting-there-list li, .flight-routes li {
    font-size: 1rem !important;
  }
  .footer-copyright { font-size: 0.9375rem !important; }
  .xm11-t, .xm12-t, .xm14-t { font-size: 0.6875rem !important; }
  h1 { font-size: clamp(1.75rem, 7vw, 2.5rem) !important; }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem) !important; }
  h3 { font-size: 1.25rem !important; }
  i.fas, i.fa-solid, i.fa-regular, i.fa-brands, i.fab { font-size: inherit !important; }
}

/* Form layout — clean 2-column rows */
.form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1.25rem !important;
}
.form-group-full {
  grid-column: 1 / -1;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr !important; }
}

/* OVERRIDE: Navbar always white bg, dark elements */
.navbar, .navbar:not(.scrolled) {
  background: rgba(255,255,255,0.97) !important;
  box-shadow: 0 1px 0 var(--border, #e5e5e5) !important;
}
.navbar:not(.scrolled) .nav-links a { color: var(--text) !important; }
.navbar:not(.scrolled) .nav-links a:hover { color: var(--accent) !important; }
.navbar:not(.scrolled) .logo-navbar { filter: none !important; }
.navbar:not(.scrolled) .hamburger-bar { background: var(--text) !important; }
.navbar:not(.scrolled) .btn-nav-cta { background: var(--accent) !important; color: #fff !important; }
.navbar:not(.scrolled) .x21-t { color: var(--text-muted) !important; }
.navbar:not(.scrolled) .x21-t.x21-active { color: var(--text) !important; }
.navbar:not(.scrolled) .x21-div { background: var(--border) !important; }

/* Activities banner — 50% size desktop */
.activities-banner img, img[src*="swimming-leisure"] {
  width: 33% !important;
  max-width: 33% !important;
  height: auto;
  display: block;
}
@media(max-width:768px) {
  .activities-banner img, img[src*="swimming-leisure"] { width: 100% !important; max-width: 100% !important; }
}

/* Tour block images — consistent height, square preserved */
.tour-block-image img {
  width: 100%;
  height: auto !important;
  aspect-ratio: unset !important;
  object-fit: cover;
}
img[src*="multi-day-orange-wave"] {
  aspect-ratio: 1/1 !important;
  object-fit: cover;
}

/* Meal breakdown — 4 columns full width */
.meal-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.meal-breakdown-grid .meal-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.meal-breakdown-grid .meal-icon {
  font-size: 1.5rem;
  color: var(--accent);
}
@media(max-width:768px) {
  .meal-breakdown-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  .meal-breakdown-grid { grid-template-columns: 1fr; }
}

/* Suites intro centered */
.text-center { text-align: center; }

/* Modal book button spacing */
.modal-book-btn { margin: 1.5rem 0; }

/* Comprehensive mobile font floor */
@media (max-width: 767px) {
  .meal-item p, .meal-item strong,
  .meals-note, .meals-text p,
  .modal-body p, .modal-amenities li,
  .modal-specs {
    font-size: 1rem !important;
  }
  .xm11-t, .xm12-t, .xm14-t { font-size: 0.6875rem !important; }
}

/* Fix: Lang switcher hover on non-scrolled — match scrolled behavior */
.navbar:not(.scrolled) .x21-t:hover { color: var(--accent) !important; }
.navbar:not(.scrolled) .x13-t:hover { color: var(--accent) !important; }
.navbar:not(.scrolled) .x22-t:hover { color: var(--accent) !important; }

/* Fix: Reduce section padding for Contact + Meals */
#contact.contact-section, .meals-section { padding-top: calc(var(--section-pad, 80px) - 100px) !important; }

/* Fix: Tour block images — consistent with first image */
.tour-block-image { max-height: 320px; overflow: hidden; }
.tour-block-image img { width: 100%; height: 320px !important; object-fit: cover; }
@media(max-width:768px) { .tour-block-image img { height: auto !important; } }

/* OVERRIDE: Tour blocks equal columns, consistent image size */
.tour-block {
  grid-template-columns: 1fr 1fr !important;
}
.tour-block-img img {
  width: 100% !important;
  height: auto !important;
  max-height: 300px;
  aspect-ratio: 4/3 !important;
  object-fit: cover;
}
.tour-block-image img {
  max-height: 300px !important;
  height: auto !important;
}

/* Tour image note — paragraph below tour image */
.tour-img-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* OVERRIDE: Activities banner centered */
.activities-banner {
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
}

/* Fix: Multi-day image square proportions */
img[src*="multi-day-orange-wave"] {
  aspect-ratio: 1/1 !important;
  height: auto !important;
  max-height: none !important;
  object-fit: cover;
}

/* Fix: Dietary note padding */
.meals-note {
  padding-top: 10px;
}

/* Fix: Mobile tour blocks — single column, image then text */
@media (max-width: 768px) {
  .tour-block {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .tour-block-even .tour-block-img { order: 0 !important; }
  .tour-block-even .tour-block-text { order: 0 !important; }
  .tour-block-img img {
    max-height: none !important;
    height: auto !important;
    aspect-ratio: unset !important;
  }
}

/* Single room: horizontal layout — carousel left, info right */
.rooms-grid { display: block !important; }
.room-card-horizontal {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 2rem !important;
  width: 100% !important;
  max-width: 100% !important;
  align-items: start;
}
.room-card-left { display: flex; flex-direction: column; }
.room-card-left .carousel { border-radius: var(--radius, 12px); overflow: hidden; width: 100%; aspect-ratio: 4/3; }
.room-card-left .carousel img { width: 100%; height: 100%; object-fit: cover; }
.room-card-right { display: flex; flex-direction: column; gap: 1rem; padding-top: 1.5rem; }
.room-card-right .room-footer { border-top: none; padding-top: 0; margin-top: 1rem; }
.room-view-details-row { margin-top: 0.5rem; }
.room-features { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.room-features li { display: flex; align-items: center; gap: 0.5rem; }
.room-features li i { color: var(--accent); flex-shrink: 0; }
@media (max-width: 768px) {
  .room-card-horizontal { grid-template-columns: 1fr !important; }
  .room-card-right { padding: 0 1.25rem 1.25rem; }
  .room-features { grid-template-columns: 1fr; }
}

/* NUCLEAR: Single room full width — override all constraints */
.rooms-grid,
.rooms-grid:has(.room-card:only-child),
.rooms-grid:has(.room-card-horizontal) {
  display: block !important;
  grid-template-columns: unset !important;
  max-width: 100% !important;
}
.room-card-horizontal,
.room-card.room-card-horizontal {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 2rem !important;
  width: 100% !important;
  max-width: 100% !important;
  flex-direction: unset !important;
  transform: none !important;
}
.room-card-horizontal:hover {
  transform: none !important;
}
@media (max-width: 768px) {
  .room-card-horizontal,
  .room-card.room-card-horizontal {
    grid-template-columns: 1fr !important;
  }
}

/* OVERRIDE: Tour block images 4/3 ratio, equal columns */
.tour-block {
  grid-template-columns: 1fr 1fr !important;
  gap: 2.5rem !important;
  align-items: start !important;
}
.tour-block-img {
  max-height: none !important;
  overflow: visible !important;
}
.tour-block-img img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 4/3 !important;
  object-fit: cover !important;
  border-radius: var(--radius, 12px);
}
.tour-block-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.75rem;
}
.tour-block-text h3 {
  margin-top: 0;
}
.tour-block-text .highlights {
  margin: 0.5rem 0;
}
@media (max-width: 768px) {
  .tour-block {
    grid-template-columns: 1fr !important;
  }
  .tour-block-img img {
    aspect-ratio: unset !important;
    max-height: none !important;
  }
}

/* OVERRIDE: Multi-day image — square, not 4/3 */
.tour-block-img img[src*="multi-day-orange-wave"] {
  aspect-ratio: 1/1 !important;
}

/* Sipadan info card below tour image */
.tour-img-card {
  margin-top: 1rem;
  background: var(--bg-alt, #f9fafb);
  border-radius: var(--radius, 12px);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--accent);
}
.tour-img-card ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tour-img-card li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Fix: View room details button — centered, bordered, transparent */
.room-view-details-row {
  text-align: center;
  margin-top: 1rem;
}
.villa-view-link,
.btn-view-details {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1.5px solid var(--accent) !important;
  border-radius: var(--radius, 8px);
  background: transparent !important;
  color: var(--accent) !important;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.villa-view-link:hover,
.btn-view-details:hover {
  background: var(--accent) !important;
  color: #fff !important;
}

/* Fix: Room meta padding above and below */
.room-meta {
  padding: 0.75rem 0 !important;
}

/* Fix: Room description padding above */
.room-desc {
  padding-top: 0.75rem !important;
}

/* Fix: Padding below Book This Suite button in room section */
.room-card-right .room-footer {
  padding-bottom: 1.5rem !important;
}
