/* ============================================================
   TRION HOMESTAY — Main Stylesheet
   Design: Refined Maritime Minimalism
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --navy:         #1C3066;
  --navy-dark:    #0F1E45;
  --navy-mid:     #243B7A;
  --navy-light:   #3A5BA0;
  --navy-faint:   rgba(28, 48, 102, 0.06);
  --silver:       #A8B4C0;
  --silver-light: #CDD5DF;
  --white:        #FFFFFF;
  --off-white:    #F8F7F5;
  --cream:        #F2EDE7;
  --text:         #1A1A2E;
  --text-med:     #4A4A5E;
  --text-light:   #7A7A90;
  --border:       #DDE2EE;
  --green-wa:     #25D366;

  --shadow-xs: 0 1px 4px rgba(28,48,102,0.07);
  --shadow-sm: 0 2px 12px rgba(28,48,102,0.09);
  --shadow-md: 0 6px 28px rgba(28,48,102,0.12);
  --shadow-lg: 0 12px 56px rgba(28,48,102,0.16);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --container: 1200px;
  --r:    8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --ease: 0.3s ease;
  --ease-slow: 0.65s cubic-bezier(0.22,1,0.36,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-label--light { color: var(--silver-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title--light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-med);
  max-width: 580px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  border: 2px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28,48,102,0.28);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-nav {
  padding: 10px 20px;
  font-size: 0.82rem;
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  border-radius: var(--r);
}
.btn-nav:hover {
  background: var(--navy-dark);
  transform: none;
  box-shadow: none;
}

.btn-full { width: 100%; justify-content: center; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--ease-slow), transform var(--ease-slow);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px 0;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo {
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--ease);
}
.navbar.scrolled .nav-logo img { filter: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: 28px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--navy);
  transition: width var(--ease);
}
.navbar.scrolled .nav-links a { color: var(--text-med); }
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.85);
  padding: 5px 10px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 5px;
  transition: all var(--ease);
}
.navbar.scrolled .lang-toggle {
  color: var(--text-med);
  border-color: var(--border);
}
.lang-toggle:hover { background: rgba(255,255,255,0.12); }
.navbar.scrolled .lang-toggle:hover { background: var(--navy-faint); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: 12px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav-actions .btn-nav { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: var(--shadow-md);
    margin-right: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    color: var(--text);
    padding: 13px 28px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: heroZoom 10s ease-out forwards;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(15,30,69,0.62) 0%,
    rgba(15,30,69,0.80) 45%,
    rgba(15,30,69,0.96) 100%
  );
}

/* Bottom fade into stats strip */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--navy-dark));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(44px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-bottom: 22px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--silver-light);
  opacity: 0.7;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 600;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 26px;
  letter-spacing: -0.5px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 42px;
  line-height: 1.75;
}
.hero-sub strong { color: var(--white); }

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-cta .btn-primary {
  border-color: rgba(255,255,255,0.45);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
}
.hero-cta .btn-primary:hover {
  border-color: rgba(255,255,255,0.75);
  box-shadow: 0 8px 24px rgba(28,48,102,0.35);
}

.hero-scroll {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1.2s both;
}
.scroll-bar {
  width: 1.5px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDrop 2s ease infinite;
}
@keyframes scrollDrop {
  0%  { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--navy-dark);
  padding: 28px 0;
}
.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.strip-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.85);
}
.strip-stat-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-light);
  flex-shrink: 0;
}
.strip-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.strip-stat-num small {
  font-size: 0.85rem;
  font-weight: 400;
  margin-left: 2px;
}
.strip-stat-lbl {
  font-size: 0.78rem;
  color: var(--silver);
  letter-spacing: 0.5px;
}
.strip-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* ===== ABOUT ===== */
.about {
  padding: 104px 0;
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.about-text .section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
}
.about-desc {
  color: var(--text-med);
  margin-bottom: 18px;
  line-height: 1.85;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  box-shadow: var(--shadow-xs);
}
.badge svg { color: var(--navy); }

.about-images {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 500px;
}
.about-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-img:hover img { transform: scale(1.05); }
.about-img--main {
  grid-row: span 2;
}

/* ===== ROOMS ===== */
.rooms {
  padding: 104px 0;
  background: var(--white);
}

.room-card {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 8px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--off-white);
}

.room-gallery {
  display: flex;
  flex-direction: column;
}
.room-main-img {
  flex: 1;
  overflow: hidden;
  min-height: 380px;
  max-height: 740px;
  position: relative;
}
.room-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.room-main-img:hover img { transform: scale(1.04); }

.room-img-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.22);
  color: var(--white);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  z-index: 2;
  transition: background var(--ease);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  line-height: 1;
}
.room-img-nav:hover { background: rgba(255,255,255,0.40); }
.room-img-prev { left: 12px; }
.room-img-next { right: 12px; }

.room-thumbs-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  background: var(--white);
}
.thumb-nav {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: none;
  color: var(--navy);
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: opacity var(--ease);
  padding: 0;
  line-height: 1;
}
.thumb-nav:hover  { opacity: 0.6; }
.thumb-nav:disabled { opacity: 0.18; cursor: default; }

.room-thumbs {
  display: flex;
  gap: 10px;
  overflow: hidden;
  scroll-behavior: smooth;
  flex: 1;
}
.thumb {
  flex: 0 0 calc((100% - 40px) / 5);
  height: 72px;
  object-fit: cover;
  cursor: pointer;
  border: 2.5px solid transparent;
  border-radius: 5px;
  transition: border-color var(--ease), opacity var(--ease);
  opacity: 0.65;
}
.thumb:hover, .thumb.active {
  border-color: var(--navy);
  opacity: 1;
}

.room-info {
  padding: 44px 44px 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.room-type {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.room-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
}

.room-price-block {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  border: 1px solid var(--border);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.price-from { font-size: 0.8rem; color: var(--text-light); }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.price-per { font-size: 0.9rem; color: var(--text-med); }
.price-note {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 4px;
}

.room-capacity-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-med);
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
}

.amenities-title {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}
.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.amenity-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  color: var(--text-med);
}
.amenity-list li svg { color: var(--navy); flex-shrink: 0; }

.floor-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
  background: rgba(28,48,102,0.05);
  border-left: 3px solid var(--navy);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 12px 14px;
  line-height: 1.55;
}
.floor-note svg { color: var(--navy); flex-shrink: 0; margin-top: 1px; }

.room-ctas { display: flex; flex-direction: column; gap: 10px; }

/* ===== FACILITIES ===== */
.facilities {
  padding: 104px 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.facilities::before {
  content: '';
  position: absolute;
  top: -20%; right: -8%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(58,91,160,0.18) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.facilities::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(28,48,102,0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.facility-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 32px 20px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  transition: all var(--ease);
  cursor: default;
}
.facility-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.fac-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver-light);
  transition: all var(--ease);
}
.facility-card:hover .fac-icon {
  background: var(--navy-mid);
  color: var(--white);
}

.facility-card span {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 104px 0;
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  cursor: pointer;
  background: var(--border);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.g-item:hover img { transform: scale(1.1); }

.g-item--tall  { grid-row: span 2; }
.g-item--wide  { grid-column: span 2; }

.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,30,69,0.38);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay-icon {
  width: 48px; height: 48px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 300;
  transform: scale(0.8);
  transition: transform var(--ease);
}
.g-item:hover .g-overlay-icon { transform: scale(1); }

/* ===== BOOKING ===== */
.booking {
  padding: 104px 0;
  background: var(--white);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.booking-info .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}
.booking-info > p {
  color: var(--text-med);
  line-height: 1.85;
  margin-bottom: 36px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.policy-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--r);
  border: 1px solid var(--border);
}
.policy-icon {
  width: 36px; height: 36px;
  background: var(--navy-faint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.policy-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.policy-item span {
  font-size: 0.82rem;
  color: var(--text-med);
  line-height: 1.5;
}

.form-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.form-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-card-title svg { color: var(--green-wa); }

.booking-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: 0.925rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  width: 100%;
}
.form-group input::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28,48,102,0.09);
}
.form-group input.error { border-color: #e53e3e; }

.btn-submit {
  margin-top: 6px;
  padding: 16px 28px;
  font-size: 0.95rem;
  background: #25D366;
  border-color: #25D366;
}
.btn-submit:hover {
  background: #128C7E;
  border-color: #128C7E;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* ===== LOCATION ===== */
.location {
  padding: 104px 0;
  background: var(--off-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 52px;
  align-items: start;
}

.location-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 460px;
  border: 1px solid var(--border);
}
.location-map iframe { display: block; width: 100%; height: 100%; }

.location-details { display: flex; flex-direction: column; gap: 32px; }

.loc-block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.loc-block address {
  font-style: normal;
  color: var(--text-med);
  line-height: 1.85;
  font-size: 0.925rem;
  margin-bottom: 16px;
}

.nearby-list { display: flex; flex-direction: column; gap: 11px; }
.nearby-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-med);
}
.nearby-dot {
  width: 7px; height: 7px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
}
.nearby-item strong { color: var(--text); }
.nearby-item span { color: var(--navy); font-weight: 600; margin-left: auto; }

.contact-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--ease);
  color: var(--text);
  font-weight: 600;
}
.contact-wa:hover {
  border-color: var(--green-wa);
  background: rgba(37,211,102,0.05);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.contact-wa svg { color: var(--green-wa); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  padding: 68px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-img {
  height: 46px; width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--silver);
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: all var(--ease);
}
.footer-socials a:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}
.footer-nav { display: flex; flex-direction: column; gap: 11px; }
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--white); }

.footer-address {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 14px;
  font-style: normal;
}
.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: color var(--ease);
}
.footer-wa-link:hover { color: var(--white); }
.footer-lang-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px;
  transition: all var(--ease);
  margin-top: 4px;
}
.footer-lang-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5,10,30,0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 24px;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox img {
  max-width: min(90vw, 1000px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--r);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.lb-caption {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  letter-spacing: 0.5px;
}
.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--ease);
}
.lb-close:hover { background: rgba(255,255,255,0.2); }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--ease);
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  z-index: 800;
  transition: all var(--ease);
}
.wa-float:hover {
  background: #128C7E;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid    { grid-template-columns: 1fr; gap: 56px; }
  .about-images  { max-height: 380px; }

  .room-card { grid-template-columns: 1fr; }
  .room-info { padding: 30px; }

  .facilities-grid { grid-template-columns: repeat(4, 1fr); }

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

  .booking-grid  { grid-template-columns: 1fr; gap: 56px; }
  .location-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > :first-child { grid-column: span 2; }

  .strip-divider { display: none; }
}

@media (max-width: 768px) {
  /* .about-images { grid-template-columns: 1fr; height: 300px; }
  .about-img:not(.about-img--main) { display: none; }
  .about-img--main { grid-row: span 1; } */

  .facilities-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .g-item--tall  { grid-row: span 1; }
  .g-item--wide  { grid-column: span 1; }

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

  .footer-top { grid-template-columns: 1fr; }
  .footer-top > :first-child { grid-column: span 1; }

  .hero-scroll { display: none; }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .about, .rooms, .facilities, .gallery, .booking, .location { padding: 72px 0; }
  .form-card { padding: 28px 22px; }
  .room-info { padding: 0 24px 28px; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .stats-inner { gap: 24px; }
}
