/* ==========================================================
   Doris Mataking Resort — style.css
   Generated: 2026-04-30 | Skill round 5.9.1
   Font: General Sans (Fontshare) | Accent: Electric Blue #2563eb
   Section order: hero→about→rooms→activities→getting-here→meals→contact→reviews→footer
   ========================================================== */

/* ===== ROOT VARIABLES ===== */
:root {
  --font-heading:  'Cabinet Grotesk', system-ui, sans-serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --accent:        #2563eb;
  --accent-hover:  #1d4ed8;
  --footer-bg:     #050e23;
  --footer-text:   rgba(255, 255, 255, 0.65);
  --footer-head:   #ffffff;
  --footer-line:   rgba(255, 255, 255, 0.10);
  --footer-chip:   rgba(255, 255, 255, 0.10);
  --footer-chip-h: rgba(255, 255, 255, 0.18);
  --max-w:         1280px;
  --navbar-h:      80px;
  --btn-radius:    8px;
  --text:          #111827;
  --text-muted:    #6b7280;
  --bg:            #ffffff;
  --bg-alt:        #f8fafc;
  --border:        #e5e7eb;
  --section-pad:   72px;
}

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

* {
  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.65;
  color:          var(--text);
  background:     var(--bg);
  margin:         0;
  padding:        0;
}

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

a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5 {
  font-family:  var(--font-heading);
  line-height:  1.25;
  margin-top:   0;
}

p {
  margin-top: 0;
}

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

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

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

/* ===== NAVBAR ===== */
#navbar {
  position:        fixed;
  top:             0;
  left:            0;
  width:           100%;
  height:          var(--navbar-h);
  z-index:         1000;
  background:      transparent;
  transition:      background 0.3s, box-shadow 0.3s;
  display:         flex;
  align-items:     center;
}

#navbar.scrolled {
  background: var(--bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.navbar {
  width:           100%;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  padding:         0 2rem;
  height:          var(--navbar-h);
}

.nav-brand {
  display:         flex;
  align-items:     center;
  text-decoration: none;
  height:          var(--navbar-h);
}

.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:          1.75rem;
  list-style:   none;
  margin:       0;
  padding:      0;
}

.navbar-links a {
  font-family:     var(--font-body);
  font-size:       1.0625rem;
  font-weight:     600;
  color:           #fff;
  text-decoration: none;
  transition:      color 0.2s, opacity 0.2s;
}

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

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

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

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

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

  .navbar-links {
    display: none;
  }
}

/* ===== MOBILE MENU ===== */
#mobileMenu {
  position:                  fixed;
  top:                       0;
  right:                     0;
  width:                     min(320px, 88vw);
  max-height:                calc(100vh - 2rem);
  height:                    auto;
  overflow-y:                auto;
  background:                #fff;
  z-index:                   1200;
  transform:                 translateX(100%);
  transition:                transform 0.28s cubic-bezier(.4, 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);
}

#mobileMenu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  align-self:      flex-end;
  background:      transparent;
  border:          none;
  font-size:       1.5rem;
  cursor:          pointer;
  color:           var(--text);
  padding:         0.25rem;
  margin-bottom:   1rem;
  line-height:     1;
}

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

.mobile-nav-links li {
  border-bottom: 1px solid var(--border);
}

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

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

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

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

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

/* ===== MENU BACKDROP ===== */
#menuBackdrop {
  position:                 fixed;
  inset:                    0 0 0 0;
  background:               rgba(17, 24, 39, 0.30);
  backdrop-filter:          blur(8px);
  -webkit-backdrop-filter:  blur(8px);
  z-index:                  1100;
  opacity:                  0;
  pointer-events:           none;
  transition:               opacity 0.25s;
}

#menuBackdrop.open {
  opacity:        1;
  pointer-events: auto;
}

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

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

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

.section-title {
  font-size:     2.25rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 1.25rem;
}

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

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

/* ===== HERO ===== */
.hero {
  position:   relative;
  height:     100vh;
  min-height: 600px;
  overflow:   hidden;
  display:    flex;
  align-items: flex-start;
  padding-top: clamp(6rem, 14vh, 10rem);
}

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

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

.hero-overlay {
  position: absolute;
  top:      0;
  left:     0;
  right:    0;
  height:   55%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
  z-index:  1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-overlay {
    height: 70%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0) 100%);
  }
}

.hero-content {
  position:   relative;
  z-index:    2;
  padding:    0 2rem;
  max-width:  700px;
}

.hero-content h1 {
  font-size:   clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color:       #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.hero-tagline {
  font-size:     1.125rem;
  color:         rgba(255, 255, 255, 0.90);
  margin-bottom: 2rem;
  line-height:   1.55;
}

.hero-cta {
  display:   flex;
  gap:       1rem;
  flex-wrap: wrap;
}

.btn {
  display:         inline-block;
  padding:         0.875rem 1.75rem;
  font-family:     var(--font-body);
  font-size:       1.0625rem;
  font-weight:     600;
  border-radius:   var(--btn-radius);
  cursor:          pointer;
  text-decoration: none;
  transition:      background 0.2s, color 0.2s, border-color 0.2s;
  border:          2px solid transparent;
}

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

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

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

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

.about-text h2 {
  font-size:     2rem;
  font-weight:   700;
  margin-bottom: 1rem;
}

.about-text p {
  font-size:    1.0625rem;
  color:        var(--text-muted);
  line-height:  1.7;
  margin-bottom: 1rem;
}

.about-image img {
  width:         100%;
  height:        460px;
  object-fit:    cover;
  border-radius: 12px;
  display:       block;
}

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

/* ===== VILLAS/SUITES SECTION ===== */
.villas-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   2rem;
  margin-top:            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 {
  display:          flex;
  flex-direction:   column;
  height:           100%;
  background:       var(--bg);
  border-radius:    12px;
  overflow:         hidden;
  box-shadow:       0 2px 12px rgba(0, 0, 0, 0.08);
  transition:       box-shadow 0.2s;
}

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

/* ===== CAROUSEL ===== */
.carousel {
  position:   relative;
  overflow:   hidden;
  background: #f0f0f0;
  aspect-ratio: 4 / 3;
}

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

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

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

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

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

.carousel-btn.prev {
  left: 8px;
}

.carousel-btn.next {
  right: 8px;
}

.carousel-dots {
  position:        absolute;
  bottom:          8px;
  left:            50%;
  transform:       translateX(-50%);
  display:         flex;
  gap:             6px;
  z-index:         10;
}

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

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

/* ===== VILLA VIEW LINK ===== */
.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;
  text-decoration: none;
}

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

.villa-info h3 {
  font-size:     1.25rem;
  font-weight:   700;
  margin-bottom: 0.5rem;
  color:         var(--text);
}

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

.villa-specs {
  list-style:    none;
  padding:       0;
  margin:        0 0 1rem;
  display:       flex;
  flex-wrap:     wrap;
  gap:           0.5rem;
}

.villa-specs li {
  font-size:    0.9375rem;
  color:        var(--text-muted);
  background:   var(--bg-alt);
  border:       1px solid var(--border);
  padding:      0.25rem 0.6rem;
  border-radius: 4px;
}

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

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

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

.modal.open {
  display: flex;
}

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

.modal-panel {
  position:        relative;
  z-index:         1;
  background:      var(--bg);
  border-radius:   12px;
  padding:         2rem;
  max-width:       560px;
  width:           100%;
  max-height:      85vh;
  overflow-y:      auto;
  box-shadow:      0 24px 64px rgba(0, 0, 0, 0.25);
}

.modal-close {
  position:        absolute;
  top:             1rem;
  right:           1rem;
  background:      transparent;
  border:          none;
  font-size:       1.25rem;
  color:           var(--text-muted);
  cursor:          pointer;
  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-panel h3 {
  font-size:     1.4rem;
  font-weight:   700;
  margin-bottom: 0.75rem;
  padding-right: 2rem;
}

.modal-panel p {
  font-size:    1rem;
  color:        var(--text-muted);
  line-height:  1.65;
  margin-bottom: 0.75rem;
}

.modal-panel ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.modal-panel ul li {
  font-size:    1rem;
  color:        var(--text-muted);
  margin-bottom: 0.375rem;
}

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

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

/* ===== ACTIVITIES SECTION ===== */
.activities-banner {
  width:           100%;
  max-width:       100%;
  height:          320px;
  overflow:        hidden;
  border-radius:   12px;
  margin-bottom:   2rem;
}

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

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

/* ===== CORE ACTIVITY CARDS ===== */
.activity-grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   1.5rem;
  margin-bottom:         3rem;
}

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

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

.activity-card {
  background:    var(--bg);
  border-radius: 10px;
  overflow:      hidden;
  box-shadow:    0 2px 8px rgba(0, 0, 0, 0.07);
  text-align:    center;
}

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

.activity-card h3 {
  font-size:     1.125rem;
  font-weight:   700;
  margin:        1rem 1rem 0.5rem;
  color:         var(--text);
}

.activity-card h3 i {
  color:        var(--accent);
  margin-right: 0.4rem;
}

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

/* ===== ON-SITE ACTIVITIES ===== */
.onsite-heading {
  font-size:     1.4rem;
  font-weight:   700;
  margin-bottom: 1.25rem;
  color:         var(--text);
}

.onsite-activities {
  display:    flex;
  flex-wrap:  wrap;
  gap:        0.875rem;
  margin-bottom: 3rem;
}

.onsite-item {
  display:       flex;
  align-items:   center;
  gap:           0.5rem;
  font-size:     1rem;
  font-weight:   500;
  color:         var(--text);
  background:    var(--bg);
  border:        1px solid var(--border);
  border-radius: 24px;
  padding:       0.5rem 1rem;
}

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

/* ===== TOUR BLOCKS ===== */
.tour-blocks {
  display:        flex;
  flex-direction: column;
  gap:            3rem;
}

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

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

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

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

.tour-block-image {
  overflow:      hidden;
  border-radius: 10px;
}

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

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

.tour-block-title {
  font-size:     1.3rem;
  font-weight:   700;
  margin-bottom: 0.75rem;
  color:         var(--text);
}

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

.tour-highlights {
  list-style: none;
  padding:    0;
  margin:     0;
}

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

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

/* ===== GETTING HERE SECTION ===== */
.getting-here-grid {
  display:               grid;
  grid-template-columns: 1fr 340px;
  gap:                   3rem;
  align-items:           start;
}

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

.getting-here-content h3 {
  font-size:     1.2rem;
  font-weight:   700;
  margin-top:    1.5rem;
  margin-bottom: 0.5rem;
  color:         var(--text);
}

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

.getting-here-content h3 i {
  color:        var(--accent);
  margin-right: 0.5rem;
}

.getting-here-content p {
  font-size:    1rem;
  color:        var(--text-muted);
  line-height:  1.65;
  margin-bottom: 0.5rem;
}

.getting-here-content ul {
  list-style: none;
  padding:    0;
  margin:     0 0 0.75rem;
}

.getting-here-content ul li {
  font-size:    1rem;
  color:        var(--text-muted);
  padding:      0.3rem 0;
  display:      flex;
  align-items:  flex-start;
  gap:          0.5rem;
}

.getting-here-content ul li i {
  color:      var(--accent);
  font-size:  0.9375rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ===== GETTING HERE SIDEBAR ===== */
.getting-here-sidebar {
  display:        flex;
  flex-direction: column;
  gap:            1rem;
}

.location-image {
  width:         100%;
  height:        200px;
  object-fit:    cover;
  border-radius: 8px;
  display:       block;
}

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

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

.map-embed {
  width:          100%;
  border-radius:  8px;
  overflow:       hidden;
}

.map-embed iframe {
  display: block;
  width:   100%;
  height:  250px;
  border:  0;
}

/* ===== TRAVEL TIPS ===== */
.travel-tips {
  background:    var(--bg);
  border:        1px solid var(--border);
  border-radius: 8px;
  padding:       1.25rem;
}

.travel-tips h4 {
  font-size:     1.1875rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 0.875rem;
}

.travel-tips h4 i {
  color:        var(--accent);
  margin-right: 0.4rem;
}

.travel-tips-list {
  list-style: none;
  padding:    0;
  margin:     0;
}

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

.travel-tips-list li:last-child {
  margin-bottom: 0;
}

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

/* ===== MEALS SECTION ===== */
.meals-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   3.5rem;
  align-items:           center;
}

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

.meals-image img {
  width:         100%;
  height:        400px;
  object-fit:    cover;
  border-radius: 12px;
  display:       block;
}

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

.meals-text h2 {
  font-size:     2rem;
  font-weight:   700;
  margin-bottom: 1rem;
}

.meals-text p {
  font-size:    1.0625rem;
  color:        var(--text-muted);
  line-height:  1.7;
  margin-bottom: 1rem;
}

.meals-breakdown {
  list-style: none;
  padding:    0;
  margin:     1rem 0;
}

.meals-breakdown li {
  display:       flex;
  align-items:   flex-start;
  gap:           0.75rem;
  padding:       0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size:     1rem;
  color:         var(--text-muted);
  line-height:   1.5;
}

.meals-breakdown li:last-child {
  border-bottom: none;
}

.meals-breakdown li i {
  color:      var(--accent);
  font-size:  1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.meals-breakdown li strong {
  color:      var(--text);
  font-weight: 600;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display:               grid;
  grid-template-columns: 1fr 340px;
  gap:                   3rem;
  align-items:           start;
  margin-top:            1.5rem;
}

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

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

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

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

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

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

.required-asterisk {
  color:       #dc2626;
  margin-left: 0.15rem;
}

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

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline:       2px solid var(--accent);
  outline-offset: 0;
  border-color:  var(--accent);
}

.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 textarea {
  resize:     vertical;
  min-height: 120px;
}

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

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

/* ===== SUBMIT BUTTON ===== */
.btn-submit {
  display:         inline-block;
  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-size:       1rem;
  font-weight:     700;
  cursor:          pointer;
  transition:      background 0.2s;
  text-decoration: none;
}

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

/* ===== CONTACT SIDEBAR CARDS ===== */
.contact-info-col {
  display:        flex;
  flex-direction: column;
  gap:            1.25rem;
}

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

.section-alt .info-card {
  background: var(--bg-alt);
}

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

.info-card h4 i {
  color:        var(--accent);
  margin-right: 0.4rem;
}

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

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

.quick-facts-list {
  list-style: none;
  padding:    0;
  margin:     0;
}

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

.quick-facts-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

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

.quick-facts-list li strong {
  color:      var(--text);
  font-weight: 600;
  white-space: nowrap;
}

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

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

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

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

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

.review-stars {
  color:         var(--accent);
  font-size:     1.0625rem;
  margin-bottom: 0.875rem;
  letter-spacing: 0.1em;
}

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

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

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

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

/* ===== 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-bottom: 0.75rem;
}

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

.footer-location-line i {
  color:     var(--footer-head);
  font-size: 1rem;
}

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

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

/* ===== TYPOGRAPHY FLOORS ===== */
small, .caption { font-size: 0.9375rem; }

/* ===== LINK DECORATION RESETS ===== */
.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 {
  text-decoration: none;
}

/* ===== SCROLL PADDING FOR ANCHORS ===== */
:target {
  scroll-margin-top: calc(var(--navbar-h) + 1rem);
}

/* ===== PRINT ===== */
@media print {
  #navbar, .hero-cta, .carousel-btn, .modal { display: none; }
}

/* V25 AUDIT FIXES */
.logo-navbar { height: 80px; width: auto; padding: 0; margin: 0; object-fit: contain; }
.navbar:not(.scrolled) .logo-navbar { filter: brightness(0) invert(1); }
.navbar.scrolled .logo-navbar { filter: brightness(0) invert(0.5); }

/* Lang switcher — Desktop */
.x13-lang{display:flex;align-items:center;gap:0;margin-left:18px;background:rgba(255,255,255,.12);border-radius:999px;padding:.15rem;border:1px solid rgba(194,65,12,.5);flex-shrink:0}.x13-t{display:flex;align-items:center;justify-content:center;padding:.2rem .55rem;font-size:.875rem;font-weight:700;color:rgba(255,255,255,.7);text-decoration:none;border-radius:999px;transition:color .2s,background .2s;line-height:1}.x13-t:hover{color:#fff}.x13-t.x13-active{color:#fff;background:rgba(255,255,255,.22)}.navbar.scrolled .x13-lang{background:var(--bg-alt);border-color:rgba(194,65,12,.3)}.navbar.scrolled .x13-t{color:var(--text-muted)}.navbar.scrolled .x13-t:hover{color:var(--accent)}.navbar.scrolled .x13-t.x13-active{color:var(--text);background:rgba(194,65,12,.08)}@media(max-width:1023px){.x13-lang{display:none}}
.x21-lang{display:flex;align-items:center;gap:.25rem;margin-left:18px;flex-shrink:0}.x21-t{font-size:.9375rem;font-weight:700;text-decoration:none;color:rgba(255,255,255,.45);transition:color .2s;line-height:1}.x21-t:hover{color:rgba(255,255,255,.85)}.x21-t.x21-active{color:#fff}.x21-div{width:1px;height:12px;background:rgba(255,255,255,.3)}.navbar.scrolled .x21-t{color:var(--text-muted)}.navbar.scrolled .x21-t:hover{color:var(--accent)}.navbar.scrolled .x21-t.x21-active{color:var(--text)}.navbar.scrolled .x21-div{background:var(--border)}@media(max-width:1023px){.x21-lang{display:none}}
.x22-lang{display:flex;align-items:center;gap:.1rem;margin-left:18px;background:rgba(255,255,255,.1);border-radius:999px;padding:.15rem .25rem;flex-shrink:0}.x22-t{display:flex;align-items:center;justify-content:center;padding:.2rem .5rem;font-size:.875rem;font-weight:700;color:rgba(255,255,255,.45);text-decoration:none;border-radius:999px;transition:color .2s,background .2s;line-height:1}.x22-t:hover{color:rgba(255,255,255,.85)}.x22-t.x22-active{color:#fff;background:rgba(255,255,255,.2)}.navbar.scrolled .x22-lang{background:var(--bg-alt)}.navbar.scrolled .x22-t{color:var(--text-muted)}.navbar.scrolled .x22-t:hover{color:var(--accent)}.navbar.scrolled .x22-t.x22-active{color:var(--text);background:rgba(194,65,12,.08)}@media(max-width:1023px){.x22-lang{display:none}}

/* Mobile lang switcher */
.xm11-lang{display:none;align-items:center;justify-content:center;gap:.15rem;margin-top:.15rem}.xm11-t{font-size:.6875rem;font-weight:700;color:#555;text-decoration:none;padding:.1rem .2rem;border-radius:3px;line-height:1}.xm11-t.xm11-active{color:#222;background:rgba(0,0,0,.05)}@media(max-width:1023px){.xm11-lang{display:flex}}
.xm12-row{display:none;align-items:center}.xm12-lang{display:flex;align-items:center;gap:.1rem;margin-right:.4rem}.xm12-t{font-size:.6875rem;font-weight:700;color:#555;text-decoration:none;padding:.1rem .25rem;border-radius:3px;line-height:1}.xm12-t.xm12-active{color:#222;background:rgba(0,0,0,.05)}@media(max-width:1023px){.xm12-row{display:flex}}
.xm14-wrap{display:none;flex-direction:column;align-items:center;gap:.1rem}.xm14-lang{display:flex;align-items:center;gap:.1rem}.xm14-t{font-size:.6875rem;font-weight:700;color:#555;text-decoration:none;padding:.1rem .2rem;border-radius:3px;line-height:1}.xm14-t.xm14-active{color:#222;background:rgba(0,0,0,.05)}@media(max-width:1023px){.xm14-wrap{display:flex}}

/* Footer flags */
.footer-lang-text{display:flex;align-items:center;gap:.75rem;margin-top:1.25rem}
.flt-a{display:inline-flex;align-items:center;text-decoration:none;opacity:.75;transition:opacity .2s;line-height:1}
.flt-a:hover{opacity:1}.flt-a.flt-active{opacity:.85}
.flag-svg{width:28px;height:auto;border-radius:2px;box-shadow:0 0 0 1px rgba(255,255,255,.1)}

/* Mobile: navbar always white */
@media(max-width:1023px){
  .navbar{background:rgba(255,255,255,.97)!important;border-bottom:1px solid var(--border,#e5e5e5);box-shadow:0 1px 3px rgba(0,0,0,.08)}
  .navbar .logo-navbar{filter:none!important}
  .navbar .hamburger-bar{background:var(--text)!important}
  .navbar-links{display:none!important}
  .hamburger{display:flex!important}
}

/* scroll-padding + carousel dots */
html { scroll-padding-top: calc(80px + 1rem); }
.carousel-dot { border: none; padding: 0; }

/* Mobile font floor */
@media(max-width:767px){
  body{font-size:1rem}
  p,li,td,th,label,input,select,textarea{font-size:1rem!important}
  .footer-copyright,.review-country{font-size:0.9375rem!important}
}

/* V25 fixes */
.footer-brand { font-size: 2rem !important; }
.tour-block { grid-template-columns: 1fr 1.4fr !important; }
@media(max-width:768px){ .tour-block { grid-template-columns: 1fr !important; } }

/* Fix: Tour block images — preserve square proportions */
.tour-block-image img {
  width: 100%;
  height: auto !important;
  object-fit: cover;
  aspect-ratio: unset !important;
}

/* Fix: Mobile font floor — comprehensive */
@media (max-width: 767px) {
  .section-intro, .about-text p,
  .tour-block-desc, .tour-block-text p,
  .villa-info p, .villa-specs li,
  .meal-item p, .meals-intro,
  .transfer-step p, .step-text p,
  .travel-tips li,
  .review-text, .review-body p,
  .info-card p, .info-card li span,
  .quick-facts-list li span,
  .modal-content p, .modal-specs li,
  .onsite-item, .activity-card p,
  .section-eyebrow,
  .footer-description, .footer-links a,
  .footer-col h4 {
    font-size: 1rem !important;
  }
  .footer-copyright, .review-country {
    font-size: 0.9375rem !important;
  }
  .footer-brand { font-size: 1.5rem !important; }
}

/* Fix: Navbar padding left/right 120px */
#navbar, .navbar {
  padding-left: 120px !important;
  padding-right: 120px !important;
}
@media (max-width: 1023px) {
  #navbar, .navbar {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* Fix: Hero content at 1/3 from top */
.hero { padding-top: 33vh !important; }
.hero-content {
  margin-left: max(100px, 6vw);
  margin-right: 200px;
}
.hero-title { white-space: nowrap; }
@media (max-width: 640px) {
  .hero { padding-top: 180px !important; }
  .hero-content { margin-left: 1.25rem; margin-right: 1.25rem; }
  .hero-title { white-space: normal; }
}

/* Fix: Mobile activity cards single column */
@media (max-width: 768px) {
  .activity-grid, .activities-grid, .card-grid {
    grid-template-columns: 1fr !important;
  }
}
