/* ============================================================
   Goodland Blue Mist Resorts — main stylesheet
   ============================================================ */

:root {
  --deep: #071b2e;
  --deep-2: #0e3a5c;
  --mist: #8fd3e8;
  --mist-soft: #cdeef5;
  --gold: #e0a63a;
  --gold-soft: #f3cd82;
  --forest: #1f6f54;
  --ink: #10222f;
  --paper: #f7faf9;
  --paper-2: #eef4f3;
  --white: #ffffff;
  --shadow: 0 20px 50px -20px rgba(7, 27, 46, 0.35);
  --radius: 18px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --wa-number: 918848358030;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: contain;
}

/* App-like tap feedback everywhere touch is primary */
@media (hover: none) {
  a, button, .exp-card, .gallery-grid figure, .checkbox-item, .amenity-chip {
    transition: transform .18s var(--ease), opacity .18s var(--ease), box-shadow .18s var(--ease);
  }
  a:active, button:active { transform: scale(.96); }
  .exp-card:active, .gallery-grid figure:active { transform: scale(.98); }
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  margin: 0 0 .5em;
  color: var(--deep);
  letter-spacing: .3px;
}

a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 110px 0;
  position: relative;
}
.section-alt { background: var(--paper-2); }
.section-dark {
  background: linear-gradient(180deg, var(--deep) 0%, #0a2942 100%);
  color: #dbe9f2;
}
.section-dark h2, .section-dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section-dark .eyebrow { color: var(--mist); }

.section-head {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.section-head p { color: #4a5b62; font-size: 1.05rem; }
.section-dark .section-head p { color: #b9cdd8; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--deep);
  box-shadow: 0 12px 30px -10px rgba(224, 166, 58, .7);
}
.btn-gold:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 36px -12px rgba(224, 166, 58, .85); }

.btn-whatsapp {
  background: #21c063;
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(33, 192, 99, .65);
}
.btn-whatsapp:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 36px -12px rgba(33, 192, 99, .8); }

.btn-outline {
  background: transparent;
  color: inherit;
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }

.btn-outline-dark {
  border: 1.5px solid rgba(7,27,46,.25);
  color: var(--deep);
}
.btn-outline-dark:hover { background: rgba(7,27,46,.06); transform: translateY(-3px); }

.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------------- Mist decoration ---------------- */
.mist-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.mist-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  background: radial-gradient(circle at 30% 30%, rgba(143,211,232,.9), rgba(143,211,232,0) 70%);
  animation: driftMist 22s ease-in-out infinite;
}
.mist-blob.b2 { animation-duration: 28s; animation-delay: -6s; background: radial-gradient(circle at 30% 30%, rgba(224,166,58,.5), rgba(224,166,58,0) 70%); }
.mist-blob.b3 { animation-duration: 34s; animation-delay: -12s; }

@keyframes driftMist {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(4%, -6%) scale(1.08); }
  66%  { transform: translate(-5%, 4%) scale(.96); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ---------------- Preloader ---------------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.preloader-ring {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 3px solid rgba(143,211,232,.25);
  border-top-color: var(--mist);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------------- Header ---------------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: calc(26px + env(safe-area-inset-top)) 0 26px;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
header.scrolled {
  background: rgba(7, 27, 46, .92);
  backdrop-filter: blur(10px);
  padding: calc(14px + env(safe-area-inset-top)) 0 14px;
  box-shadow: 0 8px 30px -14px rgba(0,0,0,.5);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-main {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 1px;
  background: linear-gradient(100deg, #fff 0%, var(--mist) 25%, var(--gold-soft) 50%, var(--mist) 75%, #fff 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-main .cloud-icon {
  width: 26px; height: 26px;
  animation: floaty 4s ease-in-out infinite;
  flex-shrink: 0;
}
.logo-sub {
  font-size: .62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mist-soft);
  opacity: .85;
  margin-top: 2px;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

nav.primary-nav ul { display: flex; gap: 34px; align-items: center; }
nav.primary-nav a {
  color: #fff;
  font-size: .92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
nav.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
nav.primary-nav a:hover::after, nav.primary-nav a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-actions .btn { padding: 11px 22px; font-size: .85rem; }

.burger {
  display: none;
  width: 34px; height: 24px;
  position: relative;
  background: none;
  border: none;
  z-index: 1200;
}
.burger span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .3s;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 11px; }
.burger span:nth-child(3) { top: 22px; }
.burger.open span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: calc(20px + env(safe-area-inset-top)) 20px calc(90px + env(safe-area-inset-bottom));
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a { color: #fff; font-size: 1.4rem; font-family: 'Playfair Display', serif; }
.mobile-nav .btn { margin-top: 10px; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-slides {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 1.8s ease;
  animation: kenburns 16s ease-in-out infinite;
}
.hero-slide.active { opacity: 1; z-index: -1; }
@keyframes kenburns {
  0% { transform: scale(1.12) translate(0,0); }
  50% { transform: scale(1.22) translate(-1.5%, -1%); }
  100% { transform: scale(1.12) translate(0,0); }
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,27,46,.55) 0%, rgba(7,27,46,.45) 45%, rgba(7,27,46,.92) 100%);
  z-index: -1;
}
.hero-mist-svg {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  z-index: -1;
  opacity: .9;
}
.hero-content {
  padding-top: 90px;
  text-align: center;
  margin: 0 auto;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  margin-bottom: 26px;
  animation: fadeUp 1s var(--ease) both;
}
.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  color: #fff;
  font-weight: 700;
  animation: fadeUp 1s .15s var(--ease) both;
}
.hero-title .accent {
  background: linear-gradient(100deg, var(--mist), var(--gold-soft), var(--mist));
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s linear infinite;
  display: block;
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: #d9e8ee;
  max-width: 560px;
  margin: 22px auto 40px;
  animation: fadeUp 1s .3s var(--ease) both;
}
.hero-ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s .45s var(--ease) both;
}
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .72rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  animation: fadeUp 1s .6s var(--ease) both;
}
.hero-scroll .line { width: 1px; height: 40px; background: linear-gradient(180deg, rgba(255,255,255,.9), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* stat strip */
.stats-strip {
  position: relative;
  z-index: 2;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  margin-top: -70px;
  padding: 40px clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--deep-2);
  margin-bottom: 4px;
}
.stat span { color: #5b6b72; font-size: .85rem; letter-spacing: .5px; }

/* ---------------- Reveal ---------------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(.92); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-scale.in { opacity: 1; transform: scale(1); }
.stagger.in > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------------- About ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-media { position: relative; }
.about-media .frame-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-media .frame-main img { transition: transform .8s var(--ease); }
.about-media:hover .frame-main img { transform: scale(1.06); }
.about-media .frame-float {
  position: absolute;
  width: 46%;
  bottom: -36px; right: -30px;
  border-radius: 14px;
  overflow: hidden;
  border: 6px solid var(--paper);
  box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}
.about-text p { color: #435057; margin-bottom: 18px; }
.about-list { display: grid; gap: 14px; margin: 26px 0 32px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--deep-2); }
.about-list svg { width: 22px; height: 22px; color: var(--forest); flex-shrink: 0; }
.location-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--paper-2); padding: 10px 18px; border-radius: 100px;
  font-size: .85rem; color: var(--deep-2); font-weight: 500; margin-bottom: 20px;
}
.location-pill svg { width: 18px; height: 18px; color: var(--gold); }

/* ---------------- Experiences ---------------- */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.exp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  box-shadow: 0 14px 34px -18px rgba(7,27,46,.18);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  position: relative;
  overflow: hidden;
}
.exp-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(143,211,232,.12), rgba(224,166,58,.08));
  opacity: 0;
  transition: opacity .4s;
}
.exp-card:hover { transform: translateY(-10px); box-shadow: 0 26px 46px -18px rgba(7,27,46,.28); }
.exp-card:hover::before { opacity: 1; }
.exp-icon {
  width: 74px; height: 74px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--mist-soft), var(--paper-2));
  color: var(--deep-2);
  transition: transform .5s var(--ease), background .5s;
  position: relative;
  z-index: 1;
}
.exp-card:hover .exp-icon { transform: rotate(-8deg) scale(1.1); background: linear-gradient(135deg, var(--gold-soft), var(--mist-soft)); }
.exp-icon svg { width: 34px; height: 34px; }
.exp-card h3 { font-size: 1.1rem; position: relative; z-index: 1; }
.exp-card p { color: #5c6a70; font-size: .88rem; margin-bottom: 18px; position: relative; z-index: 1; }
.exp-link { font-size: .82rem; font-weight: 600; color: var(--forest); display: inline-flex; align-items: center; gap: 6px; position: relative; z-index: 1; }
.exp-link svg { width: 16px; height: 16px; transition: transform .3s; }
.exp-card:hover .exp-link svg { transform: translateX(4px); }

/* ---------------- Rooms ---------------- */
.room-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 46px; flex-wrap: wrap; }
.room-tab {
  padding: 10px 22px; border-radius: 100px; border: 1.5px solid rgba(7,27,46,.15);
  background: transparent; font-weight: 600; font-size: .85rem; color: var(--deep-2);
  transition: all .35s var(--ease);
}
.room-tab.active, .room-tab:hover { background: var(--deep-2); color: #fff; border-color: var(--deep-2); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}
.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin: 0;
  cursor: pointer;
  grid-column: span 1;
  grid-row: span 1;
}
.gallery-grid figure.wide { grid-column: span 2; }
.gallery-grid figure.tall { grid-row: span 2; }
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease), filter .5s;
}
.gallery-grid figure:hover img { transform: scale(1.1); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(7,27,46,.85));
  color: #fff; font-size: .85rem; font-weight: 500;
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
.gallery-grid figure:hover figcaption { transform: translateY(0); }
.gallery-grid .zoom-hint {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.7);
  transition: all .35s var(--ease);
}
.gallery-grid figure:hover .zoom-hint { opacity: 1; transform: scale(1); }
.gallery-grid .zoom-hint svg { width: 16px; height: 16px; color: var(--deep); }

.room-panel { display: none; }
.room-panel.active { display: grid; }

/* ---------------- Amenities strip in rooms ---------------- */
.amenity-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 50px;
}
.amenity-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); padding: 12px 20px; border-radius: 100px;
  box-shadow: 0 8px 22px -14px rgba(7,27,46,.25);
  font-size: .85rem; font-weight: 500; color: var(--deep-2);
}
.amenity-chip svg { width: 20px; height: 20px; color: var(--gold); }

/* ---------------- Lightbox ---------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(3,12,20,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 88vw; max-height: 82vh; border-radius: 10px; box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-close { top: 26px; right: 26px; }
.lightbox-nav.prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-nav svg, .lightbox-close svg { width: 22px; height: 22px; }

/* ---------------- Booking ---------------- */
.booking-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.booking-info {
  background: linear-gradient(160deg, var(--deep) 0%, var(--deep-2) 100%);
  color: #fff;
  padding: 56px 44px;
  position: relative;
}
.booking-info h3 { color: #fff; font-size: 1.7rem; }
.booking-info p { color: #c9dbe4; margin-bottom: 30px; }
.booking-contact { display: grid; gap: 20px; margin-bottom: 30px; }
.booking-contact li, .booking-contact a { display: flex; align-items: center; gap: 14px; }
.booking-contact .ic {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.booking-contact .ic svg { width: 20px; height: 20px; color: var(--mist); }
.booking-contact .label { font-size: .72rem; text-transform: uppercase; letter-spacing: 1.5px; color: #9fc0cd; }
.booking-contact .value { font-weight: 600; }

.booking-form {
  background: var(--white);
  padding: 56px 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: .8rem; font-weight: 600; color: var(--deep-2); }
.field input, .field select, .field textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid #e0e6e8;
  font-family: inherit;
  font-size: .92rem;
  background: var(--paper);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--mist);
  box-shadow: 0 0 0 4px rgba(143,211,232,.25);
}
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 6px 0 22px; }
.checkbox-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 10px; border: 1.5px solid #e0e6e8;
  font-size: .85rem; font-weight: 500; color: var(--deep-2);
  cursor: pointer; transition: border-color .3s, background .3s;
}
.checkbox-item:hover { border-color: var(--mist); }
.checkbox-item input { accent-color: var(--forest); width: 17px; height: 17px; }
.checkbox-item.checked { border-color: var(--forest); background: rgba(31,111,84,.06); }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 6px; }
.form-note { font-size: .78rem; color: #7c8890; max-width: 320px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(33,192,99,.1);
  border: 1px solid rgba(33,192,99,.35);
  color: #1a7a44;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 500;
  margin-top: 18px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------------- Testimonials ---------------- */
.testi-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  scroll-snap-align: start;
  flex: 0 0 min(380px, 85vw);
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 14px 34px -18px rgba(7,27,46,.18);
}
.testi-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { color: #435057; font-style: italic; margin-bottom: 20px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mist-soft), var(--gold-soft));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--deep);
}
.testi-person strong { display: block; font-size: .9rem; color: var(--deep-2); }
.testi-person span { font-size: .78rem; color: #8492a0; }

/* ---------------- Map / Contact ---------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 420px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }
.contact-cards { display: grid; gap: 18px; }
.contact-card {
  background: var(--white); border-radius: 16px; padding: 26px;
  display: flex; gap: 18px; align-items: flex-start;
  box-shadow: 0 10px 26px -16px rgba(7,27,46,.2);
  transition: transform .35s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); }
.contact-card .ic {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--mist-soft), var(--paper-2));
  display: flex; align-items: center; justify-content: center;
}
.contact-card .ic svg { width: 22px; height: 22px; color: var(--deep-2); }
.contact-card h4 { margin-bottom: 4px; font-size: 1.02rem; }
.contact-card p, .contact-card a { color: #52616a; font-size: .92rem; display: block; }
.contact-card a:hover { color: var(--forest); }

/* ---------------- Footer ---------------- */
footer {
  background: var(--deep);
  color: #b7ccd6;
  padding: 70px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { color: #9db3bd; margin: 16px 0 20px; font-size: .92rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform .3s;
}
.footer-social a:hover { background: var(--forest); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: #a8bcc6; font-size: .9rem; transition: color .3s, padding-left .3s; }
.footer-col a:hover { color: var(--mist); padding-left: 4px; }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: .82rem; color: #7f97a2;
}
.footer-bottom a { color: #a8bcc6; }
.footer-bottom a:hover { color: var(--mist); }

/* ---------------- Floating WhatsApp ---------------- */
.wa-float {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 900;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #21c063;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(33,192,99,.7);
  animation: pulseWa 2.4s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; color: #fff; }
.wa-float::before {
  content: "";
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #21c063;
  animation: pulseRing 2.4s ease-out infinite;
}

/* ---------------- App bottom tab bar (mobile) ---------------- */
.app-tabbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1150;
  background: rgba(7, 27, 46, .96);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 30px -18px rgba(0,0,0,.6);
}
.app-tabbar ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.app-tabbar li { flex: 1; display: flex; }
.app-tabbar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 2px;
  border-radius: 14px;
  color: #93a9b4;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .2px;
  transition: color .3s, background .3s, transform .25s var(--ease);
}
.app-tabbar a svg { width: 22px; height: 22px; stroke-width: 1.8; transition: transform .3s var(--ease); }
.app-tabbar a.active { color: var(--mist); background: rgba(143,211,232,.1); }
.app-tabbar a.active svg { transform: translateY(-2px) scale(1.08); }
.app-tabbar a:active { transform: scale(.92); }
.app-tabbar .tab-main {
  color: var(--deep);
  position: relative;
}
.app-tabbar .tab-main .tab-fab {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 22px -8px rgba(224,166,58,.8);
  margin-top: -26px;
  border: 4px solid var(--deep);
}
.app-tabbar .tab-main.active { color: var(--gold-soft); }
.app-tabbar .tab-main svg { width: 22px; height: 22px; color: var(--deep); }

@media (max-width: 768px) {
  .app-tabbar { display: block; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .wa-float { bottom: calc(86px + env(safe-area-inset-bottom)); right: 18px; width: 54px; height: 54px; }
  .wa-float svg { width: 26px; height: 26px; }
}
@keyframes pulseWa { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes pulseRing { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }

/* ---------------- Simple page (privacy/terms) ---------------- */
.page-hero {
  padding: 190px 0 90px;
  background: linear-gradient(160deg, var(--deep), var(--deep-2));
  color: #fff;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: #b9cdd8; }
.legal-content { padding: 80px 0; }
.legal-content .container { max-width: 860px; }
.legal-content h2 { margin-top: 40px; font-size: 1.4rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #435057; margin-bottom: 14px; }
.legal-content ul { padding-left: 22px; list-style: disc; }
.legal-content .updated { color: #8492a0; font-size: .85rem; margin-bottom: 40px; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .exp-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { margin-bottom: 60px; }
  .booking-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav.primary-nav, .nav-actions { display: none; }
  .burger { display: block; }
  .logo-sub { display: none; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-grid figure.wide { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .booking-info, .booking-form { padding: 40px 26px; }
}

@media (max-width: 520px) {
  .exp-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; padding: 30px 20px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
