/* ==========================================================
   Dayang Resort Semporna — style.css
   Font: General Sans | Accent: Electric Blue #059669
   ========================================================== */

/* ==========================================================
   1. CSS VARIABLES
   ========================================================== */
:root {
  --font:           'Cabinet Grotesk', 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --accent:         #059669;
  --accent-hover:   #047857;
  --accent-light:   rgba(5, 150, 105, 0.12);
  --text:           #111827;
  --text-muted:     #6b7280;
  --bg:             #ffffff;
  --bg-alt:         #f9fafb;
  --border:         #e5e7eb;
  --navbar-h:       80px;
  --navbar-height:   80px;
  --nav-h:          80px;
  --max-w:          1200px;
  --btn-radius:     6px;
  --img-radius:     10px;
  --section-pad:    72px;
  --footer-bg:      #050e23;
  --footer-text:    rgba(255, 255, 255, 0.65);
  --footer-head:    #ffffff;
  --footer-line:    rgba(255, 255, 255, 0.10);
  --footer-chip:    rgba(255, 255, 255, 0.10);
  --footer-chip-h:  rgba(255, 255, 255, 0.18);
}

/* ==========================================================
   2. RESET + GLOBAL BASE
   ========================================================== */
html,
body {
  width:      100%;
  max-width:  100vw;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  max-width:  100%;
}

img,
video,
iframe {
  max-width: 100%;
  height:    auto;
}

body {
  margin:      0;
  padding:     0;
  font-family: var(--font);
  font-size:   1.0625rem;
  line-height: 1.6;
  color:       var(--text);
  background:  var(--bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:    var(--font);
  font-weight:    700;
  line-height:    1.25;
  margin-top:     0;
  margin-bottom:  0.75rem;
  color:          var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.1875rem; }
h5 { font-size: 1rem; }

p {
  margin-top:    0;
  margin-bottom: 1rem;
  font-size:     1.0625rem;
  line-height:   1.65;
  color:         var(--text);
}

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

a:hover {
  text-decoration: none;
}

ul,
ol {
  margin-top:     0;
  padding-left:   1.25rem;
}

/* ==========================================================
   3. CONTAINER
   ========================================================== */
.container {
  width:         100%;
  max-width:     var(--max-w);
  margin-left:   auto !important;
  margin-right:  auto !important;
  padding-left:  1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container {
    padding-left:  2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1200px) {
  .container {
    padding-left:  3rem;
    padding-right: 3rem;
  }
}

/* ==========================================================
   4. BUTTONS
   ========================================================== */
.btn {
  display:          inline-block;
  padding:          0.8125rem 1.75rem;
  background:       var(--accent);
  color:            #fff;
  font-family:      var(--font);
  font-size:        1rem;
  font-weight:      700;
  line-height:      1;
  border:           2px solid var(--accent);
  border-radius:    var(--btn-radius);
  cursor:           pointer;
  text-decoration:  none;
  transition:       background 0.2s, border-color 0.2s, color 0.2s;
  white-space:      nowrap;
}

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

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

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

.btn.btn-tour {
  margin-top: 1.25rem;
}

.btn.btn-submit {
  display:       inline-flex;
  align-items:   center;
  width:         auto;
  align-self:    flex-start;
  padding:       0.875rem 2rem;
  font-size:     1rem;
  font-weight:   700;
  border-radius: var(--btn-radius);
}

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

/* ==========================================================
   5. NAV SENTINEL (must be invisible, no layout impact)
   ========================================================== */
.nav-sentinel {
  height:         var(--nav-h);
  pointer-events: none;
  opacity:        0;
}

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

.navbar.scrolled {
  background:              rgba(255, 255, 255, 0.97);
  box-shadow:              0 2px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter:         blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar-inner {
  display:         flex;
  align-items:     center;
  height:          100%;
  width:           100%;
  max-width:       none;
  padding-left:    120px;
  padding-right:   120px;
  gap:             1rem;
}

@media (max-width: 900px) {
  .navbar-inner {
    padding-left:  1rem;
    padding-right: 1rem;
  }
}

.navbar-logo {
  display:         flex;
  align-items:     center;
  text-decoration: none;
  flex-shrink:     0;
}

.logo-navbar {
  height:      80px !important;
  width:       auto;
  padding:     0;
  margin:      0;
  object-fit:  contain;
  display:     block;
}

.navbar-links {
  display:     flex;
  align-items: center;
  gap:         0.25rem;
  list-style:  none;
  margin:      0;
  padding:     0;
}

.navbar-links a {
  display:         block;
  padding:         0.5rem 0.75rem;
  color:           rgba(255, 255, 255, 0.92);
  font-size:       1.0625rem;
  font-weight:     600;
  text-decoration: none;
  border-radius:   var(--btn-radius);
  transition:      color 0.2s;
  white-space:     nowrap;
}

.navbar-links a:hover {
  color: #fff;
}

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

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

.navbar-links .nav-cta a {
  background:    var(--accent);
  color:         #fff;
  padding:       0.45rem 1.125rem;
  border-radius: var(--btn-radius);
  font-weight:   700;
  transition:    background 0.2s;
}

.navbar-links .nav-cta a:hover {
  background: var(--accent-hover);
  color:      #fff;
}

/* Force solid background on mobile */
@media (max-width: 900px) {
  .navbar {
    background:              rgba(255, 255, 255, 0.97) !important;
    box-shadow:              0 1px 0 var(--border);
    backdrop-filter:         blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .navbar-links {
    display: none;
  }
}

/* ==========================================================
   7. HAMBURGER
   ========================================================== */
.hamburger {
  display:          none;
  flex-direction:   column;
  justify-content:  center;
  align-items:      center;
  gap:              5px;
  width:            44px;
  height:           44px;
  padding:          0;
  background:       transparent;
  border:           none;
  cursor:           pointer;
  border-radius:    var(--btn-radius);
  flex-shrink:      0;
}

.hamburger span,
.hamburger-bar {
  display:       block;
  width:         22px;
  height:        2px;
  background:    var(--text);
  border-radius: 2px;
  transition:    background 0.2s;
}

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

/* ==========================================================
   8. MOBILE MENU + BACKDROP
   ========================================================== */
.mobile-menu {
  position:                 fixed;
  top:                      var(--navbar-h);
  right:                    0;
  width:                    min(320px, 88vw);
  max-height:               calc(100vh - var(--navbar-h) - 2rem);
  height:                   auto;
  overflow-y:               auto;
  background:               #fff;
  z-index:                  950;
  transform:                translateX(110%);
  transition:               transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  padding:                  24px 28px 32px;
  display:                  flex;
  flex-direction:           column;
  gap:                      0;
  border-bottom-left-radius: 12px;
  box-shadow:               -8px 12px 36px rgba(0, 0, 0, 0.15);
}

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

.mobile-menu-close {
  align-self:      flex-end;
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  width:           36px;
  height:          36px;
  background:      transparent;
  border:          none;
  font-size:       1.25rem;
  color:           var(--text-muted);
  cursor:          pointer;
  border-radius:   var(--btn-radius);
  margin-bottom:   0.75rem;
  padding:         0;
}

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

.mobile-nav-links {
  list-style: none;
  margin:     0;
  padding:    0;
  display:    flex;
  flex-direction: column;
  gap:        0;
}

.mobile-nav-links a {
  display:         block;
  padding:         0.75rem 0;
  color:           var(--text);
  font-size:       1.0625rem;
  font-weight:     600;
  text-decoration: none;
  border-bottom:   1px solid var(--border);
  transition:      color 0.2s;
}

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

.mobile-nav-links li:last-child a {
  border-bottom: none;
}

.mobile-nav-cta a {
  display:         inline-block;
  margin-top:      1rem;
  padding:         0.75rem 1.5rem;
  background:      var(--accent);
  color:           #fff !important;
  border-radius:   var(--btn-radius);
  text-align:      center;
  font-weight:     700;
  border-bottom:   none !important;
}

.mobile-nav-cta a:hover {
  background: var(--accent-hover);
  color:      #fff !important;
}

.menu-backdrop {
  position:                fixed;
  inset:                   var(--navbar-h) 0 0 0;
  background:              rgba(17, 24, 39, 0.30);
  backdrop-filter:         blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index:                 940;
  opacity:                 0;
  pointer-events:          none;
  transition:              opacity 0.25s;
}

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

/* ==========================================================
   9. HERO SECTION
   ========================================================== */
.hero {
  position:            relative;
  min-height:          100vh;
  background-size:     cover;
  background-position: center top;
  background-repeat:   no-repeat;
  display:             flex;
  align-items:         flex-start;
  overflow:            hidden;
}

/* Desktop-only top gradient for text readability */
@media (min-width: 901px) {
  .hero::before {
    content:    '';
    position:   absolute;
    inset:      0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.30) 50%,
      rgba(0, 0, 0, 0.10) 100%
    );
    z-index:    1;
  }
}

.hero-overlay {
  position: absolute;
  inset:    0;
  background: rgba(0, 0, 0, 0.38);
  z-index:  1;
}

@media (min-width: 901px) {
  .hero-overlay {
    display: none;
  }
}

.hero-content {
  position:       relative;
  z-index:        2;
  padding-bottom: 4rem;
}

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

.hero-tagline,
.hero-sub {
  font-size:     clamp(1.0625rem, 1.5vw, 1.25rem);
  color:         #ffffff;
  margin-bottom: 2rem;
  line-height:   1.6;
  max-width:     52ch;
}

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

/* ==========================================================
   10. SECTION BASE
   ========================================================== */
.section {
  padding-top:    var(--section-pad);
  padding-bottom: var(--section-pad);
}

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

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

/* ==========================================================
   11. ABOUT SECTION
   ========================================================== */
.about-section {
  background: var(--bg);
}

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

.about-text h2 {
  margin-bottom: 1.25rem;
}

.about-text p {
  margin-bottom: 1.125rem;
  line-height:   1.7;
}

.about-text .btn {
  margin-top: 0.5rem;
}

.about-img img {
  width:         100%;
  border-radius: var(--img-radius);
  display:       block;
  object-fit:    cover;
}

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

  .about-img {
    order: -1;
  }
}

/* ==========================================================
   12. ROOMS SECTION
   ========================================================== */
.rooms-section {
  background: var(--bg-alt);
}

.rooms-section h2 {
  margin-bottom: 0.75rem;
}

.rooms-grid {
  display: grid;
  gap:     2.5rem;
  margin-top: 2rem;
}

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

.rooms-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

/* Villa card */
.villa-card {
  display:        flex;
  flex-direction: column;
  height:         100%;
  background:     var(--bg);
  border-radius:  var(--img-radius);
  overflow:       hidden;
  box-shadow:     0 2px 12px rgba(0, 0, 0, 0.07);
  transition:     box-shadow 0.2s;
}

.villa-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

/* Carousel */
.carousel {
  position:   relative;
  overflow:   hidden;
  flex-shrink: 0;
}

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

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

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

.carousel-btn {
  position:                   absolute;
  top:                        50%;
  transform:                  translateY(-50%);
  width:                      40px;
  height:                     40px;
  background:                 rgba(0, 0, 0, 0.45);
  color:                      #fff;
  border:                     none;
  border-radius:              50%;
  font-size:                  0.9375rem;
  cursor:                     pointer;
  z-index:                    10;
  opacity:                    1;
  display:                    flex;
  align-items:                center;
  justify-content:            center;
  touch-action:               manipulation;
  -webkit-tap-highlight-color: transparent;
  min-width:                  44px;
  min-height:                 44px;
  transition:                 background 0.2s;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.68);
}

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

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

.carousel-dots {
  display:         flex;
  justify-content: center;
  gap:             6px;
  padding:         0.625rem 0 0.5rem;
}

.carousel-dot {
  width:         9px;
  height:        9px;
  border-radius: 50%;
  background:    var(--border);
  border:        none;
  padding:       0;
  cursor:        pointer;
  transition:    background 0.2s;
}

.carousel-dot.active {
  background: var(--accent);
}

/* View room details button */
.villa-view-link {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  padding:         0.75rem 1rem;
  font-size:       0.9375rem;
  font-weight:     600;
  font-family:     var(--font);
  color:           var(--accent);
  background:      transparent;
  border:          1px solid var(--accent);
  border-radius:   var(--btn-radius);
  cursor:          pointer;
  text-decoration: none;
  transition:      background 0.2s, color 0.2s;
}

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

/* Villa info */
.villa-info {
  display:        flex;
  flex-direction: column;
  flex:           1;
  padding:        0 1.25rem 1.25rem;
}

.villa-info h3 {
  font-size:     1.25rem;
  margin-bottom: 0.75rem;
}

.villa-specs {
  list-style:    none;
  margin:        0 0 1rem 0;
  padding:       0;
  display:       flex;
  flex-direction: column;
  gap:           0.45rem;
}

.villa-specs li {
  display:     flex;
  align-items: center;
  gap:         0.5rem;
  font-size:   1rem;
  color:       var(--text-muted);
}

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

.btn-room-cta {
  margin-top:      auto;
  display:         block;
  width:           100%;
  text-align:      center;
  padding:         0.875rem;
  background:      var(--accent);
  color:           #fff;
  border:          none;
  border-radius:   var(--btn-radius);
  font-family:     var(--font);
  font-size:       1rem;
  font-weight:     700;
  cursor:          pointer;
  text-decoration: none;
  transition:      background 0.2s;
}

.btn-room-cta:hover {
  background: var(--accent-hover);
}

/* ==========================================================
   13. ACTIVITIES SECTION
   ========================================================== */
.activities-section {
  background:  var(--bg);
  padding-top: var(--section-pad);
}

.activities-section .container:first-child {
  padding-bottom: 0;
}

/* Activities banner — full bleed */
.activities-banner {
  width:        100%;
  margin:       1.5rem 0 0;
  overflow:     hidden;
  max-height:   340px;
}

.activities-banner img {
  width:        100%;
  height:       340px;
  object-fit:   cover;
  display:      block;
}

/* Activities intro — full width below banner */
.activities-intro-wrap {
  margin-top: 0;
  padding-top: 1.75rem;
}

.activities-intro {
  font-size:    1.0625rem;
  color:        var(--text-muted);
  line-height:  1.7;
  max-width:    100%;
  text-align:   justify;
  margin-bottom: 0;
}

/* A: Core Activity Cards */
.core-activities-grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   1.5rem;
  margin-top:            2.5rem;
}

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

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

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

.activity-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.09);
}

.activity-card-img {
  overflow: hidden;
}

.activity-card-img img {
  width:        100%;
  aspect-ratio: 4 / 3;
  object-fit:   cover;
  display:      block;
  transition:   transform 0.3s;
}

.activity-card:hover .activity-card-img img {
  transform: scale(1.04);
}

.activity-card-body {
  padding: 1.125rem;
}

.activity-card-body h3 {
  font-size:     1.125rem;
  margin-bottom: 0.625rem;
  display:       flex;
  align-items:   center;
  gap:           0.5rem;
  color:         var(--text);
}

.activity-card-body h3 i {
  color:      var(--accent);
  font-size:  1.0625rem;
  flex-shrink: 0;
}

.activity-card-body p {
  font-size:    1rem;
  color:        var(--text-muted);
  margin:       0;
  line-height:  1.6;
}

/* C: On-site activities */
.onsite-activities-wrap {
  background:    var(--bg-alt);
  border:        1px solid var(--border);
  border-radius: var(--img-radius);
  padding:       1.75rem 2rem;
  margin-top:    2.5rem;
}

.onsite-activities-wrap h3 {
  font-size:     1.25rem;
  margin-bottom: 1.125rem;
  color:         var(--text);
}

.onsite-activities-list {
  list-style:            none;
  margin:                0;
  padding:               0;
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   0.75rem 1.5rem;
}

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

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

@media (max-width: 768px) {
  .onsite-activities-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .onsite-activities-list {
    grid-template-columns: 1fr;
  }
}

/* B: Tour blocks */
.tour-blocks-wrap {
  margin-top:    3rem;
  display:       flex;
  flex-direction: column;
  gap:           3.5rem;
}

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

.tour-block-even {
  direction: rtl;
}

.tour-block-even > * {
  direction: ltr;
}

@media (max-width: 900px) {
  .tour-block,
  .tour-block-even {
    grid-template-columns: 1fr;
    direction:             ltr;
    gap:                   1.75rem;
  }

  .tour-block-even .tour-block-img {
    order: -1;
  }
}

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

.tour-block-text h3 {
  font-size:     1.375rem;
  margin-bottom: 0.875rem;
  color:         var(--text);
}

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

.tour-highlights {
  list-style: none;
  margin:     1rem 0 0;
  padding:    0;
  display:    flex;
  flex-direction: column;
  gap:        0.625rem;
}

.tour-highlights li {
  display:     flex;
  align-items: baseline;
  gap:         0.6rem;
  font-size:   1rem;
  line-height: 1.55;
  color:       var(--text-muted);
}

.tour-highlights li i {
  color:      var(--accent);
  font-size:  1rem;
  width:      1rem;
  flex-shrink: 0;
  text-align: center;
  transform:  translateY(0.15em);
}

.tour-note {
  font-size:     0.9375rem;
  color:         var(--text-muted);
  font-style:    italic;
  margin-top:    1rem;
  line-height:   1.6;
}

/* Sipadan dive sites — 2-column layout */
.sipadan-sites {
  margin:   1rem 0;
  display:  flex;
  flex-direction: column;
  gap:      0.75rem;
}

.site-row {
  display:   grid;
  grid-template-columns: 200px 1fr;
  gap:       1rem;
  font-size: 1rem;
  line-height: 1.55;
}

.site-row strong {
  color:       var(--text);
  font-weight: 700;
}

.site-row span {
  color: var(--text-muted);
}

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

/* ==========================================================
   14. GETTING HERE SECTION
   ========================================================== */
.getting-there-section {
  background: var(--bg-alt);
}

.getting-grid {
  display:               grid;
  grid-template-columns: 1fr 380px;
  gap:                   3.5rem;
  align-items:           start;
  margin-top:            1.5rem;
}

@media (max-width: 1024px) {
  .getting-grid {
    grid-template-columns: 1fr 320px;
    gap:                   2.5rem;
  }
}

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

.getting-content h3 {
  font-size:     1.25rem;
  margin-top:    1.75rem;
  margin-bottom: 0.75rem;
  color:         var(--text);
}

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

.getting-content p {
  font-size:    1.0625rem;
  color:        var(--text-muted);
  line-height:  1.7;
}

.flight-routes {
  list-style: none;
  margin:     0.5rem 0 1.25rem;
  padding:    0;
  display:    flex;
  flex-direction: column;
  gap:        0.5rem;
}

.flight-routes li {
  display:     flex;
  align-items: baseline;
  gap:         0.6rem;
  font-size:   1rem;
  color:       var(--text-muted);
  line-height: 1.55;
}

.flight-routes li i {
  color:      var(--accent);
  font-size:  0.75rem;
  width:      1rem;
  flex-shrink: 0;
  text-align: center;
  transform:  translateY(0.1em);
}

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

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

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

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

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

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

/* Info cards (used in getting-here sidebar and contact sidebar) */
.info-card {
  background:    var(--bg);
  border:        1px solid var(--border);
  border-radius: var(--img-radius);
  padding:       1.25rem 1.5rem;
}

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

.info-card h4 i {
  color:      var(--accent);
  font-size:  1rem;
  flex-shrink: 0;
}

.info-card p {
  font-size:    1rem;
  color:        var(--text-muted);
  margin-bottom: 0.625rem;
  line-height:  1.6;
}

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

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

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

.travel-tips-list li {
  display:     flex;
  align-items: baseline;
  gap:         0.6rem;
  font-size:   1rem;
  color:       var(--text-muted);
  line-height: 1.55;
}

.travel-tips-list li i {
  color:      var(--accent);
  font-size:  0.9375rem;
  width:      1.125rem;
  flex-shrink: 0;
  text-align: center;
  transform:  translateY(0.1em);
}

/* ==========================================================
   15. MEALS SECTION
   ========================================================== */
.meals-section {
  background: var(--bg);
}

.meals-grid {
  display:               grid;
  grid-template-columns: 1fr 360px;
  gap:                   3.5rem;
  align-items:           start;
  margin-top:            1.5rem;
}

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

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

  .meals-img {
    order: -1;
  }
}

.meals-content h3 {
  font-size:     1.25rem;
  margin-top:    1.75rem;
  margin-bottom: 0.75rem;
  color:         var(--text);
}

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

.meals-content p {
  color: var(--text-muted);
}

.meals-img img {
  width:         100%;
  border-radius: var(--img-radius);
  display:       block;
  position:      sticky;
  top:           calc(var(--navbar-h) + 1.5rem);
  object-fit:    cover;
}

/* Meals table */
.meals-table-wrap {
  margin:        1rem 0 1.75rem;
  border-radius: var(--img-radius);
  overflow:      hidden;
  border:        1px solid var(--border);
}

.meals-table {
  width:           100%;
  border-collapse: collapse;
  font-size:       1rem;
}

.meals-table td {
  padding:       0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color:         var(--text-muted);
}

.meals-table tr:last-child td {
  border-bottom: none;
}

.meals-table td:first-child {
  font-weight:  600;
  color:        var(--text);
  display:      flex;
  align-items:  center;
  gap:          0.5rem;
}

.meals-table td:first-child i {
  color:       var(--accent);
  width:       1.125rem;
  text-align:  center;
  font-size:   0.9375rem;
  flex-shrink: 0;
}

.meals-table tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.018);
}

/* Cuisine blocks */
.cuisine-blocks {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   1.25rem;
  margin:                1.25rem 0;
}

@media (max-width: 768px) {
  .cuisine-blocks {
    grid-template-columns: 1fr;
  }
}

.cuisine-block {
  background:    var(--bg-alt);
  border:        1px solid var(--border);
  border-radius: var(--btn-radius);
  padding:       1.125rem;
}

.cuisine-block h4 {
  font-size:     1rem;
  margin-bottom: 0.5rem;
  color:         var(--accent);
}

.cuisine-block p {
  font-size:    1rem;
  color:        var(--text-muted);
  margin:       0;
  line-height:  1.6;
}

/* Dietary list */
.dietary-list {
  list-style: none;
  margin:     0.75rem 0;
  padding:    0;
  display:    flex;
  flex-direction: column;
  gap:        0.625rem;
}

.dietary-list li {
  display:     flex;
  align-items: baseline;
  gap:         0.6rem;
  font-size:   1rem;
  color:       var(--text-muted);
  line-height: 1.55;
}

.dietary-list li i {
  color:      var(--accent);
  font-size:  0.9375rem;
  flex-shrink: 0;
  width:      1.125rem;
  text-align: center;
}

/* ==========================================================
   16. CONTACT SECTION
   ========================================================== */
.contact-section {
  background: var(--bg-alt);
}

.contact-grid {
  display:               grid;
  grid-template-columns: 1fr 360px;
  gap:                   3.5rem;
  align-items:           start;
  margin-top:            1.5rem;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 300px;
    gap:                   2.5rem;
  }
}

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

/* Form banners */
.form-banner {
  display:       flex;
  align-items:   center;
  gap:           0.875rem;
  padding:       1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: var(--btn-radius);
  font-size:     1rem;
  line-height:   1.5;
}

.form-banner i {
  font-size:  1.25rem;
  flex-shrink: 0;
}

.form-success {
  background:  #d1fae5;
  border-left: 4px solid #059669;
  color:       #065f46;
}

.form-success i { color: #059669; }

.form-error {
  background:  #fef2f2;
  border-left: 4px solid #dc2626;
  color:       #7f1d1d;
}

.form-error i { color: #dc2626; }

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

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

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

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

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

.req {
  color:       #dc2626;
  font-weight: 700;
  margin-left: 0.15rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width:         100%;
  padding:       0.6875rem 0.875rem;
  border:        1px solid var(--border);
  border-radius: var(--btn-radius);
  font-family:   var(--font);
  font-size:     1rem;
  color:         var(--text);
  background:    var(--bg);
  transition:    border-color 0.2s, box-shadow 0.2s;
  line-height:   1.5;
}

.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.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #dc2626;
  background:   #fef2f2;
}

.field-error {
  font-size: 0.9375rem;
  color:     #dc2626;
  display:   block;
}

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

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

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

/* Boat times list */
.boat-times-list {
  list-style: none;
  margin:     0.375rem 0 0.75rem;
  padding:    0;
  display:    flex;
  flex-direction: column;
  gap:        0.5rem;
}

.boat-times-list li {
  font-size:   1rem;
  color:       var(--text-muted);
  line-height: 1.5;
}

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

/* Quick facts list */
.quick-facts-list {
  list-style: none;
  margin:     0.375rem 0 0;
  padding:    0;
  display:    flex;
  flex-direction: column;
  gap:        0.625rem;
}

.quick-facts-list li {
  display:     flex;
  align-items: baseline;
  gap:         0.6rem;
  font-size:   1rem;
  color:       var(--text-muted);
  line-height: 1.55;
}

.quick-facts-list li i {
  color:      var(--accent);
  font-size:  0.9375rem;
  width:      1.125rem;
  flex-shrink: 0;
  text-align: center;
  transform:  translateY(0.1em);
}

.quick-facts-list li span {
  flex: 1;
}

/* ==========================================================
   17. REVIEWS SECTION
   ========================================================== */
.reviews-section {
  background: var(--bg);
}

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

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

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

.review-card {
  background:    var(--bg-alt);
  border:        1px solid var(--border);
  border-radius: var(--img-radius);
  padding:       1.5rem;
  display:       flex;
  flex-direction: column;
  opacity:       0;
  transform:     translateY(16px);
  transition:    opacity 0.4s ease, transform 0.4s ease;
}

.review-card.visible {
  opacity:   1;
  transform: translateY(0);
}

.review-stars {
  color:         #f59e0b;
  font-size:     1rem;
  margin-bottom: 0.875rem;
  letter-spacing: 2px;
}

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

.review-author {
  display:        flex;
  flex-direction: row;
  align-items:    baseline;
  gap:            0.5rem;
  padding-top:    0.75rem;
  border-top:     1px solid var(--border);
}

.review-name {
  font-size:   1rem;
  font-weight: 700;
  color:       var(--text);
}

.review-country {
  font-size:   1rem;
  font-weight: 400;
  color:       var(--text-muted);
}

/* ==========================================================
   18. FOOTER
   ========================================================== */
.footer {
  background: var(--footer-bg);
  color:      var(--footer-text);
  padding:    4rem 0 1.5rem;
  font-size:  1rem;
}

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

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

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

.footer-desc,
.footer-description {
  color:       #ffffff;
  font-size:   1rem;
  line-height: 1.65;
  max-width:   42rem;
  margin-bottom: 0.75rem;
}

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

.footer-location i {
  color: var(--footer-text);
}

.footer-copy {
  font-size: 0.9375rem;
  color:     rgba(255, 255, 255, 0.40);
  margin:    0;
}

.footer-col-heading {
  font-size:      1.125rem;
  font-weight:    700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--footer-head);
  margin-bottom:  1.25rem;
  margin-top:     0;
}

.footer-nav-links {
  list-style: none;
  margin:     0;
  padding:    0;
}

.footer-nav-links li {
  margin-bottom: 0.75rem;
}

.footer-nav-links a {
  color:           var(--footer-head);
  text-decoration: none;
  font-size:       1rem;
  transition:      opacity 0.15s;
}

.footer-nav-links a:hover {
  opacity: 0.7;
}

.footer-enquiry-link {
  color:           var(--footer-head);
  font-size:       1rem;
  font-weight:     700;
  text-decoration: none;
  display:         inline-flex;
  align-items:     center;
  gap:             0.4rem;
  margin-bottom:   1.25rem;
}

.footer-enquiry-link:hover {
  opacity: 0.75;
  color:   var(--footer-head);
}

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

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

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

.footer-divider {
  border:     none;
  height:     1px;
  background: var(--footer-line);
  margin:     1.5rem 0;
}

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

/* ==========================================================
   19. MODALS
   ========================================================== */
.modal {
  display:         none;
  position:        fixed;
  inset:           0;
  z-index:         2000;
  align-items:     center;
  justify-content: center;
  padding:         1.5rem;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position:   absolute;
  inset:      0;
  background: rgba(0, 0, 0, 0.60);
  cursor:     pointer;
}

.modal-dialog {
  position:     relative;
  background:   #fff;
  border-radius: var(--img-radius);
  padding:      2rem 2.25rem;
  max-width:    560px;
  width:        100%;
  max-height:   90vh;
  overflow-y:   auto;
  z-index:      1;
  box-shadow:   0 24px 64px rgba(0, 0, 0, 0.22);
}

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

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

.modal-dialog h3 {
  font-size:     1.375rem;
  margin-bottom: 1rem;
  padding-right: 2rem;
}

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

.modal-specs {
  list-style: none;
  margin:     0 0 1.5rem;
  padding:    0;
  display:    flex;
  flex-direction: column;
  gap:        0.5rem;
}

.modal-specs li {
  display:     flex;
  align-items: center;
  gap:         0.5rem;
  font-size:   1rem;
  color:       var(--text-muted);
}

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

.modal-cta {
  display:         inline-block;
  text-decoration: none;
  border-radius:   var(--btn-radius);
}

/* ==========================================================
   20. TEXT DECORATION: NONE (mandatory list — do not consolidate)
   ========================================================== */
.navbar-logo {
  text-decoration: none;
}

.navbar-links a {
  text-decoration: none;
}

.mobile-menu a {
  text-decoration: none;
}

.mobile-nav-links a {
  text-decoration: none;
}

.btn {
  text-decoration: none;
}

.btn-room-cta {
  text-decoration: none;
}

.btn.btn-submit {
  text-decoration: none;
}

.villa-view-link {
  text-decoration: none;
}

.modal-cta {
  text-decoration: none;
}

.maps-btn {
  text-decoration: none;
}

.footer-nav-links a {
  text-decoration: none;
}

.footer-enquiry-link {
  text-decoration: none;
}

.footer-social a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* ==========================================================
   21. UTILITIES
   ========================================================== */
.visually-hidden {
  position:   absolute;
  width:      1px;
  height:     1px;
  overflow:   hidden;
  clip:       rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ==========================================================
   22. RESPONSIVE ADJUSTMENTS
   ========================================================== */

/* Tablet and below */
@media (max-width: 1024px) {
  :root {
    --section-pad: 56px;
  }

  .getting-sidebar {
    position: static;
  }

  .contact-sidebar {
    position: static;
  }

  .meals-img img {
    position: static;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-pad: 48px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }

  .hero {
    min-height: 70vh;
    padding-top: clamp(5rem, 18vh, 8rem);
  }

  .hero-tagline {
    font-size: 1rem;
  }

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

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

  .activities-banner {
    max-height: 220px;
  }

  .activities-banner img {
    height: 220px;
  }

  .tour-block,
  .tour-block-even {
    grid-template-columns: 1fr;
    direction:             ltr;
  }

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

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

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

  .cuisine-blocks {
    grid-template-columns: 1fr;
  }

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

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

  .meals-img {
    order: -1;
  }

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

  .getting-sidebar {
    position: static;
  }

  .contact-sidebar {
    position: static;
  }

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

  .modal-dialog {
    padding: 1.5rem;
  }

  .onsite-activities-wrap {
    padding: 1.25rem;
  }

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

/* Very small screens */
@media (max-width: 480px) {
  :root {
    --section-pad: 40px;
  }

  .info-card {
    padding: 1rem;
  }

  .hero-cta-row .btn {
    width: 100%;
    text-align: center;
  }
}

/* Logo filter */
.logo-navbar {
  filter: brightness(0) invert(1);
  transition: filter 0.25s;
}
.navbar.scrolled .logo-navbar {
  filter: brightness(0) invert(0.5);
}
@media (max-width: 900px) {
  .logo-navbar { filter: brightness(0) invert(0.5); }
}

/* Navbar logo margin-right auto */
.navbar-logo { margin-right: auto; }

/* Nav link hover transparent */
.navbar-links a:hover,
.nav-links a:hover { color: rgba(255,255,255,0.7); }

/* Hero img tag structure */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-start; overflow: hidden; margin-top: calc(-1 * var(--nav-h)); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; }
.hero-content { position: relative; z-index: 2; padding-top: 33.33vh; padding-bottom: 4rem; margin-left: max(100px, 6vw); margin-right: 200px; }
@media (max-width: 900px) { .hero-content { margin-left: 1.5rem; margin-right: 1.5rem; padding-top: 33.33vh; } }
@media (min-width: 901px) { .hero-heading { white-space: nowrap; } }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-cta { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 2rem; border-radius: var(--btn-radius); font-size: 1.0625rem; font-weight: 600; text-decoration: none; transition: background 0.2s, color 0.2s; }
.hero-cta--primary { background: var(--accent); color: #fff; }
.hero-cta--primary:hover { background: var(--accent-hover); color: #fff; }
.hero-cta--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.hero-cta--outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* Language switcher styles */
.lang-switcher-desktop { flex-shrink: 0; }
.lang-switcher-x13 { display: flex; align-items: center; gap: 0; margin-left: 18px; flex-shrink: 0; border: 1px solid rgba(5,150,105,0.5); border-radius: 20px; overflow: hidden; }
.lang-switcher-x13 a { font-size: 0.875rem; padding: 0.25rem 0.75rem; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s, background 0.2s; }
.lang-switcher-x13 a:hover { color: #fff; }
.lang-switcher-x13 .lang-active { color: #fff; background: rgba(5,150,105,0.15); }
.navbar.scrolled .lang-switcher-x13 { border-color: rgba(5,150,105,0.3); }
.navbar.scrolled .lang-switcher-x13 a { color: var(--text-muted); }
.navbar.scrolled .lang-switcher-x13 .lang-active { color: var(--text); background: rgba(5,150,105,0.08); }

.lang-switcher-x21 { display: flex; align-items: center; gap: 0.5rem; margin-left: 18px; flex-shrink: 0; font-size: 0.9375rem; }
.lang-switcher-x21 a { color: rgba(255,255,255,0.7); text-decoration: none; }
.lang-switcher-x21 .lang-active { color: #fff; }
.lang-switcher-x21 .lang-divider { color: rgba(255,255,255,0.3); }
.navbar.scrolled .lang-switcher-x21 a { color: var(--text-muted); }
.navbar.scrolled .lang-switcher-x21 .lang-active { color: var(--text); }

.lang-switcher-x22 { display: flex; align-items: center; gap: 0; margin-left: 18px; flex-shrink: 0; background: rgba(255,255,255,0.1); border-radius: 20px; overflow: hidden; }
.lang-switcher-x22 a { font-size: 0.875rem; padding: 0.25rem 0.75rem; color: rgba(255,255,255,0.7); text-decoration: none; }
.lang-switcher-x22 .lang-active { color: #fff; background: rgba(255,255,255,0.15); }
.navbar.scrolled .lang-switcher-x22 { background: rgba(0,0,0,0.05); }
.navbar.scrolled .lang-switcher-x22 a { color: var(--text-muted); }
.navbar.scrolled .lang-switcher-x22 .lang-active { color: var(--text); background: rgba(0,0,0,0.08); }

.lang-switcher-xm11 { display: flex; gap: 0.375rem; font-size: 0.6875rem; }
.lang-switcher-xm11 a { color: rgba(255,255,255,0.6); text-decoration: none; }
.lang-switcher-xm11 .lang-active { color: #fff; }
.navbar.scrolled .lang-switcher-xm11 a { color: var(--text-muted); }
.navbar.scrolled .lang-switcher-xm11 .lang-active { color: var(--text); }
@media (max-width: 900px) { .lang-switcher-xm11 a { color: var(--text-muted); } .lang-switcher-xm11 .lang-active { color: var(--text); } }

.lang-switcher-xm12 { display: flex; gap: 0.375rem; font-size: 0.6875rem; margin-right: 0.5rem; }
.lang-switcher-xm12 a { color: rgba(255,255,255,0.6); text-decoration: none; }
.lang-switcher-xm12 .lang-active { color: #fff; }

.lang-switcher-xm14 { display: flex; gap: 0.375rem; font-size: 0.6875rem; }
.lang-switcher-xm14 a { color: rgba(255,255,255,0.6); text-decoration: none; }
.lang-switcher-xm14 .lang-active { color: #fff; }

.navbar-right-mobile { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
@media (max-width: 1023px) { .navbar-right-mobile { display: flex; } .navbar-links, .nav-links { display: none; } .lang-switcher-desktop { display: none !important; } }
@media (min-width: 1024px) { .lang-switcher-mobile { display: none !important; } }

/* Footer lang + flag */
.footer-lang { display: flex; gap: 0.75rem; }
.footer-flag { display: inline-block; opacity: 0.75; transition: opacity 0.2s; text-decoration: none; }
.footer-flag:hover, .footer-flag.lang-active { opacity: 1; }
.flag-svg { display: block; }

/* Footer enquiry */
.footer-enquiry { color: var(--footer-head); font-size: 1.0625rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 1.25rem; }
.footer-enquiry:hover { opacity: 0.7; }

/* Footer copyright centered */
.footer-divider { border: none; height: 1px; background: var(--footer-line); margin: 1.5rem 0; }
.footer-copyright { text-align: center; font-size: 0.9375rem; color: var(--footer-text); margin: 0; }

/* Contact card aliases */
.contact-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--img-radius); padding: 1.25rem 1.375rem; margin-bottom: 1rem; }
.contact-card h4 { font-size: 1.0625rem; margin-bottom: 0.625rem; display: flex; align-items: center; gap: 0.5rem; }
.contact-card h4 i { color: var(--accent); }
.contact-card p, .contact-card address { font-size: 1rem; color: var(--text-muted); margin: 0; font-style: normal; line-height: 1.55; }
.quick-facts-sidebar { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.quick-facts-sidebar li { display: flex; align-items: center; gap: 0.625rem; font-size: 1rem; color: var(--text-muted); }
.quick-facts-sidebar li i { color: var(--accent); width: 1.25rem; text-align: center; flex-shrink: 0; }

/* Villa actions */
.villa-actions { display: flex; gap: 0.75rem; margin-top: auto; align-items: stretch; }
.villa-actions .btn-room-cta { flex: 1; display: inline-flex; align-items: center; justify-content: center; }

/* Tour block grid fix */
.tour-block { grid-template-columns: 1fr 1.4fr; }
.tour-block-even, .tour-block--img-right { grid-template-columns: 1.4fr 1fr; }
.tour-block-image, .tour-block-img { min-width: 0; overflow: hidden; }
.tour-block-text, .tour-block-content { min-width: 0; overflow-wrap: break-word; padding: 2rem; }

/* Review card animation */
.review-card { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.review-card.visible { opacity: 1; transform: translateY(0); }

/* Mobile menu transform */
.mobile-menu { transform: translateX(100%); transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1); }
.mobile-menu.open { transform: translateX(0); }
.mobile-cta a { display: block; margin-top: 1.25rem; padding: 0.875rem; background: var(--accent); color: #fff; text-align: center; border-radius: var(--btn-radius); font-weight: 600; text-decoration: none; }
.menu-backdrop { opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.menu-backdrop.open { opacity: 1; pointer-events: auto; }

/* Footer social */
.footer-social { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: var(--footer-chip); display: inline-flex; align-items: center; justify-content: center; color: var(--footer-head); text-decoration: none; font-size: 1rem; transition: background 0.2s; }
.footer-social a:hover { background: var(--footer-chip-h); }

/* Hamburger display */
.hamburger { display: flex; }

/* Form field/row aliases for standard audit form pattern */
.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
}

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

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

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

.required-asterisk {
  color:       var(--accent);
  margin-left: 0.2rem;
  font-weight: 700;
}

.optional-label {
  font-size:   0.9375rem;
  font-weight: 400;
  color:       var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width:         100%;
  padding:       0.75rem 1rem;
  border:        1px solid var(--border);
  border-radius: var(--btn-radius);
  font-size:     1rem;
  color:         var(--text);
  background:    var(--bg);
  font-family:   var(--font);
  transition:    border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline:      none;
  border-color: var(--accent);
  box-shadow:   0 0 0 3px rgba(5, 150, 105, 0.12);
}

.form-field textarea {
  resize:     vertical;
  min-height: 110px;
}

.btn-submit {
  display:       inline-flex;
  width:         auto;
  align-self:    flex-start;
  padding:       0.875rem 2.25rem;
  background:    var(--accent);
  color:         #fff;
  border:        none;
  border-radius: var(--btn-radius);
  font-weight:   600;
  font-size:     1rem;
  cursor:        pointer;
  transition:    background 0.2s;
  font-family:   var(--font);
}

.btn-submit:hover { background: var(--accent-hover); }

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

.form-error {
  background:    #fef2f2;
  border-left:   4px solid #dc2626;
  color:         #7f1d1d;
  padding:       1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: var(--btn-radius);
}

.form-error strong { display: block; margin-bottom: 0.25rem; }
.form-error p { font-size: 1rem; margin: 0; }

.form-success {
  background:    #f0fdf4;
  border-left:   4px solid #16a34a;
  color:         #14532d;
  padding:       1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: var(--btn-radius);
}

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

/* Sipadan dive sites - 2 column full width */
.sipadan-sites-fullwidth {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .sipadan-sites-fullwidth { grid-template-columns: 1fr; }
}

.sipadan-sites-fullwidth .site-row {
  padding: 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--img-radius);
}

.sipadan-sites-fullwidth .site-row strong {
  display: block;
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.sipadan-sites-fullwidth .site-row span {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Meals sidebar - image + table stacked */
.meals-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
  overflow: hidden;
}

.meals-sidebar .meals-img img {
  width: 100%;
  border-radius: var(--img-radius);
  display: block;
}

.meals-sidebar .meals-table-wrap {
  min-width: 0;
  overflow: hidden;
}

.meals-sidebar .meals-table {
  width: 100%;
  table-layout: fixed;
}

.meals-sidebar .meals-table td {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Mobile fixes */
@media (max-width: 768px) {
  /* Tour blocks single column on mobile */
  .tour-block,
  .tour-block-odd,
  .tour-block-even,
  .tour-block--img-right {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
  }
  .tour-block-even > .tour-block-text { order: 2; }
  .tour-block-even > .tour-block-img { order: 1; }
  .tour-block-odd > .tour-block-img { order: 1; }
  .tour-block-odd > .tour-block-text { order: 2; }

  /* Meals section overflow fix */
  .meals-grid { grid-template-columns: 1fr !important; }
  .meals-content,
  .meals-sidebar,
  .meals-table-wrap,
  .meals-table { max-width: 100%; overflow-x: auto; }
  .cuisine-blocks { grid-template-columns: 1fr !important; }

  /* Mobile navbar padding fix */
  .navbar-inner {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Mobile font floor overrides */
  .villa-specs li { font-size: 1rem; }
  .modal-specs li { font-size: 1rem; }
  .optional-label { font-size: 1rem; }
  .info-card-eyebrow { font-size: 1rem; }
  .tour-note { font-size: 1rem; }
  .req { font-size: 1rem; }
  .opt { font-size: 1rem; }
  .cuisine-block h4 { font-size: 1rem; }
  .site-row strong { font-size: 1rem; }
}
