/* ==========================================================
   Pavalintang Resort — style.css
   Font: General Sans (Fontshare) | Accent: Forest Emerald #059669
   ========================================================== */

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

:root {
  --font-heading:       'Cabinet Grotesk', 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body:          '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;

  --footer-bg:          #00160f;
  --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);

  --nav-h:              68px;
  --max-w:              1200px;
  --section-pad:        80px;
  --btn-radius:         8px;
  --img-radius:         12px;
}

/* ----------------------------------------------------------
   RESET / 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 {
  font-family:  var(--font-body);
  font-size:    1.0625rem;
  line-height:  1.6;
  color:        var(--text);
  background:   var(--bg);
  margin:       0;
  padding:      0;
}

h1,
h2,
h3,
h4 {
  font-family:  var(--font-heading);
  font-weight:  700;
  line-height:  1.2;
  margin:       0 0 1rem;
  color:        var(--text);
}

p {
  margin:      0 0 1rem;
  font-size:   1.0625rem;
  line-height: 1.65;
}

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

ul,
ol {
  margin:  0;
  padding: 0;
}

a {
  text-decoration: none;
  color:           inherit;
  transition:      color 0.2s;
}

a:hover {
  text-decoration: none;
}

/* ----------------------------------------------------------
   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 BASE
   ---------------------------------------------------------- */
.section {
  padding: var(--section-pad) 0;
}

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

.section-title {
  font-size:    2.25rem;
  margin-bottom: 1rem;
}

.section-intro {
  font-size:   1.0625rem;
  color:       var(--text-muted);
  max-width:   680px;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
}

/* ----------------------------------------------------------
   NAVBAR
   ---------------------------------------------------------- */
.navbar {
  position:   fixed;
  top:        0;
  left:       0;
  right:      0;
  height:     var(--nav-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);
}

@media (max-width: 900px) {
  .navbar {
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 1px 0 var(--border);
  }
}

.navbar-inner {
  display:         flex;
  align-items:     center;
  height:          100%;
}

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

.navbar-logo img {
  height:    44px;
  width:     auto;
  max-width: 160px;
}

.navbar-links {
  display:     flex;
  align-items: center;
  gap:         1.75rem;
  list-style:  none;
}

.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;
  padding:       0.4rem 1.1rem;
  border-radius: var(--btn-radius);
  font-weight:   600;
  transition:    background 0.2s;
  text-decoration: none;
}

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

.navbar.scrolled .navbar-links .nav-cta a {
  color: #fff;
}

@media (max-width: 900px) {
  .navbar-links {
    display: none;
  }
}

/* ----------------------------------------------------------
   NAV SENTINEL
   ---------------------------------------------------------- */
.nav-sentinel {
  position:       absolute;
  top:            0;
  left:           0;
  width:          1px;
  height:         1px;
  pointer-events: none;
  opacity:        0;
  visibility:     hidden;
}

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

.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 {
  position:        fixed;
  top:             var(--nav-h);
  right:           0;
  width:           min(320px, 88vw);
  max-height:      calc(100vh - var(--nav-h) - 2rem);
  height:          auto;
  overflow-y:      auto;
  background:      #fff;
  z-index:         950;
  transform:       translateX(100%);
  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);
}

.menu-backdrop {
  position:                 fixed;
  inset:                    var(--nav-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.visible {
  opacity:        1;
  pointer-events: auto;
}

.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;
  cursor:          pointer;
  color:           var(--text-muted);
  margin-bottom:   1rem;
  border-radius:   50%;
  transition:      background 0.2s;
}

.mobile-menu-close:hover {
  background: var(--bg-alt);
}

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

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

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

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

.mobile-nav-links .mobile-cta {
  background:    var(--accent);
  color:         #fff !important;
  border-radius: var(--btn-radius);
  padding:       0.75rem 1.25rem !important;
  text-align:    center;
  margin-top:    1rem;
  font-weight:   600;
}

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

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */
.btn {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  padding:         0.875rem 2rem;
  background:      var(--accent);
  color:           #fff;
  font-family:     var(--font-body);
  font-size:       1rem;
  font-weight:     600;
  border:          none;
  border-radius:   var(--btn-radius);
  cursor:          pointer;
  text-decoration: none;
  transition:      background 0.2s, transform 0.15s;
}

.btn:hover {
  background:      var(--accent-hover);
  text-decoration: none;
}

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.hero {
  position:  relative;
  height:    100vh;
  min-height: 600px;
  overflow:  hidden;
  display:   flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset:    0;
  z-index:  0;
}

.hero-img {
  width:       100%;
  height:      100%;
  object-fit:  cover;
  object-position: center;
  display:     block;
}

.hero-overlay {
  position:   absolute;
  inset:      0;
  z-index:    1;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.30) 60%,
    rgba(0, 0, 0, 0.10) 100%
  );
}

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

.hero-content {
  position:  relative;
  z-index:   2;
  max-width: 700px;
  padding-top: var(--nav-h);
}

.hero-location {
  font-size:      1rem;
  font-weight:    600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color:          rgba(255, 255, 255, 0.80);
  margin-bottom:  1rem;
}

.hero-title {
  font-size:    3.5rem;
  font-weight:  700;
  color:        #fff;
  line-height:  1.1;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size:    1.125rem;
  color:        rgba(255, 255, 255, 0.88);
  max-width:    520px;
  margin-bottom: 2rem;
  line-height:  1.65;
}

.hero-btn {
  font-size:     1rem;
  padding:       0.9rem 2.25rem;
  border-radius: var(--btn-radius);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

.villa-card {
  background:    #fff;
  border-radius: var(--img-radius);
  overflow:      hidden;
  box-shadow:    0 2px 12px rgba(0, 0, 0, 0.06);
  display:       flex;
  flex-direction: column;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .carousel-btn.prev {
    left: 0.5rem;
  }

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

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

.carousel-dot {
  width:         8px;
  height:        8px;
  border-radius: 50%;
  border:        none;
  background:    rgba(255, 255, 255, 0.55);
  cursor:        pointer;
  padding:       0;
  transition:    background 0.2s;
  min-width:     unset;
  min-height:    unset;
}

.carousel-dot.active {
  background: #fff;
}

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

.villa-name {
  font-size:     1.125rem;
  font-weight:   700;
  margin-bottom: 0.625rem;
}

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

.villa-specs {
  list-style: none;
  display:    flex;
  flex-wrap:  wrap;
  gap:        0.375rem 1rem;
  margin-bottom: 1.25rem;
}

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

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

.villa-actions {
  display:         flex;
  align-items:     center;
  gap:             0.875rem;
  flex-wrap:       wrap;
  margin-top:      auto;
}

.villa-view-link {
  font-size:       0.9375rem;
  font-weight:     500;
  color:           var(--accent);
  background:      transparent;
  border:          1px solid var(--accent);
  border-radius:   var(--btn-radius);
  padding:         0.5rem 1rem;
  cursor:          pointer;
  text-decoration: none;
  transition:      background 0.2s, color 0.2s;
  white-space:     nowrap;
}

.villa-view-link:hover {
  background:      var(--accent-light);
  text-decoration: none;
}

.btn-room-cta {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  padding:         0.5rem 1.25rem;
  background:      var(--accent);
  color:           #fff;
  font-family:     var(--font-body);
  font-size:       0.9375rem;
  font-weight:     600;
  border:          none;
  border-radius:   var(--btn-radius);
  cursor:          pointer;
  text-decoration: none;
  transition:      background 0.2s;
  white-space:     nowrap;
}

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

/* ----------------------------------------------------------
   ACTIVITIES
   ---------------------------------------------------------- */
.activities-section {
  background: var(--bg);
}

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

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

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

.activity-card {
  background:    var(--bg-alt);
  border-radius: var(--img-radius);
  overflow:      hidden;
  display:       flex;
  flex-direction: column;
}

.activity-card-icon {
  width:           52px;
  height:          52px;
  background:      var(--accent-light);
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin:          1.25rem 1.25rem 0.75rem;
  flex-shrink:     0;
}

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

.activity-card-body {
  padding: 0 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.activity-card-body h3 {
  font-size:     1rem;
  font-weight:   700;
  margin-bottom: 0.75rem;
}

.activity-card-img {
  width:          100%;
  height:         200px;
  object-fit:     cover;
  border-radius:  8px;
  margin-bottom:  0.875rem;
  display:        block;
}

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

/* On-Site Activities */
.onsite-activities {
  background:    var(--accent-light);
  border-radius: var(--img-radius);
  padding:       1.75rem 2rem;
  margin-bottom: 3rem;
}

.onsite-heading {
  font-size:     1.125rem;
  font-weight:   700;
  margin-bottom: 1rem;
}

.onsite-list {
  list-style: none;
  display:    flex;
  flex-wrap:  wrap;
  gap:        0.625rem 2rem;
}

.onsite-item {
  display:     flex;
  align-items: center;
  gap:         0.5rem;
  font-size:   1.0625rem;
  font-weight: 500;
  color:       var(--text);
}

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

/* Tours Section */
.tours-section {
  margin-top: 2rem;
}

.tours-heading {
  font-size:     1.5rem;
  font-weight:   700;
  margin-bottom: 0.5rem;
}

.tours-intro {
  color:         var(--text-muted);
  margin-bottom: 2rem;
  max-width:     680px;
}

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

.tour-block {
  display:      grid;
  grid-template-columns: 1fr 1.4fr;
  gap:          2.5rem;
  align-items:  start;
  background:   var(--bg-alt);
  border-radius: var(--img-radius);
  overflow:     hidden;
}

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

.tour-block-image {
  min-width: 0;
  overflow:    hidden;
}

.tour-block-image img {
  width:       100%;
  height:      100%;
  object-fit:  cover;
  display:     block;
  max-width:   none;
}

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

.tour-block-content {
  padding: 1.75rem 1.75rem 1.75rem 0;
}

@media (max-width: 900px) {
  .tour-block-content {
    padding: 1.25rem 1.25rem 1.5rem;
  }
}

.tour-block-title {
  font-size:     1.25rem;
  font-weight:   700;
  margin-bottom: 0.75rem;
}

.tour-block-intro {
  font-size:     1.0625rem;
  color:         var(--text-muted);
  margin-bottom: 1.25rem;
  line-height:   1.65;
}

.tour-highlights {
  list-style: none;
  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;
  margin-top: 0;
  transform:  translateY(0.15em);
}

/* ----------------------------------------------------------
   GETTING HERE
   ---------------------------------------------------------- */
.getting-here-section {
  background: var(--bg-alt);
}

.getting-here-grid {
  display:               grid;
  grid-template-columns: 1fr 360px;
  gap:                   3rem;
  align-items:           start;
}

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

.transfer-step {
  display:       flex;
  gap:           1.25rem;
  margin-bottom: 2rem;
  align-items:   flex-start;
}

.transfer-step:last-child {
  margin-bottom: 0;
}

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

.transfer-step-icon i {
  color:     var(--accent);
  font-size: 1.25rem;
}

.transfer-step-body h3 {
  font-size:     1.0625rem;
  font-weight:   700;
  margin-bottom: 0.5rem;
}

.transfer-step-body p {
  font-size:  1.0625rem;
  color:      var(--text-muted);
  margin:     0;
  line-height: 1.65;
}

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

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

.maps-btn {
  display:         flex;
  align-items:     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;
  justify-content: center;
}

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

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

.map-embed iframe {
  border-radius: var(--img-radius);
  display:       block;
  width:         100%;
}

/* Travel Tips */
.travel-tips {
  background:    #fff;
  border-radius: var(--img-radius);
  padding:       1.25rem 1.5rem;
  border:        1px solid var(--border);
}

.travel-tips h4 {
  font-size:     1rem;
  font-weight:   700;
  margin-bottom: 0.875rem;
  display:       flex;
  align-items:   center;
  gap:           0.5rem;
}

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

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

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

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

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

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

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

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

@media (max-width: 900px) {
  .meals-img {
    height: 260px;
  }
}

.meal-block {
  display:       flex;
  gap:           1rem;
  margin-bottom: 1.75rem;
  align-items:   flex-start;
}

.meal-block:last-of-type {
  margin-bottom: 0;
}

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

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

.meal-body h3 {
  font-size:     1.0625rem;
  font-weight:   700;
  margin-bottom: 0.375rem;
}

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

.meals-note {
  margin-top:    1.5rem;
  padding:       1rem 1.25rem;
  background:    var(--accent-light);
  border-radius: var(--btn-radius);
  border-left:   3px solid var(--accent);
}

.meals-note p {
  font-size: 1rem;
  color:     var(--text-muted);
  margin:    0;
  display:   flex;
  gap:       0.5rem;
  align-items: flex-start;
}

.meals-note p i {
  color:      var(--accent);
  flex-shrink: 0;
  margin-top: 0.15em;
}

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

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

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

/* Form banners */
.form-banner {
  display:       flex;
  gap:           0.875rem;
  align-items:   flex-start;
  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;
  margin-top: 0.125rem;
}

.form-banner strong {
  display:       block;
  margin-bottom: 0.25rem;
  font-weight:   700;
}

.form-banner p {
  margin: 0;
}

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

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

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

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

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

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

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

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

.form-group-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 {
  padding:       0.625rem 0.875rem;
  font-family:   var(--font-body);
  font-size:     1rem;
  color:         var(--text);
  background:    #fff;
  border:        1px solid var(--border);
  border-radius: var(--btn-radius);
  width:         100%;
  transition:    border-color 0.2s, outline-color 0.2s;
  outline:       2px solid transparent;
  outline-offset: 2px;
}

input:focus,
select:focus,
textarea:focus {
  border-color:  var(--accent);
  outline-color: var(--accent);
}

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

.booking-form input.has-error,
.booking-form select.has-error,
.booking-form textarea.has-error {
  border-color: #dc2626;
  background:   #fef2f2;
}

.booking-form input.has-error:focus,
.booking-form select.has-error:focus,
.booking-form textarea.has-error:focus {
  outline-color: #dc2626;
}

.booking-form .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;
}

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

/* Contact sidebar */
.contact-info-col {
  display:        flex;
  flex-direction: column;
  gap:            1.25rem;
}

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

.info-card h4 {
  font-size:     1rem;
  font-weight:   700;
  margin-bottom: 0.5rem;
  display:       flex;
  align-items:   center;
  gap:           0.5rem;
}

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

.info-card p {
  font-size:     1rem;
  color:         var(--text);
  margin-bottom: 0.375rem;
  font-weight:   500;
}

.info-card-sub {
  font-size:  0.9375rem !important;
  color:      var(--text-muted) !important;
  font-weight: 400 !important;
  margin:     0 !important;
}

.quick-facts {
  list-style: none;
  display:    flex;
  flex-direction: column;
  gap:        0.625rem;
}

.quick-facts li {
  display:     flex;
  align-items: center;
  gap:         0.625rem;
  font-size:   1rem;
  color:       var(--text);
}

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

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

.reviews-aggregate {
  display:     flex;
  align-items: center;
  gap:         0.75rem;
  margin-bottom: 2.5rem;
}

.aggregate-rating {
  font-size:   2rem;
  font-weight: 700;
  color:       var(--text);
}

.aggregate-stars {
  font-size:  1.5rem;
  color:      var(--accent);
  line-height: 1;
}

.aggregate-count {
  font-size: 1rem;
  color:     var(--text-muted);
}

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

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

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

.review-card {
  background:    var(--bg-alt);
  border-radius: var(--img-radius);
  padding:       1.5rem;
  display:       flex;
  flex-direction: column;
}

.review-stars {
  font-size:     1.125rem;
  color:         var(--accent);
  margin-bottom: 0.875rem;
  line-height:   1;
}

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

.review-author {
  font-size:   1rem;
  font-weight: 700;
  color:       var(--text);
  margin-bottom: 0.2rem;
}

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

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

.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;
}

.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;
  text-decoration: none;
}

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

.footer-enquiry:hover {
  opacity:         0.7;
  text-decoration: none;
}

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

.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;
}

/* ----------------------------------------------------------
   MODAL
   ---------------------------------------------------------- */
.modal-overlay {
  display:         none;
  position:        fixed;
  inset:           0;
  z-index:         2000;
  background:      rgba(0, 0, 0, 0.60);
  align-items:     center;
  justify-content: center;
  padding:         1.5rem;
}

.modal-overlay.open {
  display: flex;
}

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

.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);
  padding:     0;
  text-decoration: none;
  transition:  color 0.2s;
}

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

.modal-room-title {
  font-size:     1.375rem;
  margin-bottom: 0.875rem;
  padding-right: 2rem;
}

.modal-room-desc {
  font-size:     1.0625rem;
  color:         var(--text-muted);
  margin-bottom: 1.25rem;
  line-height:   1.65;
}

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

.modal-room-specs li {
  font-size:  1rem;
  color:      var(--text-muted);
}

.modal-room-specs li::before {
  content:     "· ";
  color:       var(--accent);
  font-weight: 700;
}

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

.modal-room-cta:hover {
  background:      var(--accent-hover);
  text-decoration: none;
}

/* ----------------------------------------------------------
   TEXT DECORATION: NONE — DO NOT CONSOLIDATE
   ---------------------------------------------------------- */
.navbar-logo {
  text-decoration: none;
}

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

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

.btn {
  text-decoration: none;
}

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

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

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

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

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

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

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

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

/* ----------------------------------------------------------
   FORM ERROR CSS (5.8.2.C)
   ---------------------------------------------------------- */
.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;
}

/* ========= AUDIT FIXES ========= */
.logo-navbar { height: 80px !important; padding: 0 !important; margin: 0 !important; object-fit: contain; 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; }
.navbar.scrolled .nav-cta a { color: #fff !important; }

.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: #047857; }
.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(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; }
.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: #6b7280; }
.navbar.scrolled .lang-switcher-x13 .lang-active { color: #1a1a1a; background: rgba(5,150,105,0.08); }
.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); }
.navbar.scrolled .lang-switcher-x21 a { color: #6b7280; }
.navbar.scrolled .lang-switcher-x21 .lang-active { color: #1a1a1a; }
.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); }
.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-xm11 a { color: #6b7280; } .lang-switcher-xm11 .lang-active { color: #1a1a1a; } }
.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-social { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: inline-flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; font-size: 1rem; }
.footer-social a:hover { background: rgba(255,255,255,0.18); }
.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/form */
.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 1fr; 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(5,150,105,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: #047857; }
.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; }

/* On-site grid */
.onsite-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 0.75rem; list-style: none; padding: 0; margin: 0; }
.onsite-item { display: flex; align-items: center; gap: 0.625rem; font-size: 1rem; padding: 0.625rem 0.875rem; background: var(--surface, #f9fafb); border: 1px solid var(--border, #e5e7eb); border-radius: 6px; }
.onsite-item i { color: var(--accent); flex-shrink: 0; }
.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 — v25 compliant */
@media (max-width: 768px) {
  /* 1rem floor for ALL body text */
  .villa-specs li { font-size: 1rem; }
  .villa-specs li i { font-size: 1rem; }
  .villa-desc { font-size: 1rem; }
  .villa-view-link { font-size: 1rem; }
  .tour-block-highlights li { font-size: 1rem; }
  .tour-block-desc, .tour-block-intro { font-size: 1rem; }
  .tour-contact-note { font-size: 1rem; }
  .onsite-item { font-size: 1rem; }
  .travel-tips-list li { font-size: 1rem; }
  .info-card p, .info-card li { font-size: 1rem; }
  .info-card-sub { font-size: 1rem; }
  .modal-dialog p, .modal-dialog li { font-size: 1rem; }
  .review-body { font-size: 1rem; }
  .review-name { font-size: 1rem; }
  .section-eyebrow { font-size: 1rem; }
  .section-intro { font-size: 1rem; }
  .optional-label { font-size: 1rem; }
  .activity-card-body p { font-size: 1rem; }
  .transfer-step-body p, .transfer-step-body li { font-size: 1rem; }
  .meal-card p, .meal-text p { font-size: 1rem; }
  .contact-card p, .contact-card address { font-size: 1rem; }
  .quick-facts-sidebar li { font-size: 1rem; }
  .quick-facts-list li { font-size: 1rem; }
  .about-text p { font-size: 1rem; }
  .dive-site-desc, .dive-site-name { font-size: 1rem; }
  .btn { font-size: 1rem; }
  .btn-room-cta { font-size: 1rem; }
  .maps-link, .maps-btn { font-size: 1rem; }
  .travel-tip-item p { font-size: 1rem; }

  /* 0.9375rem ONLY for these per v25 */
  .footer-copyright { font-size: 0.9375rem; }
  .form-reassurance { font-size: 0.9375rem; }
  .review-country { font-size: 0.9375rem; }
}

/* Tour block alignment - tops aligned */
.tour-block {
  align-items: start;
}
.tour-block-body {
  padding-top: 0;
}

/* Travel tips fullwidth 3 columns */
.travel-tips-fullwidth {
  margin-top: 2rem;
}
.travel-tips-fullwidth h4 {
  margin-bottom: 1.25rem;
  font-size: 1.1875rem;
}
.travel-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.travel-tips-grid li,
.travel-tip-item {
  padding: 1rem 1.25rem;
  background: var(--bg-alt, #f9fafb);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 6px;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.travel-tips-grid li i,
.travel-tip-item i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
@media (max-width: 768px) {
  .travel-tips-grid { grid-template-columns: 1fr; }
}

/* Hamburger visible when not scrolled (dark bars on transparent bg) */
.hamburger-bar {
  background: #fff;
}
.navbar.scrolled .hamburger-bar {
  background: var(--text, #1a1a1a);
}
@media (max-width: 900px) {
  .navbar:not(.scrolled) .hamburger-bar {
    background: #fff;
  }
  .navbar.scrolled .hamburger-bar {
    background: var(--text, #1a1a1a);
  }
}

/* Footer location */
.footer-location {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-location i {
  color: rgba(255,255,255,0.65);
}

/* Logo padding-bottom */
.navbar-logo {
  padding-bottom: 8px;
}

/* Modal backdrop - only shows when modal is open */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.modal.open {
  display: flex;
}
.modal .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.modal .modal-dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 10px;
  padding: 2.5rem;
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
}

/* Single room - full width 2-column layout */
.villas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.villa-card {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 0;
  background: var(--bg-alt, #f9fafb);
  border-radius: var(--radius, 10px);
  overflow: hidden;
  border: 1px solid var(--border, #e5e7eb);
}

.villa-card .carousel {
  width: 100%;
  aspect-ratio: auto;
}

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

.villa-card .villa-info {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.villa-card .villa-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.villa-card .villa-actions .btn-room-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
}

.villa-card .villa-actions .villa-view-link {
  width: 100%;
  text-align: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .villa-card {
    grid-template-columns: 1fr;
  }
  .villa-card .villa-info {
    padding: 1.5rem;
  }
}

/* Lang switcher hover */
.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); }
.lang-switcher-xm11 a:hover,
.lang-switcher-xm12 a:hover,
.lang-switcher-xm14 a:hover { color: var(--accent); }
.footer-flag:hover { opacity: 1; }

/* Modal CTA padding */
.modal .btn-room-cta {
  margin-top: 1.5rem;
}

/* Activity card icon spacing */
.activity-card-body h3 i {
  margin-right: 10px;
}

/* Sipadan diving image same proportion as sipadan island */
img[src*="diving-sipadan"] {
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Travel tips - constrain to container width */
.travel-tips-fullwidth {
  max-width: var(--container-max, 1200px);
  margin-left: auto;
  margin-right: auto;
}

/* Footer location padding */
.footer-location {
  margin-top: 0.75rem;
}

/* Force square on multi-day image */
.tour-block-image img[src*="multi-day"] {
  aspect-ratio: 1/1 !important;
  height: auto !important;
  width: 100% !important;
  object-fit: cover !important;
}
@media (max-width: 900px) {
  .tour-block-image:has(img[src*="multi-day"]) {
    height: auto !important;
  }
}
