/* Luma' Selakan — style.css
   Accent: Electric Blue #2563eb  |  Font: Fraunces + Plus Jakarta Sans
   Footer: #050e23                |  Round 5.9.2
*/

/* ── Custom properties ──────────────────────────────────────────── */
:root {
  --accent:        #2563eb;
  --accent-dark:   #1d4ed8;
  --accent-light:  #eff6ff;
  --accent-rgb:    37, 99, 235;
  --footer-bg:     #050e23;
  --text:          #1a2332;
  --text-light:    #4b5563;
  --text-xlight:   #9ca3af;
  --bg:            #ffffff;
  --bg-alt:        #f8f9fb;
  --border:        #e5e7eb;
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     18px;
  --shadow:        0 2px 12px rgba(0,0,0,.07);
  --shadow-md:     0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.14);
  --navbar-h:    68px;
  --container:     1200px;
  --font-head:     'Cabinet Grotesk', sans-serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --transition:    0.2s ease;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--navbar-h); }

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

img { display: block; max-width: 100%; height: auto; }
ul  { list-style: none; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Typography ─────────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--text);
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

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

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

/* ── Section defaults ───────────────────────────────────────────── */
.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-heading {
  margin-bottom: 1.25rem;
}
.section-heading.centered {
  text-align: center;
}
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 680px;
  margin-bottom: 3rem;
}
.section-intro.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.subsection-heading {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}
.subsection-heading.centered {
  text-align: center;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 4px 14px rgba(var(--accent-rgb),.35);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}
.btn-ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: #fff;
}
.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 1rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Navbar ─────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--navbar-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: #fff;
  box-shadow: var(--shadow);
}
.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.8rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.navbar.scrolled .nav-links a {
  color: var(--text);
}
.nav-links a:hover {
  background: rgba(255,255,255,.15);
}
.navbar.scrolled .nav-links a:hover {
  background: var(--accent-light);
  color: var(--accent);
}
.nav-links .nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
}
.nav-links .nav-cta:hover {
  background: var(--accent-dark) !important;
}
.nav-sentinel {
  height: var(--navbar-h);
}

/* ── Hamburger ──────────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--radius-sm);
  color: #fff;
  transition: background var(--transition);
}
.navbar.scrolled .hamburger {
  color: var(--text);
}
.hamburger:hover {
  background: rgba(255,255,255,.15);
}
.navbar.scrolled .hamburger:hover {
  background: var(--bg-alt);
}
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Mobile Menu ────────────────────────────────────────────────── */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 910;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 920;
  width: min(320px, 85vw);
  max-height: 100vh;
  overflow-y: auto;
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  transform: translateX(110%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg-alt);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  margin-left: auto;
}
.mobile-nav-links li {
  border-bottom: 1px solid var(--border);
}
.mobile-nav-links a {
  display: block;
  padding: 0.9rem 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-nav-links a:hover {
  color: var(--accent);
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero:hover .hero-bg {
  transform: scale(1.0);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5,14,35,.72) 0%,
    rgba(5,14,35,.45) 60%,
    rgba(5,14,35,.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 700px;
  padding-top: var(--navbar-h);
}
.hero-eyebrow {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 0.75rem;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── About ──────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 1.1rem;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-img-wrap:hover img {
  transform: scale(1.03);
}

/* ── Rooms ──────────────────────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Round 5.8.1: villa card flex layout */
.room-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.room-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.room-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}
.room-name {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.room-meta {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.room-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.room-amenities {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0;
  flex: 1;
}
.room-amenities li {
  font-size: 1rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.room-amenities i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.room-card-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ── Carousel ───────────────────────────────────────────────────── */
.carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.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%);
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.85);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 1;
  transition: opacity var(--transition), background var(--transition);
}
.carousel:hover .carousel-btn {
  opacity: 1;
}
.carousel-btn:hover {
  background: #fff;
}
.carousel-btn.prev { left: 0.6rem; }
.carousel-btn.next { right: 0.6rem; }
.carousel-dots {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active {
  background: #fff;
  transform: scale(1.25);
}

/* ── Activities ─────────────────────────────────────────────────── */
.core-activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}
.core-activity-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.core-activity-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.core-activity-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.core-activity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.core-activity-card:hover .core-activity-img img {
  transform: scale(1.04);
}
.core-activity-body {
  padding: 1.5rem;
}
.core-activity-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.core-activity-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.core-activity-body p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.65;
}

/* On-site activities */
.onsite-activities {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 3.5rem;
}
.onsite-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}
.onsite-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.55;
}
.onsite-list i {
  color: var(--accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.onsite-list strong {
  color: var(--text);
}

/* Tour blocks */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tour-block {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.tour-block:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.tour-block-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.tour-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tour-block:hover .tour-block-img img {
  transform: scale(1.04);
}
.tour-block-body {
  padding: 1.25rem;
}
.tour-block-body h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.tour-block-body p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ── Meals ──────────────────────────────────────────────────────── */
.meals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.meals-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.meals-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.meals-img-wrap:hover img {
  transform: scale(1.03);
}
.meals-text p {
  color: var(--text-light);
  margin-bottom: 1.1rem;
}
.meals-highlights {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.meals-highlights li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}
.meals-highlights i {
  color: var(--accent);
  font-size: 1rem;
}

/* ── Getting There ──────────────────────────────────────────────── */
.getting-there-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.transfer-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.transfer-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}
.step-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.step-body p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
}
.travel-tips {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.travel-tips dt {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  padding-top: 1rem;
  padding-bottom: 0.25rem;
  border-top: 1px solid var(--border);
  margin-top: 0.75rem;
}
.travel-tips dt:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.travel-tips dd {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.65;
}
.map-section {
  margin-top: 2rem;
}
.map-embed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 1.25rem;
}
.map-embed-wrap iframe {
  display: block;
}

/* ── Contact ────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-row {
  margin-bottom: 1.25rem;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-row .form-group {
  margin-bottom: 0;
}
label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.req {
  color: var(--accent);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),.15);
}
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 fill='%234b5563' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}
textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sidebar-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.sidebar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
}
.sidebar-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.quick-facts {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.quick-facts li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--text-light);
}
.quick-facts i {
  color: var(--accent);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  font-size: 1rem;
}
.alert-success {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #166534;
}
.alert-success i {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── Reviews ────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: #f59e0b;
  font-size: 1rem;
}
.review-body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}
.review-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.review-country {
  font-size: 1rem;
  color: var(--text-xlight);
  margin: 0;
}

/* ── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.25fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo img {
  filter: brightness(0) invert(1);
  opacity: .9;
  height: 40px;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer-tagline {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  margin-bottom: 0.5rem;
}
.footer-operator {
  font-size: 1rem;
  color: rgba(255,255,255,.4);
  margin: 0;
}
.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-nav a {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: #fff;
}
.footer-contact p {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer-contact i {
  margin-right: 0.4rem;
  color: var(--accent);
}
.footer-cta {
  margin-bottom: 1.5rem;
}



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

/* ── Modals ─────────────────────────────────────────────────────── */
.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(--transition);
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
}
.modal-inner {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95) translateY(12px);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.modal.open .modal-inner {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  color: var(--text);
  transition: background var(--transition);
}
.modal-close:hover {
  background: var(--border);
}
.modal-inner h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.modal-meta {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.modal-inner h4 {
  font-size: 1rem;
  margin: 1.5rem 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 700;
}
.modal-inner ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}
.modal-inner ul li {
  font-size: 1rem;
  color: var(--text-light);
  padding-left: 1rem;
  position: relative;
}
.modal-inner ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .about-grid,
  .meals-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .meals-grid {
    direction: rtl;
  }
  .meals-grid > * {
    direction: ltr;
  }
  .getting-there-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .core-activities-grid {
    grid-template-columns: 1fr;
  }
  .onsite-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .tours-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .onsite-activities {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --navbar-h: 60px;
  }
  .container {
    padding: 0 1rem;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .modal-inner {
    padding: 1.75rem 1.5rem;
  }
  .hero-content {
    padding-top: 0;
  }
}


/* ── Hero <picture><img> ── */
.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; }

/* ── Lang switcher desktop 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: 1rem; padding: 0.2rem 0.7rem; 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 mobile ── */
.navbar-right-mobile { display: none; flex-direction: row; align-items: center; gap: 0.75rem; margin-left: auto; height: 100%; }
.lang-switcher-xm12 { display: flex; gap: 0.375rem; font-size: 1rem; }
.lang-switcher-xm12 a { color: #6b7280; text-decoration: none; font-weight: 500; }
.lang-switcher-xm12 .lang-active { color: #1a1a1a; font-weight: 700; }

@media (max-width: 1023px) {
  .navbar-right-mobile { display: flex; }
  .nav-links { display: none !important; }
  .lang-switcher-desktop, .lang-switcher-x13 { display: none !important; }
  .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }
}
@media (min-width: 1024px) { .lang-switcher-mobile, .lang-switcher-xm12 { display: none !important; } .navbar-right-mobile { 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 flags ── */
.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; }

/* ── Navbar always white ── */
.navbar { background: rgba(255,255,255,0.97) !important; backdrop-filter: blur(14px); box-shadow: 0 1px 16px rgba(0,0,0,.09) !important; }
.nav-links li a { color: var(--text) !important; }
.hamburger-bar { background: var(--text) !important; }

/* ── scroll-padding fix ── */
html { scroll-padding-top: calc(var(--navbar-h) + 24px); }

/* ── navbar-inner padding ── */
.navbar-inner { padding-left: max(75px, 5vw) !important; padding-right: max(1.5rem, 3vw) !important; }
@media (max-width: 1024px) { .navbar-inner { padding-left: 24px !important; padding-right: 24px !important; } }

/* ── hero-content margin ── */
.hero-content { position: relative; z-index: 2; margin-left: max(100px, 6vw); }
@media (max-width: 640px) { .hero-content { margin-left: 24px !important; margin-right: 24px !important; } }

/* ── Logo: fit navbar height ── */
.nav-logo img, .logo-navbar { max-height: 80px !important; width: auto !important; }

/* ── Rooms grid: full width 2 columns ── */
.rooms-grid { grid-template-columns: repeat(2, 1fr) !important; }
@media (max-width: 768px) { .rooms-grid { grid-template-columns: 1fr !important; } }

/* ── Reduce padding above contact + reviews ── */
#contact { padding-top: 2.5rem !important; }
#reviews { padding-top: 2.5rem !important; }

/* ── Nav links size bump ── */
.nav-links li a { font-size: 1.025rem !important; }

/* ── Footer headings size bump ── */
.footer-col-title, .footer-heading, h4.footer-col-title { font-size: 1.0625rem !important; }

/* ── Nav CTA as button (not plain link) ── */
a.nav-cta { background: var(--accent) !important; color: #fff !important; padding: 9px 20px !important; border-radius: 6px !important; font-weight: 700 !important; }
a.nav-cta:hover { background: var(--accent-dark, #047857) !important; }
@media (max-width: 1023px) { .navbar a.nav-cta { display: none !important; } }

/* ── Mobile font-size floor ── */
@media (max-width: 640px) {
  body { font-size: 1.0625rem; }
  p, li, span, label, td, th,
  .room-specs li, .review-body, .review-author, .review-country,
  .info-card p, .form-group label, .form-group input,
  .form-group select, .form-group textarea,
  .btn, .btn-primary, .btn-outline { font-size: 1.0625rem !important; }
  h2 { font-size: 1.5rem !important; }
  h3 { font-size: 1.1875rem !important; }
  h4 { font-size: 1.1875rem !important; }
}

/* ── Carousel arrows bigger ── */
.carousel-btn { font-size: 1.5rem !important; width: 42px !important; height: 42px !important; }

/* ── Island hopping image: square ── */
img[src*="island-hopping-tours"] { aspect-ratio: 1 / 1 !important; object-fit: cover !important; }

/* ── Footer brand name (text, no logo) ── */
.footer-brand-name { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: #f1f5f9; margin-bottom: 14px; }

/* ── Footer lang flags ── */
.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 social 4 icons ── */

/* ── Onsite grid: 3 columns × 2 rows ── */
.onsite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.onsite-card {
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 10px;
  padding: 1.5rem;
}
.onsite-card h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.onsite-card p {
  font-size: 1rem;
  color: var(--text-muted, #555);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 900px) { .onsite-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .onsite-grid { grid-template-columns: 1fr; } }

/* ── Footer location + license ── */
.footer-location { font-size: 1rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 6px; margin-top: 0.5rem; }
.footer-location i { color: var(--accent); flex-shrink: 0; }
.footer-license { font-size: 1rem; color: rgba(255,255,255,0.5); text-align: center; margin: 0; padding-bottom: 1rem; }

/* ── Mobile font-size floor (comprehensive) ── */
@media (max-width: 640px) {
  body { font-size: 1.0625rem !important; }

  p, li, dd, dt, span, label, td, th, blockquote,
  .section-intro, .eyebrow, .section-eyebrow, .hero-eyebrow,
  .room-specs li, .room-card-body p,
  .tour-content p, .tour-highlights li,
  .activity-card p, .activity-card-body p,
  .onsite-card p,
  .meal-item p, .meal-breakdown p,
  .review-body, .review-author, .review-country,
  .info-card p, .quick-facts li,
  .form-group label, .form-group input, .form-group select, .form-group textarea,
  .form-reassurance,
  .btn, .btn-primary, .btn-outline, .btn-ghost,
  .dive-site, .sipadan-sites li,
  .flight-routes li, .transfer-details li,
  .travel-tips-list li, .travel-tips dt, .travel-tips dd,
  .footer-tagline, .footer-location, .footer-nav a, .footer-nav li a,
  .footer-contact p, .footer-cta,
  .onsite-list li, .onsite-item {
    font-size: 1.0625rem !important;
  }

  h2, .section-title { font-size: 1.5rem !important; }

  h3, .subsection-heading,
  .activity-card h3, .tour-content h3,
  .onsite-card h4 { font-size: 1.1875rem !important; }

  h4, .info-card h4, .footer-nav h4, .footer-contact h4 { font-size: 1.1875rem !important; }

  .footer-brand-name { font-size: 1.625rem !important; }
  .hero-title { font-size: 1.9rem !important; }
  .hero-sub { font-size: 1rem !important; }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    font-size: 1.0625rem !important;
  }
}

/* ── Lang switcher hover: lighter on non-active ── */
.lang-switcher-x13 a:not(.lang-active):hover { color: var(--accent) !important; background: rgba(0,0,0,0.04); }

/* ── Island hopping image: SQUARE ── */
img[src*="island-hopping-tours"] {
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  width: 100% !important;
}

/* ── Social media icons: centered, consistent ── */

/* ── Nav links hover effect ── */
.nav-links li a {
  padding: 6px 12px !important;
  border-radius: 6px !important;
  transition: color 0.2s ease, background 0.2s ease !important;
}
.nav-links li a:hover {
  color: var(--accent) !important;
  background: rgba(37, 99, 235, 0.08) !important;
}

/* ── Footer headings: 80% white ── */
.footer-nav h4, .footer-contact h4 { color: rgba(255,255,255,0.80) !important; }

/* ── Social media icons: matching example (larger, subtle circles) ── */

/* ── Footer location: 2px smaller, one line ── */
.footer-location { font-size: 0.9rem !important;  }

/* ── Footer description: 2px bigger ── */
.footer-tagline { font-size: 1.1rem !important; }

/* ── Info card h4 (Location title): 3px bigger ── */
.info-card h4 { font-size: 1.25rem !important; }

/* ── About paragraphs: match rooms intro size ── */
.about p, .about-text p { font-size: 1rem !important; line-height: 1.7; }

/* ── Desktop logo: 3px smaller ── */
.nav-logo img, .logo-navbar { max-height: 77px !important; }

/* ── Desktop lang switcher: 4px smaller ── */
.lang-switcher-x13 a { font-size: 0.625rem !important; padding: 0.15rem 0.6rem !important; }

/* ── Mobile menu text: 2px bigger ── */
@media (max-width: 1023px) {
  .mobile-nav-links li a { font-size: 1.1875rem !important; }
  .mobile-nav-links .nav-cta { font-size: 1.1875rem !important; }
}

/* ── Mobile logo: 6px smaller ── */
@media (max-width: 768px) {
  .nav-logo img, .logo-navbar { max-height: 48px !important; }
}

/* ── Room card: more padding between title, specs, description ── */
.room-card-body .room-name { margin-bottom: 1rem !important; }
.room-specs { margin-bottom: 1.25rem !important; }
.room-card-body > p { margin-top: 0.5rem !important; }

/* ── Mobile navbar: prevent overflow ── */
@media (max-width: 768px) {
  .navbar-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
    max-width: 100vw !important;
    overflow: hidden;
  }
  .navbar-right-mobile { flex-shrink: 0; gap: 0.5rem !important; }
}






/* ── Social icons: EXACT WB Shun Shun ── */
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-social a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  line-height: 1 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.10) !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 0.9rem !important;
  text-decoration: none !important;
  transition: background 0.2s ease;
}
.footer-social a i,
.footer-social a .fab,
.footer-social a .fa-brands {
  color: #ffffff !important;
  line-height: 1 !important;
  display: block !important;
  width: auto !important;
  text-align: center !important;
}
.footer-social a:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
}
