:root {
  --primary: #11b7b0;
  --primary-dark: #0b8f8a;
  --accent: #ff6f61;
  --accent-soft: #ffebe8;
  --text: #1f2937;
  --muted: #6b7280;
  --white: #ffffff;
  --bg: #f8fafc;
  --card: #ffffff;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
}

.logo span {
  color: var(--primary);
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.badge-legal {
  background: #e8fff4;
  color: #0b7a4f;
  border: 1px solid #baf2d3;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.25));
  color: var(--white);
  padding: 5rem 0;
}

.hero h1 {
  font-size: clamp(1.5rem, 3.2vw, 2.7rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 920px;
}

.hero p {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  margin-bottom: 1.4rem;
}

.btn-primary {
  display: inline-block;
  border: none;
  background: linear-gradient(90deg, var(--accent), #ff8a5f);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.quick-info {
  background: var(--bg);
  padding: 1.2rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
}

.quick-grid article {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 0.9rem;
  text-align: center;
  font-size: 0.92rem;
}

.section {
  padding: 4rem 0;
}

.alt-bg {
  background: var(--bg);
}

.section h2 {
  margin-top: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.section-intro {
  color: var(--muted);
  max-width: 900px;
}

.room-block {
  margin-top: 2rem;
  background: var(--card);
  border: 1px solid #eef2f7;
  border-radius: var(--radius);
  padding: 1.2rem;
}

.carousel {
  margin-top: 1rem;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.carousel-track {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f4f8;
}

.carousel-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.4s ease-in-out;
}

.carousel-track img:hover {
  transform: scale(1.06);
}

.carousel-track img.active {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.65);
  color: var(--white);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.amenities-list,
.rules-list,
.distances {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-form {
  margin-top: 1.2rem;
  background: var(--card);
  border: 1px solid #edf2f7;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.form-row label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0.72rem;
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(17, 183, 176, 0.3);
  border-color: var(--primary);
}

.form-error {
  color: #b42318;
  font-weight: 500;
  min-height: 1.4rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.site-footer {
  background: #111827;
  color: #d1d5db;
  padding: 1.5rem 0;
  text-align: center;
}

.site-footer .agency {
  color: #93c5fd;
  font-weight: 600;
}

@media (max-width: 980px) {
  .nav-wrap {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .carousel-track {
    aspect-ratio: 4 / 3;
  }

  .hero h1 {
    font-size: clamp(1.25rem, 6vw, 1.8rem);
  }

  .section h2 {
    font-size: clamp(1.2rem, 5vw, 1.55rem);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 72vh;
  }

  .section {
    padding: 3rem 0;
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .badge-legal {
    font-size: 0.7rem;
  }
}
