/* ===========================
   Grand Dive Resort Semporna
   style.css — round 5.9.2
   Accent: Dark Emerald #065f46
   Font: Cabinet Grotesk + DM Sans
   =========================== */

/* ---- Variables ---- */
:root {
  --accent:        #065f46;
  --accent-hover:  #064e3b;
  --accent-light:  rgba(6, 95, 70, 0.12);
  --accent-medium: rgba(6, 95, 70, 0.25);
  --footer-bg:     #000e0a;
  --font-head:     'Cabinet Grotesk', sans-serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --text:          #1a1a1a;
  --text-mid:      #444;
  --text-light:    #666;
  --border:        #ddd;
  --border-light:  #ece9e3;
  --bg-alt:        #f5f4f0;
  --white:         #fff;
  --radius:        8px;
  --radius-lg:     14px;
  --shadow-sm:     0 1px 6px rgba(0, 0, 0, 0.08);
  --shadow:        0 2px 18px rgba(0, 0, 0, 0.10);
  --shadow-lg:     0 6px 40px rgba(0, 0, 0, 0.16);
  --nav-h:         80px;
  --section-pad:   80px;
  --container:     1180px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 24px); font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }
address { font-style: normal; }
blockquote { quotes: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 500; }
h4 { font-size: clamp(1rem, 1.6vw, 1.25rem); font-weight: 500; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Utility ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--section-pad) 0; }
.bg-alt { background: var(--bg-alt); }
.text-center { text-align: center; }
.mt-sm { margin-top: 1.5rem; display: inline-block; }

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}
.section-heading::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-top: 10px;
}
.text-center .section-heading::after {
  margin-left: auto;
  margin-right: auto;
}
.section-intro {
  max-width: 680px;
  margin: 0 0 2.5rem;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7em 1.6em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(6,95,70,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}
.btn-sm {
  font-size: 0.9375rem;
  padding: 0.5em 1.1em;
}
.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.85em 2em;
  margin-top: 0.25rem;
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  height: var(--nav-h);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.navbar.scrolled {
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo img {
  height: 80px !important;
  width: auto;
  padding: 0;
  margin: 0;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links li a {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.4em 0.8em;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent);
  background: var(--accent-light);
}
.nav-links li a.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 0.4em 1.1em;
}
.nav-links li a.nav-cta:hover {
  background: var(--accent-hover);
  color: var(--white);
}
a.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  margin-left: 1.5rem;
  transition: background 0.2s;
}
a.nav-cta:hover {
  background: var(--accent-hover);
}

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

.nav-sentinel { height: var(--nav-h); }

/* ---- Mobile Menu ---- */
.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 910;
  opacity: 0;
  transition: opacity 0.25s;
}
.menu-backdrop.open { display: block; opacity: 1; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--white);
  z-index: 920;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-mid);
  margin-bottom: 2rem;
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: var(--accent-light); color: var(--accent); }

.mobile-nav-links li { border-bottom: 1px solid var(--border-light); }
.mobile-nav-links li:last-child { border-bottom: none; }
.mobile-nav-links li a {
  display: block;
  padding: 0.9rem 1.5rem;
  font-size: 1.3125rem !important;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.mobile-nav-links li a:hover { color: var(--accent); }

/* ---- Hero ---- */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(6, 30, 20, 0.65) 60%,
    rgba(6, 40, 26, 0.72) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 60px 24px;
  margin-left: max(200px, 12vw);
}
.hero-heading {
  color: var(--white);
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 560px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-cta { font-size: 1rem; padding: 0.8em 2em; }

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .section-heading { margin-bottom: 1.4rem; }
.about-text p { color: var(--text-mid); margin-bottom: 1rem; }
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-image-wrap:hover .about-img { transform: scale(1.03); }

/* ---- Activities ---- */
.activity-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}
.activity-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.activity-card-img-wrap {
  height: 200px;
  overflow: hidden;
}
.activity-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.activity-card:hover .activity-card-img-wrap img { transform: scale(1.06); }
.activity-card-body {
  padding: 1.2rem 1.3rem 1.4rem;
}
.activity-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.activity-card-title {
  font-size: 1.225rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-head);
}
.activity-card-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* On-site activities */
.onsite-activities {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
}
.onsite-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: var(--font-head);
}
.onsite-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
}
.onsite-list li {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
}
.onsite-list li i { color: var(--accent); font-size: 0.9375rem; }

/* Tours */
.tours-section { margin-top: 1rem; }
.tours-heading {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 1.8rem;
  font-family: var(--font-head);
}
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.tour-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.tour-card-img-wrap {
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
}
.tour-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tour-card:hover .tour-card-img-wrap img { transform: scale(1.06); }
.tour-card-body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour-card-title {
  font-size: 1.175rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-family: var(--font-head);
  color: var(--text);
}
.tour-card-body p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.1rem;
}
.tour-card-body .btn { align-self: flex-start; }

/* ---- Rooms ---- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s;
}
.room-card:hover { box-shadow: var(--shadow-lg); }
.room-card-body {
  padding: 1.5rem 1.6rem 1.8rem;
}
.room-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  font-family: var(--font-head);
}
.room-card-desc {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.65;
}
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  margin-bottom: 1.4rem;
}
.room-features li {
  display: flex;
  align-items: center;
  gap: 0.45em;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.room-features li i { color: var(--accent); font-size: 0.8rem; }
.room-card-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  background: #111;
}
.carousel-track {
  display: flex;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}
.carousel-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
  padding-bottom: 2px;
}
.carousel-btn:hover {
  background: var(--accent);
  color: var(--white);
}
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active,
.carousel-dot:hover {
  background: var(--white);
  transform: scale(1.2);
}

/* Room Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  cursor: pointer;
}
.modal {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-mid);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 3;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.modal-close:hover { background: var(--accent-light); color: var(--accent); }
.modal-inner { padding: 2rem; }
.modal-room-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-right: 2rem;
}
.modal-room-gallery {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.modal-room-gallery img { width: 100%; height: 260px; object-fit: cover; }
.modal-inner p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 1.2rem; }
.modal-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  margin-bottom: 1.5rem;
}
.modal-features li {
  display: flex;
  align-items: center;
  gap: 0.45em;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.modal-features li i { color: var(--accent); font-size: 0.8rem; }
.modal-book-btn { margin-top: 0.25rem; }

/* ---- Meals ---- */
.meals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.meals-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.meals-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.meals-image-wrap:hover .meals-img { transform: scale(1.03); }
.meals-text .section-heading { margin-bottom: 1.4rem; }
.meals-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.meals-text p { color: var(--text-mid); }
.meals-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.6rem 0 1.4rem;
}
.meals-highlight {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 0.9rem;
  text-align: center;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.meals-icon {
  font-size: 1.4rem;
  color: var(--accent);
}
.meals-highlight-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text);
}
.meals-highlight-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.4;
}
.meals-note { font-size: 0.9375rem; color: var(--text-light); margin-top: 1rem; }

/* ---- Getting Here ---- */
.getting-here-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
  margin-top: 2.5rem;
}
.transfer-step {
  display: flex;
  gap: 1.4rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}
.transfer-step:last-child { margin-bottom: 0; }
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-head);
}
.step-body { flex: 1; }
.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-head);
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.step-title i { color: var(--accent); font-size: 1rem; }
.step-body p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 0; }
.step-img {
  margin-top: 1rem;
  border-radius: var(--radius);
  width: 100%;
  max-width: 480px;
  height: 200px;
  object-fit: cover;
}

.getting-here-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { display: block; }
.map-directions-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 2rem;
}

.travel-tips {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.tips-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  color: var(--accent);
  font-family: var(--font-head);
}
.tips-list dt {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  margin-top: 0.9rem;
}
.tips-list dt:first-child { margin-top: 0; }
.tips-list dd {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-left: 0;
  padding-left: 0;
  margin-top: 0.2rem;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap { order: 1; }
.contact-sidebar { order: 2; }
.contact-sidebar .section-heading { margin-bottom: 1.6rem; }
.sidebar-block {
  margin-bottom: 2rem;
  padding-bottom: 0;
  border-bottom: none;
}
.sidebar-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-block-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-head);
}
.sidebar-block p { font-size: 0.9375rem; color: var(--text-mid); margin-bottom: 0.5rem; }
.sidebar-address { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 0.5rem; }
.sidebar-map-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sidebar-map-link:hover { color: var(--accent-hover); }

.quick-facts-list { margin-top: 0.3rem; }
.quick-facts-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9375rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  gap: 0.5rem;
}
.quick-facts-list li:last-child { border-bottom: none; }
.qf-label { color: var(--text-mid); font-weight: 500; flex-shrink: 0; }
.qf-value { color: var(--text); text-align: right; }

/* Contact Form */
.form-heading {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: var(--font-head);
}
.form-success-msg {
  background: var(--accent-light);
  border: 1px solid var(--accent-medium);
  color: var(--accent);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; gap: 1rem; }
.form-row-2 .form-group { flex: 1; }
.form-row-3 .form-group { flex: 1; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.form-group label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}
.required { 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(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6em 0.85em;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: auto;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  font-size: 1.0625rem;
  font-family: var(--font-body);
  color: var(--text-light);
  opacity: 1;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- Reviews ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.25s;
}
.review-card:hover { box-shadow: var(--shadow); }
.review-header { display: flex; align-items: center; justify-content: space-between; }
.review-stars { color: #f5a623; font-size: 0.9rem; display: flex; gap: 2px; }
.review-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.review-text::before { content: '\201C'; }
.review-text::after  { content: '\201D'; }
.review-author { display: flex; flex-direction: column; gap: 0.15rem; }
.reviewer-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.reviewer-country { font-size: 0.9375rem; color: var(--text-light); }

/* ---- Footer ---- */
.footer { background: var(--footer-bg); color: rgba(255, 255, 255, 0.7); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.footer-brand {}
.footer-logo-link img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 0.75rem;
}
.footer-tagline { font-size: 1.125rem; color: rgba(255, 255, 255, 0.55); }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav { padding-left: 100px; }
.footer-nav li a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.footer-nav li a:hover { color: var(--white); }
.footer-info {
  font-size: 0.9375rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-info p {
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin: 0;
}
.footer-info p i { font-size: 0.9375rem; color: var(--accent); }
.footer-info a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-info a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.footer-bottom p, .footer-bottom span {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

/* ===========================
   Responsive
   =========================== */

/* --- Tablet (≤ 1024px) --- */
@media (max-width: 1024px) {
  :root {
    --section-pad: 64px;
  }

  .nav-links { display: none !important; }
  a.nav-cta { display: none !important; }
  .lang-switcher-x13 { display: none !important; }
  .lang-switcher-xm12 { display: flex !important; }
  .hamburger { display: flex !important; }

  .about-grid,
  .meals-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image-wrap { order: -1; }
  .about-img,
  .meals-img { height: 340px; }

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

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

  .rooms-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

  .getting-here-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .getting-here-sidebar { position: static; }

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

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

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

/* --- Mobile (≤ 700px) --- */
@media (max-width: 700px) {
  :root {
    --section-pad: 48px;
    --nav-h: 80px;
  }

  .hero-section { min-height: 88vh; }
  .hero-content { padding: 48px 20px; margin-left: 0; }
  .hero-sub { font-size: 1rem; }

  .section-intro { font-size: 1rem; }

  .activity-cards-grid { grid-template-columns: 1fr; }
  .activity-card-img-wrap { height: 220px; }

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

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

  .form-row-2,
  .form-row-3 { flex-direction: column; }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .footer-brand { grid-column: auto; }
  .footer-nav ul { flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1.2rem; }
  .footer-nav { padding-left: 0; }

  .modal-inner { padding: 1.4rem; }
  .modal-room-gallery img { height: 200px; }

  .carousel-slide img { height: 240px; }

  .rooms-grid { max-width: 100%; }
}

/* --- Small Mobile (≤ 440px) --- */
@media (max-width: 440px) {
  .room-card-actions { flex-direction: column; }
  .room-card-actions .btn { width: 100%; justify-content: center; }

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

  .about-text .btn { width: 100%; justify-content: center; }
}

/* ---- Language Switcher ---- */
.lang-switcher-x13 {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--accent);
  border-radius: 99px;
  overflow: hidden;
  margin-left: 1rem;
}
.lang-switcher-x13 .lang-link {
  padding: 0.25rem 0.65rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.lang-switcher-x13 .lang-link:not(.lang-active):hover {
  color: var(--accent);
}
.lang-switcher-x13 .lang-active {
  background: var(--accent);
  color: #fff;
}
.lang-switcher-xm12 {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-right: 0.75rem;
}
.lang-switcher-xm12 .lang-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #999;
  text-decoration: none;
  padding: 0.15rem 0.35rem;
  border-radius: 3px;
  transition: color 0.2s;
}
.lang-switcher-xm12 .lang-active {
  color: #555;
  background: rgba(0,0,0,0.05);
}

/* ---- Footer Get in Touch ---- */
.footer-info h5 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.5rem;
}
.footer-enquiry-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.0625rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  color: rgba(255,255,255,0.55);
  font-size: 1.125rem;
  transition: color 0.2s;
}
.footer-social a:hover { color: #fff; }

.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.875rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0.5rem;
}
.footer-location {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.75rem;
}
.footer-location i {
  color: var(--accent);
  margin-right: 0.3em;
}

/* ---- Footer Lang Flags ---- */
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-lang-flags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-flag {
  opacity: 0.5;
  transition: opacity 0.2s;
  text-decoration: none;
  line-height: 0;
}
.footer-flag:hover,
.footer-flag-active {
  opacity: 1;
}

/* ---- Multi-day tour image square ---- */
.tour-card-img-wrap--square {
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
}
.tour-card-img-wrap--square img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ---- Mobile font floor (640px) ---- */
@media (max-width: 640px) {
  body { font-size: 1rem; }

  p, li, dd, dt, span, a, label, td, th, blockquote,
  .section-eyebrow,
  .section-intro,
  .activity-card-body,
  .activity-card-body p,
  .tour-card-body,
  .tour-card-body p,
  .tour-highlight li,
  .onsite-list li,
  .meals-highlight-desc,
  .meals-highlight-title,
  .meals-lead,
  .meals-note,
  .room-card-desc,
  .room-features li,
  .step-body p,
  .review-text,
  .review-body,
  .reviewer-name,
  .reviewer-country,
  .sidebar-block p,
  .sidebar-address,
  .quick-facts-list li,
  .quick-facts-value,
  .tips-list dd,
  .tips-list dt,
  .footer-nav li a,
  .footer-tagline,
  .footer-info,
  .footer-info p,
  .footer-location,
  .form-group label,
  .form-group input,
  .form-group select,
  .form-group textarea,
  .form-group input::placeholder,
  .form-group textarea::placeholder,
  .modal-inner p,
  .modal-features li,
  .btn,
  .btn-submit,
  .btn-room-cta,
  .sidebar-map-link {
    font-size: 1rem !important;
  }

  .footer-brand-name {
    font-size: 1.625rem !important;
  }

  .hero-content {
    margin-left: 24px;
    margin-right: 24px;
  }
}

.footer-nav h5 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.5rem;
}

/* Reduced top padding for specific sections */
.activities-section.section-pad,
.rooms-section.section-pad,
.meals-section.section-pad,
.reviews-section.section-pad {
  padding-top: 0.5rem;
}

/* Hero enquire button: white border + white text */
.hero-section .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}
.hero-section .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

/* Mobile menu CTA alignment */
.mobile-nav-links .nav-cta {
  display: inline-block !important;
  margin: 0.75rem 1.5rem;
  text-align: center;
  font-size: 1.25rem !important;
}
