/* ============================================================
   Sea Plus Water Chalet Resort — style.css
   Visual identity: Fraunces + Plus Jakarta Sans | Deep Rose #9f1239
   btn-radius: 50px (pill) | img-radius: 16px | section-pad: 72px
   footer-bg: #170208 (accent darkened 85%)
   ============================================================ */

/* ============================================================
   CSS Custom Properties
   ============================================================ */
html { scroll-padding-top: calc(80px + 1rem); }

:root {
  --font-heading:  'Cabinet Grotesk', 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body:     'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --accent:        #9f1239;
  --accent-hover:  #881337;
  --accent-light:  #fce7f3;

  --footer-bg:     #170208;
  --footer-text:   #a0a0b0;
  --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);

  --btn-radius:    50px;
  --img-radius:    16px;
  --max-w:         1200px;
  --navbar-h:      80px;
  --section-pad:   72px;

  --text:          #1a1a2e;
  --text-muted:    #5f6170;
  --bg:            #ffffff;
  --bg-alt:        #f8f5f6;
  --border:        #e5e0e2;
}

/* ============================================================
   Reset & Base
   ============================================================ */
html,
body {
  width:      100%;
  max-width:  100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

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

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

a {
  color:           var(--accent);
  text-decoration: none;
  transition:      color 0.2s;
}
a:hover {
  color: var(--accent-hover);
}

ul,
ol {
  list-style: none;
  padding:    0;
  margin:     0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color:       var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.1875rem; }

p {
  font-size:   1.0625rem;
  line-height: 1.6;
}

/* ============================================================
   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;
  }
}

/* ============================================================
   Section Layout
   ============================================================ */
.section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

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

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

.section-title {
  margin-bottom: 0.75rem;
}

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

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  gap:             0.5rem;
  padding:         0.875rem 2rem;
  border-radius:   var(--btn-radius);
  font-family:     var(--font-body);
  font-size:       1rem;
  font-weight:     700;
  cursor:          pointer;
  border:          2px solid transparent;
  text-decoration: none;
  transition:      background 0.2s, color 0.2s, border-color 0.2s;
  white-space:     nowrap;
}

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

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

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position:   fixed;
  top:        0;
  left:       0;
  right:      0;
  height:     var(--navbar-h);
  z-index:    1000;
  display:    flex;
  align-items: center;
  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 {
  width:      100%;
  padding:    0 120px;
  display:    flex;
  align-items: center;
}

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

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

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

.navbar:not(.scrolled) .logo-navbar {
  filter: brightness(0) invert(1);
}

.navbar-links {
  display:     flex;
  align-items: center;
  gap:         2rem;
}

.navbar-links a {
  font-size:       1.0625rem;
  font-weight:     600;
  color:           rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition:      color 0.2s;
}
.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 !important;
  padding:         0.45rem 1.1rem;
  border-radius:   var(--btn-radius);
  font-weight:     700;
  text-decoration: none;
  transition:      background 0.2s;
}
.navbar-links .nav-cta a:hover {
  background: var(--accent-hover);
  color:      #fff !important;
}

/* Mobile-always-scrolled */
@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);
  }

  .logo-navbar {
    filter: none !important;
  }

  .navbar-links {
    display: none;
  }
}

/* ============================================================
   Nav Sentinel (invisible IntersectionObserver target)
   ============================================================ */
.nav-sentinel {
  position:       absolute;
  top:            0;
  left:           0;
  width:          1px;
  height:         1px;
  pointer-events: none;
  opacity:        0;
  visibility:     hidden;
}

/* ============================================================
   Hamburger Button
   ============================================================ */
.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;
}

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

.navbar:not(.scrolled) .hamburger-bar {
  background: #fff;
}

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

  .hamburger-bar {
    background: var(--text);
  }
}

/* ============================================================
   Mobile Menu
   ============================================================ */
.mobile-menu {
  display:       none;
  position:      fixed;
  top:           var(--navbar-h);
  left:          0;
  right:         0;
  max-height:    calc(100vh - var(--navbar-h) - 2rem);
  overflow-y:    auto;
  background:    #fff;
  padding:       1.25rem 1.5rem 1.5rem;
  box-shadow:    0 12px 36px rgba(0, 0, 0, 0.14);
  z-index:       999;
  flex-direction: column;
  border-bottom-left-radius:  var(--btn-radius);
  border-bottom-right-radius: var(--btn-radius);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-close {
  align-self:      flex-end;
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  width:           36px;
  height:          36px;
  background:      transparent;
  border:          1px solid var(--border);
  border-radius:   50%;
  font-size:       1.25rem;
  cursor:          pointer;
  color:           var(--text-muted);
  margin-bottom:   0.75rem;
  transition:      background 0.2s;
}
.mobile-menu-close:hover {
  background: var(--bg-alt);
}

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

.mobile-nav-links a {
  display:         block;
  padding:         0.75rem 0;
  font-size:       1.0625rem;
  font-weight:     600;
  color:           var(--text);
  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;
  color:         var(--accent);
  font-weight:   700;
}

.mobile-menu-backdrop {
  display:             none;
  position:            fixed;
  inset:               0;
  top:                 var(--navbar-h);
  background:          rgba(17, 24, 39, 0.25);
  backdrop-filter:     blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index:             998;
}

.mobile-menu-backdrop.open {
  display: block;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  position:        relative;
  min-height:      100vh;
  display:         flex;
  align-items:     flex-start;
  padding-top:     clamp(6rem, 14vh, 10rem);
  padding-bottom:  4rem;
  overflow:        hidden;
  color:           #fff;
}

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

.hero-overlay {
  position:   absolute;
  inset:      0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index:    1;
}

@media (max-width: 900px) {
  .hero-overlay {
    background: rgba(0, 0, 0, 0.40);
  }
}

.hero-content {
  position:  relative;
  z-index:   2;
  max-width: 680px;
}

.hero-eyebrow {
  display:        inline-block;
  font-size:      1.0625rem;
  font-weight:    600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:          rgba(255, 255, 255, 0.85);
  margin-bottom:  0.75rem;
}

.hero-title {
  font-family:   var(--font-heading);
  font-size:     clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight:   700;
  line-height:   1.15;
  color:         #fff;
  margin-bottom: 1rem;
  text-shadow:   0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size:     1.125rem;
  line-height:   1.6;
  color:         rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width:     560px;
}

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

@media (max-width: 600px) {
  .hero-cta-row {
    flex-direction: column;
    align-items:    flex-start;
  }
}

/* ============================================================
   About Section
   ============================================================ */
.about-grid {
  display:               grid;
  grid-template-columns: 1fr 1.4fr;
  gap:                   3.5rem;
  align-items:           center;
}

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

.about-img-wrap {
  border-radius: var(--img-radius);
  overflow:      hidden;
  line-height:   0;
}

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

@media (max-width: 768px) {
  .about-img-wrap img {
    height: 280px;
  }
}

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

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

.about-text p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   Rooms / Chalets Section
   ============================================================ */
.section-header {
  margin-bottom: 2.5rem;
}

.villas-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   2rem;
  align-items:           start;
}

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

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

.villa-card {
  display:        flex;
  flex-direction: column;
  height:         100%;
  background:     var(--bg);
  border-radius:  var(--img-radius);
  border:         1px solid var(--border);
  overflow:       hidden;
  box-shadow:     0 2px 12px rgba(0, 0, 0, 0.05);
  transition:     box-shadow 0.2s;
}
.villa-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
}

/* ============================================================
   Carousel
   ============================================================ */
.carousel {
  position:        relative;
  overflow:        hidden;
  border-radius:   0;
  background:      #111;
  aspect-ratio:    4 / 3;
  flex-shrink:     0;
}

.carousel-track {
  display:    flex;
  height:     100%;
  transition: transform 0.4s ease;
}

.carousel-slide {
  flex:        0 0 100%;
  height:      100%;
  overflow:    hidden;
}

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

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

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

.carousel-dots {
  position:   absolute;
  bottom:     0.75rem;
  left:       0;
  right:      0;
  display:    flex;
  justify-content: center;
  gap:        0.4rem;
  z-index:    5;
}

.carousel-dot {
  width:          9px;
  height:         9px;
  border-radius:  50%;
  background:     rgba(255, 255, 255, 0.5);
  border:         none;
  cursor:         pointer;
  padding:        0;
  transition:     background 0.2s, transform 0.2s;
  flex-shrink:    0;
}
.carousel-dot.active {
  background: #fff;
  transform:  scale(1.2);
}

/* ============================================================
   Villa Card Info
   ============================================================ */
.villa-view-link {
  display:       inline-block;
  align-self:    center;
  margin:        1rem 0 1.25rem;
  padding:       0.5rem 1rem;
  font-size:     1rem;
  font-weight:   600;
  color:         var(--accent);
  background:    transparent;
  border:        1px solid var(--accent);
  border-radius: var(--btn-radius);
  cursor:        pointer;
  transition:    background 0.2s, color 0.2s;
  text-decoration: none;
}
.villa-view-link:hover {
  background: var(--accent);
  color:      #fff;
}

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

.villa-name {
  font-family:   var(--font-heading);
  font-size:     1.375rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 0.5rem;
}

.villa-desc {
  font-size:     1.0625rem;
  color:         var(--text-muted);
  line-height:   1.6;
  margin-bottom: 0.75rem;
  text-align:    justify;
}

.villa-specs {
  margin-bottom: 1rem;
}

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

.villa-specs li i {
  color:      var(--accent);
  font-size:  0.9375rem;
  width:      1.1em;
  text-align: center;
  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-weight:     600;
  font-size:       1rem;
  cursor:          pointer;
  text-decoration: none;
  transition:      background 0.2s;
}
.btn-room-cta:hover {
  background: var(--accent-hover);
  color:      #fff;
}

/* ============================================================
   Room Detail Modals
   ============================================================ */
.modal {
  display:         none;
  position:        fixed;
  inset:           0;
  z-index:         2000;
  background:      rgba(0, 0, 0, 0.6);
  align-items:     center;
  justify-content: center;
  padding:         1.5rem;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset:    0;
  z-index:  0;
}

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

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

.modal h3 {
  font-family:   var(--font-heading);
  font-size:     1.5rem;
  margin-bottom: 1rem;
  color:         var(--text);
  padding-right: 2rem;
}

.modal p {
  font-size:     1.0625rem;
  color:         var(--text-muted);
  line-height:   1.6;
  margin-bottom: 1rem;
  text-align:    justify;
}

.modal-amenities {
  margin-bottom: 1.5rem;
}

.modal-amenities h4 {
  font-size:     1rem;
  font-weight:   700;
  margin-bottom: 0.5rem;
  color:         var(--text);
}

.modal-amenities ul {
  display:               grid;
  grid-template-columns: 1fr 1.4fr;
  gap:                   0.35rem 1rem;
}

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

.modal-amenities li i {
  color:      var(--accent);
  font-size:  0.9rem;
  flex-shrink: 0;
}

.modal-room-cta {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  padding:         0.875rem 2rem;
  background:      var(--accent);
  color:           #fff;
  border-radius:   var(--btn-radius);
  font-weight:     700;
  font-size:       1rem;
  text-decoration: none;
  transition:      background 0.2s;
}
.modal-room-cta:hover {
  background: var(--accent-hover);
  color:      #fff;
}

/* ============================================================
   Activities Section
   ============================================================ */
.activities-banner-img {
  width:           100%;
  height:          380px;
  object-fit:      cover;
  border-radius:   var(--img-radius);
  display:         block;
  margin-bottom:   2rem;
}

@media (max-width: 768px) {
  .activities-banner-img {
    height: 220px;
  }
}

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

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

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

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

.activity-card {
  background:    var(--bg);
  border-radius: var(--img-radius);
  border:        1px solid var(--border);
  overflow:      hidden;
  transition:    box-shadow 0.2s;
}
.section-alt .activity-card {
  background: #fff;
}
.activity-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
}

.activity-card-img {
  width:       100%;
  height:      200px;
  object-fit:  cover;
  display:     block;
}

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

.activity-card-body h3 {
  font-family:   var(--font-heading);
  font-size:     1.1875rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 0.5rem;
  display:       flex;
  align-items:   center;
  gap:           0.5rem;
}

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

.activity-card-body p {
  font-size:   1.0625rem;
  color:       var(--text-muted);
  line-height: 1.55;
}

/* ---- On-Site Activities ---- */
.onsite-heading {
  font-family:   var(--font-heading);
  font-size:     1.625rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 1.5rem;
}

.onsite-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   1rem;
  margin-bottom:         3rem;
}

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

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

.onsite-item {
  display:       flex;
  align-items:   center;
  gap:           0.75rem;
  padding:       0.875rem 1rem;
  background:    var(--bg);
  border-radius: 12px;
  border:        1px solid var(--border);
  font-size:     1.0625rem;
  font-weight:   500;
  color:         var(--text);
  transition:    border-color 0.2s;
}
.section-alt .onsite-item {
  background: #fff;
}
.onsite-item:hover {
  border-color: var(--accent);
}

.onsite-item i {
  color:      var(--accent);
  font-size:  1rem;
  width:      1.25rem;
  text-align: center;
  flex-shrink: 0;
}

/* ---- Tour Blocks ---- */
.tours-heading {
  font-family:   var(--font-heading);
  font-size:     1.625rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 0.5rem;
}

.tours-intro {
  font-size:     1.0625rem;
  color:         var(--text-muted);
  margin-bottom: 2rem;
}

.tour-blocks {
  display:        flex;
  flex-direction: column;
  gap:            3rem;
}

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

@media (max-width: 768px) {
  .tour-block {
    grid-template-columns: 1fr;
    gap:                   1.5rem;
  }
}

.tour-block-img-left .tour-block-img {
  order: 0;
}
.tour-block-img-left .tour-block-text {
  order: 1;
}

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

@media (max-width: 768px) {
  .tour-block-img-right .tour-block-img {
    order: 0;
  }
  .tour-block-img-right .tour-block-text {
    order: 1;
  }
}

.tour-block-img {
  border-radius: var(--img-radius);
  overflow:      hidden;
  line-height:   0;
}

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

@media (max-width: 768px) {
  .tour-block-img img {
    height: 220px;
  }
}

.tour-block-text h3 {
  font-family:   var(--font-heading);
  font-size:     1.375rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 0.75rem;
}

.tour-block-text p {
  font-size:     1.0625rem;
  color:         var(--text-muted);
  line-height:   1.6;
  margin-bottom: 1rem;
  text-align:    justify;
}

.tour-highlights {
  margin-top: 0.75rem;
}

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

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

/* Sipadan dive sites 2-column layout */
.sipadan-sites {
  margin-top: 1rem;
}

.sipadan-sites h4 {
  font-size:     1rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 0.75rem;
}

.sipadan-site-row {
  display:    grid;
  grid-template-columns: 1fr 1.5fr;
  gap:        0.5rem 1rem;
  margin-bottom: 0.35rem;
  font-size:  1rem;
  align-items: baseline;
}

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

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

/* ============================================================
   Meals Section
   ============================================================ */
.meals-layout {
  display:               grid;
  grid-template-columns: 1fr 1.4fr;
  gap:                   3rem;
  align-items:           start;
}

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

.meals-img-wrap {
  border-radius: var(--img-radius);
  overflow:      hidden;
  line-height:   0;
}

.meals-img-wrap img {
  width:         100%;
  height:        380px;
  object-fit:    cover;
  border-radius: var(--img-radius);
  display:       block;
}

@media (max-width: 768px) {
  .meals-img-wrap img {
    height: 250px;
  }
}

.meals-text h2 {
  margin-bottom: 0.75rem;
}

.meals-text p {
  color:         var(--text-muted);
  margin-bottom: 1rem;
  text-align:    justify;
}

.meals-breakdown {
  margin-top: 1.5rem;
}

.meal-row {
  display:       flex;
  align-items:   flex-start;
  gap:           1rem;
  padding:       1rem 0;
  border-bottom: 1px solid var(--border);
}

.meal-row:last-child {
  border-bottom: none;
}

.meal-icon {
  width:           40px;
  height:          40px;
  border-radius:   50%;
  background:      var(--accent-light);
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
}

.meal-icon i {
  color:     var(--accent);
  font-size: 1rem;
}

.meal-content h4 {
  font-size:     1.1875rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 0.25rem;
}

.meal-content p {
  font-size:     1rem;
  color:         var(--text-muted);
  line-height:   1.5;
  margin:        0;
}

/* ============================================================
   Getting Here Section
   ============================================================ */
.getting-here-grid {
  display:               grid;
  grid-template-columns: 1.6fr 1fr;
  gap:                   3rem;
  align-items:           start;
}

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

.getting-here-main h2 {
  margin-bottom: 1rem;
}

.transfer-block {
  margin-bottom: 2rem;
}

.transfer-block h3 {
  font-family:   var(--font-heading);
  font-size:     1.1875rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 0.5rem;
  display:       flex;
  align-items:   center;
  gap:           0.5rem;
}

.transfer-block h3 i {
  color:     var(--accent);
  font-size: 1rem;
}

.transfer-block p {
  font-size:   1.0625rem;
  color:       var(--text-muted);
  line-height: 1.6;
  text-align:  justify;
}

.transfer-block ul {
  margin-top: 0.5rem;
}

.transfer-block ul li {
  display:     flex;
  align-items: baseline;
  gap:         0.5rem;
  font-size:   1.0625rem;
  color:       var(--text-muted);
  margin-bottom: 0.4rem;
}

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

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

.sidebar-img-wrap {
  border-radius: var(--img-radius);
  overflow:      hidden;
  line-height:   0;
}

.sidebar-img-wrap img {
  width:         100%;
  height:        240px;
  object-fit:    cover;
  border-radius: var(--img-radius);
  display:       block;
}

.maps-btn {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             0.5rem;
  padding:         0.75rem 1.5rem;
  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-btn i {
  font-size: 1rem;
}

.maps-embed-wrapper {
  border-radius: var(--img-radius);
  overflow:      hidden;
  line-height:   0;
}

.maps-embed-wrapper iframe {
  width:         100%;
  height:        250px;
  border:        none;
  display:       block;
  border-radius: var(--img-radius);
}

.travel-tips-card {
  background:    var(--bg-alt);
  border-radius: var(--img-radius);
  padding:       1.5rem;
  border:        1px solid var(--border);
}

.travel-tips-card h4 {
  font-family:   var(--font-heading);
  font-size:     1.1875rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 1rem;
  display:       flex;
  align-items:   center;
  gap:           0.5rem;
}

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

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

.travel-tip {
  display:     flex;
  align-items: flex-start;
  gap:         0.75rem;
}

.travel-tip i {
  color:       var(--accent);
  font-size:   1rem;
  flex-shrink: 0;
  width:       1.25rem;
  text-align:  center;
  margin-top:  0.15rem;
}

.travel-tip p {
  font-size:   1rem;
  color:       var(--text-muted);
  line-height: 1.5;
  margin:      0;
}

/* ============================================================
   Contact Section
   ============================================================ */
.contact-grid {
  display:               grid;
  grid-template-columns: 1.4fr 1fr;
  gap:                   3rem;
  align-items:           start;
}

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

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

.form-success {
  background:    #f0fdf4;
  border-left:   4px solid #16a34a;
  color:         #14532d;
  padding:       1rem 1.25rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  font-size:     1rem;
}

.form-error {
  background:    #fef2f2;
  border-left:   4px solid #dc2626;
  color:         #7f1d1d;
  padding:       1rem 1.25rem;
  margin-bottom: 0.5rem;
  border-radius: var(--btn-radius);
}
.form-error strong {
  display:       block;
  margin-bottom: 0.25rem;
}
.form-error p {
  font-size: 1rem;
  margin:    0;
}

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

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

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

.form-full {
  grid-column: 1 / -1;
}

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

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

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  width:         100%;
  padding:       0.75rem 1rem;
  font-family:   var(--font-body);
  font-size:     1rem;
  color:         var(--text);
  background:    var(--bg);
  border:        1px solid var(--border);
  border-radius: 10px;
  transition:    border-color 0.2s, box-shadow 0.2s;
  outline:       none;
  appearance:    auto;
}

input::placeholder,
textarea::placeholder {
  color: #b0b0be;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow:   0 0 0 3px rgba(159, 18, 57, 0.12);
}

input.field-error,
select.field-error,
textarea.field-error {
  border-color: #dc2626;
}

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

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

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

/* Honeypot */
.form-honey {
  display: none !important;
  visibility: hidden;
}

/* ---- Contact Sidebar Info Cards ---- */
.contact-sidebar {
  display:        flex;
  flex-direction: column;
  gap:            1.25rem;
}

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

.card-eyebrow {
  font-size:      0.9375rem;
  font-weight:    700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:          var(--accent);
  margin-bottom:  0.5rem;
  display:        flex;
  align-items:    center;
  gap:            0.4rem;
}

.card-eyebrow i {
  font-size: 0.9375rem;
}

.info-card h4 {
  font-size:     1.1875rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 0.5rem;
}

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

.quick-facts-list {
  display:        flex;
  flex-direction: column;
  gap:            0.5rem;
  margin-top:     0.25rem;
}

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

.quick-facts-list li i {
  color:       var(--accent);
  font-size:   0.9rem;
  flex-shrink: 0;
  width:       1rem;
  text-align:  center;
  margin-top:  0.2rem;
}

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

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

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

.review-card {
  background:    var(--bg);
  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;
}

.section-alt .review-card {
  background: #fff;
}

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

.review-stars {
  color:         var(--accent);
  font-size:     1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.review-body {
  font-size:   1.0625rem;
  color:       var(--text-muted);
  line-height: 1.6;
  flex:        1;
  margin:      0;
  text-align:  justify;
}

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

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

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

/* ============================================================
   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-heading);
  font-size:     1.5rem;
  font-weight:   700;
  color:         var(--footer-head);
  margin-bottom: 0.75rem;
}

.footer-description {
  color:       var(--footer-text);
  font-size:   1rem;
  line-height: 1.65;
  max-width:   42rem;
  margin:      0 0 1rem 0;
}

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

.footer-location-line i {
  color:      var(--accent);
  font-size:  0.9rem;
  flex-shrink: 0;
}

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

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

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

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

.footer-enquiry {
  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:hover {
  opacity: 0.7;
  color:   var(--footer-head);
}
.footer-enquiry i {
  font-size: 1rem;
}

.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);
  text-decoration: none;
  font-size:       1rem;
  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;
}

/* ============================================================
   Defensive Link Styling
   ============================================================ */
.navbar-logo,
.navbar-links a,
.mobile-menu a,
.btn,
.btn-room-cta,
.btn-submit,
.villa-view-link,
.modal-room-cta,
.maps-btn,
.footer-links a,
.footer-enquiry,
.footer-social a,
.mobile-nav-links a {
  text-decoration: none;
}

/* ============================================================
   Utility
   ============================================================ */
.visually-hidden {
  position:  absolute;
  width:     1px;
  height:    1px;
  padding:   0;
  margin:    -1px;
  overflow:  hidden;
  clip:      rect(0, 0, 0, 0);
  border:    0;
}

.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }

/* Push content below fixed navbar */
body > *:first-child:not(nav) {
  padding-top: var(--navbar-h);
}

/* Hero is full-bleed: no top-padding compensation needed */
.hero {
  margin-top: 0;
}

/* Smooth anchor scroll offset for fixed navbar */
:target::before {
  content:        '';
  display:        block;
  height:         calc(var(--navbar-h) + 1rem);
  margin-top:     calc(-1 * (var(--navbar-h) + 1rem));
  pointer-events: none;
}

/* ========= AUDIT FIXES ========= */
.logo-navbar { height: 80px !important; padding: 0 !important; margin: 0 !important; filter: brightness(0) invert(1); transition: filter 0.25s; }
.navbar.scrolled .logo-navbar { filter: none; }
@media (max-width: 900px) { .logo-navbar { filter: none; } }
.navbar-logo { margin-right: auto; }
.navbar-inner { display: flex; align-items: center; height: 80px; width: 100%; padding-left: 120px; padding-right: 120px; gap: 1rem; }
@media (max-width: 900px) { .navbar-inner { padding-left: 1rem; padding-right: 1rem; } }
.navbar-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.navbar-links a { color: rgba(255,255,255,0.9); text-decoration: none; font-size: 1.0625rem; font-weight: 600; padding: 0.4rem 0.75rem; }
.navbar.scrolled .navbar-links a { color: #6b7280; }
.navbar-links a:hover { color: rgba(255,255,255,0.7); }
.navbar.scrolled .navbar-links a:hover { color: var(--accent); }
.nav-cta a { background: var(--accent); color: #fff !important; padding: 0.4rem 1.125rem; border-radius: 6px; font-size: 1rem; font-weight: 700; }
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-start; overflow: hidden; margin-top: -80px; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right,rgba(0,0,0,0.55) 0%,rgba(0,0,0,0.35) 55%,rgba(0,0,0,0.15) 100%); z-index: 1; }
@media (max-width: 900px) { .hero-overlay { background: linear-gradient(to bottom,rgba(0,0,0,0.3) 0%,rgba(0,0,0,0.5) 60%,rgba(0,0,0,0.65) 100%); } }
.hero-content { position: relative; z-index: 2; padding-top: 33.33vh; padding-bottom: 4rem; margin-left: max(100px, 6vw); margin-right: 200px; text-align: left; max-width: none; }
@media (max-width: 900px) { .hero-content { margin-left: 1.5rem; margin-right: 1.5rem; } }
.hero-heading { font-size: clamp(2.5rem, 6vw, 4.25rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 1rem; }
@media (min-width: 901px) { .hero-heading { white-space: nowrap; } }
.hero-sub { font-size: clamp(1.0625rem, 1.5vw, 1.25rem); color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 52ch; }
.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: 6px; font-size: 1.0625rem; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.hero-cta--primary { background: var(--accent); color: #fff; }
.hero-cta--primary:hover { background: #881337; }
.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; }
.nav-sentinel { height: 80px; opacity: 0; pointer-events: none; }
/* Lang switcher */
.lang-switcher-desktop { flex-shrink: 0; }
.lang-switcher-x13 { display: flex; align-items: center; margin-left: 18px; border: 1px solid rgba(159,18,57,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; }
.lang-switcher-x13 .lang-active { color: #fff; background: rgba(159,18,57,0.15); }
.lang-switcher-x21 { display: flex; align-items: center; gap: 0.5rem; margin-left: 18px; 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); }
.lang-switcher-x22 { display: flex; align-items: center; margin-left: 18px; 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: #6b7280; }
.navbar.scrolled .lang-switcher-x22 .lang-active { color: #1a1a1a; background: rgba(0,0,0,0.08); }
.lang-switcher-xm11,.lang-switcher-xm12,.lang-switcher-xm14 { display: flex; gap: 0.375rem; font-size: 0.6875rem; }
.lang-switcher-xm11 a,.lang-switcher-xm12 a,.lang-switcher-xm14 a { color: rgba(255,255,255,0.6); text-decoration: none; }
.lang-switcher-xm11 .lang-active,.lang-switcher-xm12 .lang-active,.lang-switcher-xm14 .lang-active { color: #fff; }
@media (max-width: 900px) { .lang-switcher-xm14 a { color: #6b7280; } .lang-switcher-xm14 .lang-active { color: #1a1a1a; } }
.lang-switcher-x13 a:hover,.lang-switcher-x21 a:hover,.lang-switcher-x22 a:hover { color: #fff; }
.navbar.scrolled .lang-switcher-x13 a:hover,.navbar.scrolled .lang-switcher-x21 a:hover,.navbar.scrolled .lang-switcher-x22 a:hover { color: var(--accent); }
.navbar-right-mobile { display: none; flex-direction: column; align-items: center; gap: 2px; }
@media (max-width: 1023px) { .navbar-right-mobile { display: flex; } .navbar-links { display: none !important; } .lang-switcher-desktop { display: none !important; } }
@media (min-width: 1024px) { .lang-switcher-mobile { display: none !important; } }
/* Footer extras */
.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; transition: opacity 0.2s; text-decoration: none; }
.footer-flag:hover,.footer-flag.lang-active { opacity: 1; }
.flag-svg { display: block; width: 28px; height: 18px; }
/* Contact */
.contact-card { background: var(--surface, #f9fafb); border: 1px solid var(--border, #e5e7eb); border-radius: 10px; padding: 1.25rem 1.375rem; margin-bottom: 1rem; }
.contact-card h4 { font-size: 1.0625rem; margin: 0 0 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: #6b7280; 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: #6b7280; }
.quick-facts-sidebar li i { color: var(--accent); width: 1.25rem; text-align: center; flex-shrink: 0; }
.form-row--2 { display: grid; grid-template-columns: 1fr 1.4fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row--2 { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 1rem; font-weight: 600; }
.form-field input,.form-field select,.form-field textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid #e5e7eb; border-radius: 6px; font-size: 1rem; }
.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(159,18,57,0.12); }
.form-field textarea { resize: vertical; min-height: 110px; }
.btn-submit { display: inline-flex; padding: 0.875rem 2.25rem; background: var(--accent); color: #fff; border: none; border-radius: 6px; font-weight: 600; font-size: 1rem; cursor: pointer; }
.btn-submit:hover { background: #881337; }
.form-reassurance { font-size: 0.9375rem; color: #6b7280; 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: 6px; }
.form-success { background: #f0fdf4; border-left: 4px solid #16a34a; color: #14532d; padding: 1rem 1.25rem; margin-bottom: 1.5rem; border-radius: 6px; }
.booking-form { display: flex; flex-direction: column; gap: 1.25rem; }
.optional-label { font-size: 0.9375rem; font-weight: 400; color: #6b7280; }
.mobile-cta a { display: block; margin-top: 1.25rem; padding: 0.875rem; background: var(--accent); color: #fff !important; text-align: center; border-radius: 6px; font-weight: 600; text-decoration: none; }
/* Mobile font floor */
@media (max-width: 768px) {
  .villa-specs li,.villa-desc,.room-features li { font-size: 1rem; }
  .tour-block-desc,.tour-block-highlights li { font-size: 1rem; }
  .onsite-item { font-size: 1rem; }
  .travel-tips-list li { font-size: 1rem; }
  .modal-dialog p,.modal-dialog li { font-size: 1rem; }
  .review-body,.review-name { font-size: 1rem; }
  .section-eyebrow,.section-intro { font-size: 1rem; }
  .optional-label { font-size: 1rem; }
  .activity-card-body p { font-size: 1rem; }
  .contact-card p,.contact-card address,.quick-facts-sidebar li { font-size: 1rem; }
  .btn,.btn-room-cta { font-size: 1rem; }
  .footer-copyright { font-size: 0.9375rem; }
  .form-reassurance { font-size: 0.9375rem; }
  .review-country { font-size: 0.9375rem; }
}

/* Fix 1: Navbar items one line */
.navbar-links li { white-space: nowrap; }
.navbar-links { flex-wrap: nowrap; }

/* Fix 3: Modal list simple bullets + padding */
.modal-dialog ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1.5rem; }
.modal-dialog li { padding: 0.2rem 0; }

/* Fix 5: Activity card images same size */
.activity-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius, 10px) var(--radius, 10px) 0 0;
}
.activity-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fix 6: Sipadan sites fullwidth 3-col */
.sipadan-sites-fullwidth {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.site-card {
  padding: 1.25rem;
  background: var(--surface, #f9fafb);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 10px;
}
.site-card strong {
  display: block;
  font-size: 1.0625rem;
  color: var(--text, #1a1a1a);
  margin-bottom: 0.375rem;
}
.site-card p {
  font-size: 1rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 768px) {
  .sipadan-sites-fullwidth { grid-template-columns: 1fr; }
}

/* Fix 7: Meals grid image on right */
.meals-grid--img-right {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.meals-grid--img-right .meals-text { order: 1; }
.meals-grid--img-right .meals-image { order: 2; }
@media (max-width: 900px) {
  .meals-grid--img-right { grid-template-columns: 1fr; }
  .meals-grid--img-right .meals-image { order: 1; }
  .meals-grid--img-right .meals-text { order: 2; }
}

/* Fix 10: Location icon in accent color */
.footer-location i { color: var(--accent) !important; }

/* Speedboat image fill right column */
.getting-here-sidebar img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--img-radius);
}

/* Meals notes below image */
.meals-notes-below {
  margin-top: 1.25rem;
}
.meals-notes-below p {
  font-size: 1rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

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

/* Activity card titles - smaller with icon spacing */
.activity-card h3 {
  font-size: 1.1875rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.activity-card h3 i {
  margin-right: 10px;
}

/* Snorkeling banner padding */
img[src*="snorkeling-sea-turtle"] {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Modal list - simple disc bullets only */
.modal-dialog ul {
  list-style: disc !important;
  padding-left: 1.25rem;
}
.modal-dialog ul li {
  list-style-type: disc !important;
  padding: 0.15rem 0;
}
.modal-dialog ul li::marker {
  font-size: 0.75rem;
}
.modal-dialog ul li i {
  display: none;
}

/* Navbar logo 125px from left */
.navbar-inner {
  padding-left: 75px !important;
}
@media (max-width: 900px) {
  .navbar-inner {
    padding-left: 1rem !important;
  }
}
