:root {
  --cyan: #11b8d4;
  --cyan-dark: #0796b4;
  --cyan-soft: #e7fbff;
  --green: #21d36b;
  --navy: #062945;
  --text: #10233d;
  --muted: #68798c;
  --line: #dceaf0;
  --surface: #ffffff;
  --page: #f6f9fb;
  --shadow: 0 14px 35px rgba(17, 45, 72, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--page);
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #d8f5fb, #eef3f7);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header{
  transition:0.3s;
}

.active-header{
  background:rgba(14,165,233,0.95);

  backdrop-filter:blur(10px);

  box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.logo-img{
  width:55px;
  height:55px;

  object-fit:contain;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: #ffffff;
  border: 4px solid var(--cyan-soft);
  font-weight: 800;
  font-size: 12px;
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  display: block;
  max-width: 210px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
}

.menu a:hover {
  color: var(--cyan-dark);
}

.btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--cyan);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(17, 184, 212, 0.26);
}

.btn-green {
  background: var(--green);
  color: #ffffff;
}

.btn-outline,
.btn-outline-light {
  background: #ffffff;
  color: var(--cyan-dark);
  border-color: var(--cyan);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-light {
  background: #ffffff;
  color: var(--cyan-dark);
}

.btn-muted {
  background: #eef2f4;
  color: #9aa6af;
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-overlay {
  background: linear-gradient(rgba(5, 167, 195, 0.84), rgba(4, 55, 88, 0.72));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 84px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 12px;
  font-weight: 600;
}

.hero h1 {
  margin: 24px 0 8px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.07;
  letter-spacing: 0;
}

.highlight {
  display: inline-flex;
  margin: 0 auto 18px;
  padding: 9px 18px;
  border-radius: 8px;
  background: var(--cyan);
  box-shadow: 0 12px 24px rgba(3, 60, 78, 0.25);
  font-size: 22px;
}

.hero p {
  width: min(560px, 100%);
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.7;
  color: white;
}

.hero-actions,
.actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.stats {
  background: var(--cyan);
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats article {
  text-align: center;
  padding: 24px 12px;
}

.stats strong {
  display: block;
  font-size: 27px;
}

.stats span {
  font-size: 12px;
  opacity: 0.9;
}

.section,
.split-section,
.cta {
  padding: 78px 0;
  background: #ffffff;
}

.muted {
  background: var(--page);
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.eyebrow {
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  margin: 8px 0 10px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.section-head p {
  width: min(620px, 100%);
  margin: 0 auto;
}

.feature-grid,
.rooms-grid,
.testimonial-grid,
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.room-card,
.testimonial-grid article,
.rules-grid article,
.list-card,
.address-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(18, 48, 72, 0.05);
}

.feature-card {
  min-height: 160px;
  padding: 24px;
}

.icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--cyan-soft);
  color: var(--cyan-dark);
  font-weight: 800;
}

h3 {
  margin: 16px 0 8px;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 42px;
}

.image-card {
  position: relative;
}

.image-card img,
.detail-photo img {
  height: 330px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  left: -18px;
  bottom: 24px;
  padding: 13px 18px;
  border-radius: 8px;
  background: var(--cyan);
  color: #ffffff;
  font-weight: 800;
}

.pricing-band {
  padding: 70px 0;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), #0792b2);
}

.pricing-band p {
  color: rgba(255, 255, 255, 0.84);
}

.price-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 30px 0 22px;
  flex-wrap: wrap;
}

.price-row article {
  min-width: 220px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
}

.featured-price {
  background: #ffffff !important;
  color: var(--cyan-dark);
}

.price-row span,
.price-row small {
  display: block;
}

.price-row strong {
  display: block;
  margin: 8px 0 2px;
  font-size: 28px;
}

.room-card {
  position: relative;
  padding: 14px;
}

.room-card.active {
  border-color: var(--cyan);
  box-shadow: 0 16px 38px rgba(17, 184, 212, 0.18);
}

.room-card.disabled {
  opacity: 0.76;
}

.room-card img {
  height: 190px;
  border-radius: 8px;
}

.status {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
}

.available {
  background: var(--green);
}

.full {
  background: #ef4444;
}

.room-card strong {
  color: var(--cyan-dark);
  font-size: 24px;
}

.room-card ul,
.facility-list ul,
.address-card ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.room-card .btn {
  width: 100%;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 54px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.mini-stats span,
.facility-list,
.booking-card {
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 20px;
}

.booking-card {
  align-self: end;
  background: linear-gradient(135deg, var(--cyan), #0b91b2);
  color: #ffffff;
}

.booking-card span,
.booking-card small {
  display: block;
}

.booking-card strong {
  display: block;
  margin: 8px 0 2px;
  font-size: 28px;
}

.facility-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.list-card {
  margin-bottom: 12px;
  padding: 17px 20px;
  font-weight: 600;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.map-placeholder {
  height: 350px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #e9edf0;
  color: var(--muted);
  font-weight: 800;
}

.full {
  width: 100%;
}

.address-card {
  padding: 26px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.mini-grid span {
  padding: 14px;
  border-radius: 8px;
  background: var(--cyan-soft);
  font-weight: 700;
}

.gallery-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery-preview img {
  height: 220px;
  border-radius: 8px;
}

.rules-grid article {
  padding: 24px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 12px;
}

.photo-grid img {
  height: 100%;
  border-radius: 8px;
}

.photo-grid img:first-child,
.photo-grid img:nth-child(4) {
  grid-column: span 2;
}

.testimonial-grid article {
  padding: 24px;
}

.testimonial-grid strong {
  color: #f2b705;
}

.testimonial-grid span {
  color: var(--cyan-dark);
  font-weight: 800;
}

.cta {
  text-align: center;
}

.cta p {
  width: min(620px, 100%);
  margin: 0 auto 22px;
}

.footer {
  padding: 54px 0 18px;
  color: rgba(255, 255, 255, 0.84);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 48px;
}

.brand-footer {
  color: #ffffff;
}

.footer p,
.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.footer h3 {
  color: #ffffff;
  margin-top: 0;
}

.footer a:not(.brand) {
  display: block;
  margin-bottom: 10px;
}

.copyright {
  margin: 36px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 12px;
}

@media (max-width: 900px) {
  .topbar-inner,
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    padding: 14px 0;
  }

  .menu {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .stats-grid,
  .feature-grid,
  .rooms-grid,
  .detail-grid,
  .facility-columns,
  .location-grid,
  .split,
  .rules-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero h1 {
    font-size: 34px;
  }

  .highlight {
    font-size: 18px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section,
  .split-section,
  .cta {
    padding: 58px 0;
  }

  .image-card img,
  .detail-photo img,
  .map-placeholder {
    height: 260px;
  }

  .gallery-preview,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .photo-grid img:first-child,
  .photo-grid img:nth-child(4) {
    grid-column: span 1;
  }
}