:root {
  --primary: #0e5c5a;
  --primary-dark: #0a3f45;
  --accent: #d7a449;
  --accent-soft: #f4ead7;
  --whatsapp: #25d366;
  --text: #1d2939;
  --muted: #667085;
  --surface: #ffffff;
  --surface-soft: #f7f5f0;
  --border: rgba(14, 92, 90, 0.12);
  --shadow: 0 18px 45px rgba(16, 47, 61, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: #fff;
}

a {
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
}

.topbar {
  background: #0a1f2f;
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 0;
  font-size: 14px;
}

.topbar a {
  color: rgba(255, 255, 255, 0.95);
}

.topbar i {
  margin-right: 6px;
  color: #f9d28a;
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 700;
}

.header {
  top: 44px;
  z-index: 997;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}

.header.header-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--border);
}

.header .container {
  min-height: 76px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.logo strong {
  display: block;
  font-size: 1.05rem;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #15918d);
  color: #fff;
  font-weight: 800;
}

.navbar {
  display: flex;
  align-items: center;
  position: static;
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: #243b53;
  font-weight: 600;
  font-size: 14px;
}

.navbar a.active,
.navbar a:hover {
  color: var(--primary);
}

.mobile-nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--primary-dark);
}

.hero {
  margin-top: 120px;
}

.hero-slide {
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 680px;
  color: #fff;
  padding: 60px 0 80px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  margin: 18px 0 16px;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn-main,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-main {
  background: linear-gradient(135deg, var(--accent), #f4c76a);
  color: #12212d;
  box-shadow: 0 12px 30px rgba(215, 164, 73, 0.28);
}

.btn-main:hover {
  transform: translateY(-2px);
  color: #12212d;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-pagination .swiper-pagination-bullet,
.gallery-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active,
.gallery-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
}

.section {
  padding: 90px 0;
}

.section-light {
  background: var(--surface-soft);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading .section-kicker {
  background: rgba(14, 92, 90, 0.1);
  color: var(--primary);
}

.section-heading h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 14px 0 12px;
}

.section-heading p {
  color: var(--muted);
  max-width: 760px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.feature-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
}

.feature-card i {
  font-size: 1.2rem;
  color: var(--primary);
}

.feature-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.about-card,
.booking-info-card,
.booking-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.stat-row div {
  background: var(--surface-soft);
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
}

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

.stat-row span,
.about-points li,
.booking-info-card p,
.form-hint {
  color: var(--muted);
}

.about-points,
.booking-info-card ul,
.room-card ul,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-points li,
.booking-info-card li {
  margin-bottom: 10px;
}

.about-points i,
.booking-info-card i {
  color: var(--primary);
  margin-right: 8px;
}

.room-card {
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

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

.room-card-body {
  padding: 22px;
}

.room-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.room-meta span {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.room-meta strong {
  color: var(--primary);
  font-size: 0.95rem;
}

.room-card p,
.experience-card p,
.footer p {
  color: var(--muted);
}

.room-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 18px;
}

.room-card ul li {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.82rem;
  color: #6d5318;
}

.featured-room {
  transform: translateY(-8px);
}

.experience-card {
  height: 100%;
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.experience-card i {
  font-size: 1.5rem;
  color: var(--primary);
}

.experience-card h4 {
  margin: 16px 0 8px;
  font-size: 1.15rem;
}

.amenity-card,
.testimonial-card,
.location-card {
  height: 100%;
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.amenity-card i {
  font-size: 1.5rem;
  color: var(--primary);
}

.amenity-card h4,
.testimonial-card h5 {
  margin: 16px 0 8px;
}

.amenity-card p,
.testimonial-card p,
.location-card p,
.location-card li {
  color: var(--muted);
}

.testimonial-card .stars {
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 1rem;
  margin-bottom: 12px;
}

.testimonial-card span {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.location-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
}

.location-card li {
  margin-bottom: 10px;
}

.location-card i {
  color: var(--primary);
  margin-right: 8px;
}

.map-wrap {
  height: 100%;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.gallery-slider .swiper-slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 22px;
}

.booking {
  background: linear-gradient(180deg, #ffffff 0%, #f2f7f6 100%);
}

.booking-form label {
  font-weight: 600;
  margin-bottom: 8px;
}

.booking-form .form-control,
.booking-form .form-select {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: none;
}

.booking-form textarea.form-control {
  min-height: auto;
}

.form-hint i {
  color: var(--whatsapp);
  margin-right: 6px;
}

.footer {
  background: #0b1c27;
  color: rgba(255, 255, 255, 0.9);
  padding: 70px 0 24px;
}

.footer h3,
.footer h5 {
  color: #fff;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer p,
.footer span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-btn {
  border-color: rgba(255, 255, 255, 0.35);
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  right: 18px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 999;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.whatsapp-float {
  bottom: 86px;
  background: var(--whatsapp);
  font-size: 1.4rem;
}

.back-to-top {
  bottom: 24px;
  background: var(--primary);
  font-size: 1.6rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .feature-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .navbar {
    position: static;
  }

  .navbar ul {
    display: none;
  }

  .navbar.navbar-mobile ul {
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    width: auto;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
  }

  .navbar.navbar-mobile li {
    width: 100%;
  }

  .navbar.navbar-mobile a {
    display: block;
    padding: 12px 10px;
  }

  .hero {
    margin-top: 116px;
  }

  .hero-slide {
    min-height: 78vh;
  }
}

@media (max-width: 767px) {
  .topbar {
    display: none;
  }

  .header {
    top: 0;
  }

  .hero {
    margin-top: 76px;
  }

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

  .section {
    padding: 72px 0;
  }

  .gallery-slider .swiper-slide img {
    height: 270px;
  }

  .room-meta {
    flex-direction: column;
  }

  .featured-room {
    transform: none;
  }
}
