/* Tampi Tampi Resort — style.css | Generated: round 5.9.2 | 2026-05-10 */
/* Visual identity: Bodoni Moda + Inter | Electric Blue #2563eb | Footer #060F23 */

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  --accent:        #2563eb;
  --accent-dark:   #1d4ed8;
  --accent-light:  #eff6ff;
  --accent-muted:  #bfdbfe;
  --text:          #1a1a2e;
  --text-light:    #4b5563;
  --text-muted:    #6b7280;
  --bg:            #ffffff;
  --bg-alt:        #f8fafc;
  --border:        #e2e8f0;
  --star:          #f59e0b;
  --footer-bg:     #060F23;
  --footer-text:   #94a3b8;
  --footer-head:   #f1f5f9;
  --radius:        8px;
  --radius-lg:     16px;
  --shadow:        0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.16);
  --navbar-h: 80px;
  --font-head: 'Cabinet Grotesk', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease:          0.25s ease;
  --ease-out:      0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth; scroll-padding-top: calc(var(--navbar-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

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

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

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

a:hover {
  color: var(--accent-dark);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: 0.75rem;
}

h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

h5 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--footer-head);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

strong {
  font-weight: 600;
}

/* ============================================================
   4. LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  background: var(--bg);
}

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

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section-intro {
  max-width: 780px;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border: 2px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}

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

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

.btn-nav-cta {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

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

.btn-maps-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  transition: background var(--ease), border-color var(--ease);
}

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

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

.navbar.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-sentinel {
  position: absolute;
  top: var(--navbar-h);
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.navbar-inner {
  padding-left: max(75px, 5vw);
  padding-right: max(1.5rem, 3vw);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links li a {
  font-size: 1.025rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.4rem 0.65rem;
  border-radius: 4px;
  transition: color var(--ease), background var(--ease);
  text-decoration: none;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}

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

/* ============================================================
   7. MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: #fff;
  padding: 1.5rem 1.5rem 2rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(-110%);
  transition: transform var(--ease-out);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

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

.mobile-menu-close {
  display: flex;
  margin-left: auto;
  margin-bottom: 1rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-light);
  padding: 0.25rem;
  transition: color var(--ease);
}

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

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

.mobile-nav-links li a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: background var(--ease), color var(--ease);
  text-decoration: none;
}

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

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

.mobile-nav-links .mobile-nav-cta:hover {
  background: var(--accent-muted);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 940;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

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

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6,15,35,0.72) 0%,
    rgba(6,15,35,0.40) 55%,
    rgba(6,15,35,0.20) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: max(100px, 6vw);
  padding: 0 24px;
  padding: clamp(140px, 22vh, 220px) 1.5rem 4rem;
  margin: 0 auto 0 clamp(1.5rem, 8vw, 120px);
}

.hero-content h1 {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 1.1rem;
}

.hero-tagline {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 580px;
}

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

/* ============================================================
   9. ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  margin-top: 0.25rem;
}

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

.about-image-col {
  position: relative;
}

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

/* ============================================================
   10. ACCOMMODATION / ROOMS
   ============================================================ */
#villas h2 {
  margin-top: 0.25rem;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

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

.room-card:hover {
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   11. CAROUSEL
   ============================================================ */
.carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

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

.carousel-btn.prev { left: 0.5rem; }
.carousel-btn.next { right: 0.5rem; }

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

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background var(--ease), transform var(--ease);
  cursor: pointer;
}

.carousel-dot.active {
  background: #fff;
  transform: scale(1.2);
}

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

.room-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin-bottom: 0.75rem;
}

.room-specs li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

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

.room-card-body p {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.room-view-details-row {
  padding: 0.75rem 1.25rem 0;
}

.btn-view-details {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}

.btn-view-details:hover {
  color: var(--accent-dark);
}

.room-card-buttons {
  padding: 1rem 1.25rem 1.25rem;
}

.btn-room-cta {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
}

/* ============================================================
   12. ROOM MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,15,35,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

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

.modal-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  padding-right: 2rem;
}

.modal-box .room-specs {
  margin-bottom: 1rem;
}

.modal-box p {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-alt);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-light);
  transition: background var(--ease), color var(--ease);
}

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

.modal-room-cta {
  display: inline-flex;
  margin-top: 1.25rem;
}

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

.meals-content h2 {
  margin-top: 0.25rem;
}

.meals-content > p {
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

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

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

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

.meal-item > div strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.meal-item > div p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.cuisine-types {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.cuisine-types h4 {
  margin-bottom: 0.75rem;
  color: var(--text);
}

.cuisine-types ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cuisine-types ul li {
  font-size: 0.9rem;
  color: var(--text-light);
}

.dietary-note {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.75rem 1rem;
}

.dietary-note p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.dietary-note p i {
  color: var(--accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

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

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

/* ============================================================
   14. ACTIVITIES SECTION
   ============================================================ */
#activities h2 {
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}

.activities-banner {
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.activities-banner-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
}

.activities-intro {
  margin-bottom: 3rem;
}

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

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

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

.activity-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.activity-card h3 {
  font-size: 1.05rem;
  padding: 1rem 1rem 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.activity-card p {
  padding: 0 1rem 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

/* On-site activities */
.onsite-activities {
  margin-bottom: 3rem;
}

.onsite-activities h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.onsite-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.onsite-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.onsite-item i {
  color: var(--accent);
  font-size: 0.85rem;
}

/* Tour blocks — alternating L/R */
.tour-blocks {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.tour-block {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}

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

.tour-block-img-right .tour-image {
  order: 2;
}

.tour-block-img-right .tour-content {
  order: 1;
}

.tour-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.tour-content h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 0.75rem;
}

.tour-content > p {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.tour-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

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

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

.sipadan-package-note {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.75rem 1rem;
  margin-top: 1rem;
}

.sipadan-package-note p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

.dive-sites-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.dive-site {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-light);
  border: 1px solid var(--border);
}

.dive-site strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.2rem;
  font-size: 0.875rem;
}

/* ============================================================
   15. TRAVEL INFO / GETTING THERE
   ============================================================ */
#getting-there h2 {
  margin-top: 0.25rem;
  margin-bottom: 1.75rem;
}

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

.getting-there-content h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.75rem 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

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

.getting-there-content h3 i {
  color: var(--accent);
}

.getting-there-content > p {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.flight-routes,
.transfer-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.flight-routes li,
.transfer-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.flight-routes li i,
.transfer-details li i {
  color: var(--accent);
  font-size: 0.75rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

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

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

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

.maps-embed-wrap iframe {
  display: block;
}

.travel-tips-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

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

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

.travel-tips-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.travel-tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.travel-tips-list li i {
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

/* ============================================================
   16. CONTACT / BOOKING FORM
   ============================================================ */
#contact h2 {
  margin-top: 0.25rem;
}

#contact .section-intro {
  margin-bottom: 2rem;
}

.form-success-banner,
.form-error-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-success-banner {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

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

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

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

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

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

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

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

.req {
  color: #ef4444;
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.field-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}

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

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

.form-submit-row .btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
}

.form-reassurance {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

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

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

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

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

.info-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

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

.quick-facts-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

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

.quick-facts-list li i {
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

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

/* ============================================================
   17. REVIEWS / TESTIMONIALS
   ============================================================ */
#reviews h2 {
  margin-top: 0.25rem;
}

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

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow var(--ease);
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
}

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

.review-body {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
  margin: 0;
  font-style: italic;
}

.review-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

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

/* ============================================================
   18. FOOTER
   ============================================================ */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}

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

.footer-description {
  font-size: 1.025rem;
  color: var(--footer-text);
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 300px;
}

.footer-location {
  font-size: 0.875rem;
  color: var(--footer-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.footer-location i {
  color: var(--accent-muted);
  font-size: 0.85rem;
}

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

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

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

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

.footer-nav-list li a {
  font-size: 0.9rem;
  color: var(--footer-text);
  text-decoration: none;
  transition: color var(--ease);
}

.footer-nav-list li a:hover {
  color: #fff;
}

.footer-contact-col p {
  font-size: 0.9rem;
  color: var(--footer-text);
  margin-bottom: 0.75rem;
}

.footer-enquiry-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-muted);
  text-decoration: none;
  transition: color var(--ease);
  border-bottom: 1px solid rgba(191,219,254,0.3);
  padding-bottom: 2px;
}

.footer-enquiry-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.footer-bottom {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  padding: 1.1rem 1.5rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(148,163,184,0.75);
  margin: 0;
}

/* ============================================================
   19. RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .activity-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .getting-there-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .getting-there-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .sidebar-img {
    grid-column: 1 / -1;
  }

  .tour-block,
  .tour-block-img-right {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tour-block-img-right .tour-image,
  .tour-block-img-right .tour-content {
    order: unset;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

/* ============================================================
   20. RESPONSIVE — TABLET-MD (max 900px)
   ============================================================ */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image-col {
    order: -1;
  }

  .about-img {
    aspect-ratio: 16/9;
  }

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

  .meals-image-col {
    position: static;
    order: -1;
  }

  .meals-img {
    aspect-ratio: 16/9;
  }

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

  .contact-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

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

/* ============================================================
   21. RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  /* Show hamburger, hide desktop nav */
  .nav-links,
  .btn-nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: clamp(110px, 20vh, 160px);
  }

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

  .activity-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .activity-card h3 {
    font-size: 0.9rem;
  }

  .dive-sites-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-top: 2.5rem;
  }

  .footer-brand-col {
    grid-column: auto;
  }

  .footer-description {
    max-width: 100%;
  }

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

/* ============================================================
   22. RESPONSIVE — MOBILE-SM (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .activity-cards-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  h2 {
    font-size: 1.75rem;
  }
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── Hero <picture><img> support ── */
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* ── Modal box (script.js contract) ── */
.modal-box {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

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

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

@media (max-width: 1024px) {
  .lang-switcher-x13 { display: none !important; }
  .lang-switcher-xm12 { display: flex !important; }
}

/* ── Nav CTA button ── */
.nav-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  font-size: 1rem; font-weight: 700;
  margin-left: 1.5rem;
  padding: 9px 20px;
  border-radius: 6px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.25s ease;
}
.nav-cta:hover { background: var(--accent-dark); color: #fff !important; text-decoration: none; }
@media (max-width: 768px) { .nav-cta { display: none; } }

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

/* ── Footer bottom flags ── */
}
.footer-flags {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ff {
  display: block;
  line-height: 0;
  opacity: 0.45;
  transition: opacity 0.2s ease;
}
.ff:hover { opacity: 0.75; }
.ff-active { opacity: 1 !important; }
.ff svg { display: block; }

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

/* ── Highlights: dot not dash ── */
.tour-highlights li::before { content: none; }

/* ── §24 Multi-day tour images: square aspect ratio ── */
img[src*="multi-day-"] {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ── §6 Mobile navbar padding override ── */
@media (max-width: 1024px) {
  .navbar-inner { padding-left: 24px !important; padding-right: 24px !important; }
}

/* ── §7 Mobile hero-content margin ── */
@media (max-width: 640px) {
  .hero-content { margin-left: 24px !important; margin-right: 24px !important; padding: 0 !important; }
}

/* ── Logo height per §6 ── */
.logo-navbar { height: 80px !important; padding: 0 !important; margin: 0 !important; object-fit: contain; }

/* ── Fix form select styling ── */
.form-group select {
  -webkit-appearance: auto !important;
  appearance: auto !important;
  background-image: none !important;
}

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

/* ── Footer flags in col 3 (below social icons) ── */
.footer-flags {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.ff {
  display: block;
  line-height: 0;
  opacity: 0.45;
  transition: opacity 0.2s ease;
}
.ff:hover { opacity: 0.75; }
.ff-active { opacity: 1 !important; }
.ff svg { display: block; }

/* ── Footer bottom centered ── */
.footer-bottom {
  text-align: center;
}

/* ============================================================
   WB-STYLE FOOTER (clean rebuild)
   ============================================================ */
.footer {
  background: var(--footer-bg);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand {
  font-family: var(--font-head, var(--font-display));
  font-size: 1.5rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 14px;
}
.footer-description {
  font-size: 1.025rem;
  color: var(--footer-text);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-location {
  font-size: 0.88rem;
  color: var(--footer-text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-location i { color: var(--accent); font-size: 0.85rem; flex-shrink: 0; }
.footer-col-heading {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f1f5f9;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.footer-links li a {
  font-size: 0.9rem;
  color: var(--footer-text);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links li a:hover { color: #f1f5f9; text-decoration: none; }
.footer-enquiry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  margin-bottom: 1.25rem;
}
.footer-enquiry:hover { color: rgba(255,255,255,0.60); text-decoration: none; }
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--footer-text);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.footer-social a:hover { background: rgba(255,255,255,0.15); color: #fff; text-decoration: none; }
.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; text-decoration: none; }
.footer-flag:hover, .footer-flag.lang-active { opacity: 1; }
.flag-svg { display: block; width: 28px; height: 18px; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0; }
.footer-copyright { text-align: center; font-size: 0.83rem; color: var(--footer-text); padding: 20px 0; margin: 0; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand-col { grid-column: 1; }
}

/* ============================================================
   WB-STYLE LANG SWITCHER (x13 pill)
   ============================================================ */
.lang-switcher-x13 { display: flex; align-items: center; margin-left: 1rem; background: #f3f4f6; border: 1px solid #d1d5db; border-radius: 999px; overflow: hidden; padding: 2px; flex-shrink: 0; }
.lang-switcher-x13 a { font-size: 0.8125rem; padding: 0.3rem 0.85rem; color: #9ca3af; text-decoration: none; border-radius: 999px; transition: all 0.2s; font-weight: 500; }
.lang-switcher-x13 .lang-active { color: #1a1a1a; background: #fff; font-weight: 700; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.lang-switcher-x13 a:not(.lang-active):hover { color: var(--accent); background: rgba(0,0,0,0.04); }

/* Mobile lang + hamburger wrapper */
.navbar-right-mobile { display: none; flex-direction: row; align-items: center; gap: 0.75rem; margin-left: auto; height: 100%; }
@media (max-width: 1023px) { .navbar-right-mobile { display: flex; } .nav-links { display: none !important; } .lang-switcher-desktop { display: none !important; } .nav-cta { display: none !important; } }
@media (min-width: 1024px) { .lang-switcher-mobile { display: none !important; } .navbar-right-mobile { display: none; } }
.lang-switcher-xm12 { display: flex; gap: 0.375rem; font-size: 0.75rem; }
.lang-switcher-xm12 a { color: #6b7280; text-decoration: none; font-weight: 500; }
.lang-switcher-xm12 .lang-active { color: #1a1a1a; font-weight: 700; }

/* ============================================================
   Remove testimonials top padding
   ============================================================ */
#reviews { padding-top: 40px; }

/* ── Form label size bump +1px ── */
.form-group label { font-size: 1rem !important; }

/* ── Lang switcher pill -2px ── */
.lang-switcher-x13 a { font-size: 0.6875rem !important; padding: 0.2rem 0.7rem !important; }

/* ── Fix: Hamburger visible at ≤1023px (matches nav-links hide point) ── */
@media (max-width: 1023px) {
  .hamburger { display: flex !important; }
}

/* ============================================================
   MOBILE FONT-SIZE FLOOR (≤640px)
   All text ≥16px (1rem), paragraphs ≥17px (1.0625rem)
   ============================================================ */
@media (max-width: 640px) {
  body { font-size: 1.0625rem; }

  p, li, dd, dt, span, label, td, th, blockquote,
  .section-intro,
  .section-eyebrow,
  .room-specs li,
  .room-info-col p,
  .tour-content p,
  .tour-highlights li,
  .tour-highlights li i,
  .activity-card p,
  .onsite-item,
  .meal-item p,
  .meal-item strong,
  .cuisine-types li,
  .cuisine-types p,
  .dietary-note p,
  .review-body,
  .review-author,
  .review-country,
  .info-card p,
  .info-card h4,
  .quick-facts-list li,
  .quick-facts-list li span,
  .flight-routes li,
  .transfer-details li,
  .travel-tips-list li,
  .footer-description,
  .footer-location,
  .footer-links li a,
  .footer-enquiry,
  .footer-copyright,
  .form-group label,
  .form-group input,
  .form-group select,
  .form-group textarea,
  .form-reassurance,
  .btn,
  .btn-primary,
  .btn-outline,
  .btn-submit,
  .dive-site,
  .sipadan-package-note p {
    font-size: 1.0625rem !important;
  }

  h2 { font-size: 1.5rem !important; }

  h3,
  .activity-card h3,
  .tour-content h3,
  .onsite-activities h3,
  .cuisine-types h4,
  .getting-there-content h3 {
    font-size: 1.1875rem !important;
  }

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

  .footer-brand { font-size: 1.625rem !important; }
  .footer-col-heading { font-size: 1rem !important; }

  /* Form field placeholders */
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    font-size: 1.0625rem !important;
    font-family: var(--font-body) !important;
  }
}

/* ── Mobile hero positioning ── */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding-top: 22vh;
  }
  .hero-content { margin-left: 24px !important; margin-right: 24px !important; padding: 0 !important; }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-tagline { font-size: 1rem; }
  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .btn-primary, .btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

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

/* ── Reduce contact section top padding ── */
#contact { padding-top: 2rem !important; }

/* ── Travel tips: 3 horizontal cards full width ── */
.travel-tips-card {
  margin-top: 2rem;
}
.travel-tips-list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1rem !important;
}
.travel-tips-list li {
  background: var(--bg, #fff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 10px;
  padding: 1rem 1.25rem !important;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 768px) {
  .travel-tips-list { grid-template-columns: 1fr !important; }
}

/* ── Footer font bumps +1px ── */
.footer-links li a { font-size: 1rem !important; }
.footer-col-heading { font-size: 1rem !important; }
.footer-enquiry { font-size: 1rem !important; }

/* ── Desktop font-size floor: nothing below 15px ── */
.room-specs li,
.info-card p,
.info-card h4,
.quick-facts-list li span,
.form-group label,
.form-reassurance,
.section-eyebrow,
.section-intro,
.tour-highlights li,
.dive-site,
.flight-routes li,
.transfer-details li,
.travel-tips-list li,
.meal-item p,
.meal-item strong,
.cuisine-types li,
.dietary-note p,
.review-body,
.review-author,
.review-country,
.onsite-item {
  font-size: 1rem;
}

/* ── Mobile menu: align items with CTA + bump text size ── */
.mobile-nav-links li a {
  padding: 0.75rem 0.625rem !important;
  font-size: 1.125rem !important;
}
.mobile-nav-links .nav-cta {
  margin-left: 0.625rem !important;
  margin-right: 0.625rem !important;
  font-size: 1.125rem !important;
}
