﻿:root {
  --bg: #f4f9ff;
  --surface: #ffffff;
  --surface-alt: #eaf4ff;
  --text: #12304f;
  --text-soft: #395a7c;
  --primary: #0b63b0;
  --primary-strong: #08467d;
  --accent: #f28f1f;
  --highlight: #f8c845;
  --line: #c7def5;
  --success: #0b63b0;
  --shadow: 0 10px 28px rgba(8, 70, 125, 0.14);
  --topbar-height: 42px;
  --nav-height: 86px;
  --header-offset: calc(var(--topbar-height) + var(--nav-height));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  background: linear-gradient(160deg, #f4f9ff 0%, #ebf4ff 62%, #fff7db 100%);
  color: var(--text);
  line-height: 1.6;
  padding-top: var(--header-offset);
}

main {
  margin: 0;
  padding: 0;
}

main > .hero:first-child,
main > .page-hero:first-child {
  margin-top: -27px !important;
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.section {
  padding: 70px 0;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0 0 12px;
  color: var(--primary-strong);
  font-weight: 700;
}

.section-subtitle {
  margin: 0 0 28px;
  color: var(--text-soft);
  max-width: 700px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-offset);
  z-index: 1000;
  background: transparent;
  border-bottom: 0;
}

.top-header {
  position: relative;
  height: var(--topbar-height);
  background: linear-gradient(120deg, #07437a 0%, #0b63b0 56%, #f28f1f 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.top-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(248, 200, 69, 0.22), transparent 55%);
  pointer-events: none;
}

.topbar-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.95;
}

.top-social-links {
  display: flex;
  align-items: center;
  gap: 7px;
}

.top-social-links a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.top-social-links a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.28);
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-contact a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.top-phone {
  opacity: 0.95;
}

.top-whats {
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.nav-shell {
  height: var(--nav-height);
  background: rgba(247, 252, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  height: var(--nav-height);
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--primary-strong);
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  border: 0;
  background: var(--primary);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-strong);
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background: var(--primary-strong);
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-light {
  background: #fff;
  color: var(--primary-strong);
}

.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  color: #fff;
  margin-top: 0 !important;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 5s linear;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7, 34, 64, 0.72), rgba(7, 34, 64, 0.38));
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0 130px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  margin-bottom: 12px;
  opacity: 0.85;
}

.hero h1 {
  font-size: clamp(2rem, 5.2vw, 3.8rem);
  max-width: 780px;
  line-height: 1.18;
  margin: 0;
}

.hero p {
  max-width: 640px;
  margin-top: 14px;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
}

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

.booking-box {
  position: relative;
  z-index: 4;
  margin-top: -76px;
}

.booking-form {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr auto;
  gap: 14px;
  padding: 18px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-field label {
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-field input,
.booking-field select,
.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.booking-title {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--primary-strong);
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-title i {
  color: var(--accent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.highlights-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
}

.highlights-list i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff1bf;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.accommodation-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.preview-card {
  overflow: hidden;
}

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

.preview-body {
  padding: 16px;
}

.preview-body h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--primary-strong);
}

.preview-body p {
  margin: 0 0 10px;
  color: var(--text-soft);
  font-size: 0.93rem;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.icon-list {
  list-style: none;
  margin: 0;
  padding: 20px;
  display: grid;
  gap: 12px;
}

.icon-list li {
  display: flex;
  gap: 11px;
  align-items: center;
  color: var(--text);
  font-weight: 500;
}

.icon-list i {
  color: var(--primary);
  width: 22px;
  text-align: center;
}

.cta-strip {
  background: linear-gradient(130deg, #0b63b0, #f28f1f);
  color: #fff;
  padding: 34px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--text-soft);
}

.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  margin-top: 0 !important;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 34, 64, 0.62);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin: 0 0 10px;
}

.page-hero p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.accommodation-list {
  display: grid;
  gap: 24px;
}

.accommodation-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) 1.35fr;
  gap: 0;
  overflow: hidden;
}

.accommodation-gallery {
  background: #e8f3ff;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accommodation-main {
  width: 100%;
  height: auto;
  min-height: 220px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  cursor: zoom-in;
}

.accommodation-main-wrap {
  position: relative;
  isolation: isolate;
}

.zoom-trigger {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(8, 30, 55, 0.54);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.zoom-trigger:hover {
  background: rgba(8, 30, 55, 0.72);
}

.zoom-trigger:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.zoom-trigger i {
  font-size: 0.92rem;
}

.thumb-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scroll-behavior: smooth;
}

.thumb {
  flex: 0 0 94px;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  height: 70px;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb.active {
  border-color: var(--primary);
}

.accommodation-content {
  padding: 22px;
  min-width: 0;
}

.accommodation-content h2 {
  margin: 0 0 10px;
  color: var(--primary-strong);
  font-size: 1.5rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.accommodation-content p {
  margin: 0 0 16px;
  color: var(--text-soft);
  width: 100%;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

.facilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.facilities li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text);
  font-size: 0.92rem;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.35;
}

.facility-text {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.facilities i {
  color: var(--primary);
  margin-top: 4px;
}

.accommodation-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.accommodation-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(5, 22, 40, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.accommodation-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-figure {
  margin: 0;
  max-width: min(1100px, 92vw);
  width: 100%;
}

.lightbox-image {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.28);
}

.lightbox-caption {
  color: #fff;
  text-align: center;
  margin-top: 10px;
  font-size: 0.92rem;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.lightbox-close i,
.lightbox-nav i {
  font-size: 1.1rem;
}

.no-scroll {
  overflow: hidden;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.package-card {
  overflow: hidden;
}

.package-card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}

.package-body {
  padding: 18px;
}

.package-tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff0b8;
  color: var(--primary-strong);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.package-body h3 {
  margin: 0 0 6px;
  color: var(--primary-strong);
}

.package-meta {
  margin: 0 0 10px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.package-body p {
  margin: 0 0 14px;
  color: var(--text-soft);
}

.gallery-controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filter-btn {
  border-radius: 999px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text-soft);
  font-weight: 600;
  cursor: pointer;
}

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

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: zoom-in;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  font-size: 0.84rem;
  color: #fff;
  background: linear-gradient(to top, rgba(6, 29, 54, 0.76), transparent);
}

.gallery-item.hidden {
  display: none;
}

.about-deep-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

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

.stat-box {
  padding: 18px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 1.7rem;
  color: var(--primary-strong);
}

.stat-box span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  padding: 20px;
}

.contact-card h3 {
  margin-top: 0;
  color: var(--primary-strong);
}

.contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-info li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
}

.whatsapp-highlight {
  background: #fff5cd;
  border: 1px solid #f4cc60;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.whatsapp-highlight i {
  color: var(--accent);
  font-size: 1.3rem;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 10px;
}

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

.site-footer {
  background: #04294a;
  color: #d9ebff;
  margin-top: 60px;
  padding-top: 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 18px;
  padding-bottom: 28px;
}

.footer-title {
  margin: 0 0 12px;
  color: #f3f9ff;
  font-size: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.footer-links,
.footer-contact,
.footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-contact a {
  color: #bdd7f4;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 200, 69, 0.22);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #92bee7;
  font-size: 0.84rem;
  padding: 14px 0;
  text-align: center;
}

.floating-whatsapp,
.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  transition: transform 0.22s ease, opacity 0.22s ease, background-color 0.22s ease;
}

.floating-whatsapp {
  left: 18px;
  background: #25d366;
  color: #fff;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
}

.floating-whatsapp i,
.scroll-top-btn i {
  font-size: 1.45rem;
}

.scroll-top-btn {
  right: 18px;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.scroll-top-btn:hover {
  background: var(--primary-strong);
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-form .btn {
    width: 100%;
  }

  .facilities {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --topbar-height: 36px;
    --nav-height: 78px;
    --header-offset: calc(var(--topbar-height) + var(--nav-height));
  }

  .nav-wrap {
    height: var(--nav-height);
    min-height: 0;
  }

  .topbar-wrap {
    gap: 8px;
  }

  .top-label {
    display: none;
  }

  .top-contact a {
    font-size: 0.76rem;
  }

  .top-whats {
    padding: 4px 9px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 4%;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 12px;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    min-width: 210px;
    display: none;
  }

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

  .hero {
    min-height: 72vh;
  }

  .hero-content {
    padding: 70px 0 110px;
  }

  .about-grid,
  .payment-grid,
  .about-deep-grid,
  .contact-grid,
  .accommodation-card {
    grid-template-columns: 1fr;
  }

  .accommodation-card {
    display: flex;
    flex-direction: column;
  }

  .accommodation-gallery,
  .accommodation-content {
    width: 100%;
  }

  .accommodation-main {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .accommodation-content {
    padding: 18px;
  }

  .accommodation-content h2 {
    font-size: 1.3rem;
    line-height: 1.25;
  }

  .accommodation-content p {
    font-size: 0.97rem;
    line-height: 1.5;
  }

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

  .package-grid,
  .accommodation-preview-grid,
  .stat-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .thumb {
    flex-basis: 84px;
    height: 64px;
  }

  .zoom-trigger {
    top: 8px;
    right: 8px;
    width: 42px;
    height: 42px;
    border-color: rgba(255, 255, 255, 0.86);
    background: rgba(8, 30, 55, 0.82);
  }
}

@media (max-width: 520px) {
  .container {
    width: min(1140px, 94%);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .accommodation-gallery {
    padding: 10px;
  }

  .accommodation-main {
    aspect-ratio: 5 / 4;
  }

  .accommodation-content {
    padding: 14px;
  }

  .accommodation-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-controls {
    bottom: 16px;
  }

  .whatsapp-highlight {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-contact .top-whats .contact-text {
    display: none;
  }

  .top-contact .top-whats {
    padding: 4px 8px;
  }

  .floating-whatsapp,
  .scroll-top-btn {
    width: 52px;
    height: 52px;
    bottom: 14px;
  }

  .floating-whatsapp {
    left: 12px;
  }

  .scroll-top-btn {
    right: 12px;
  }
}
