:root {
  --brand: #10875f;
  --brand-dark: #0c6a4b;
  --brand-soft: #e7f5ef;
  --text: #1f2937;
  --muted: #6b7280;
  --surface: #ffffff;
  --bg: #f4f7f6;
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(16, 135, 95, 0.08), transparent 35%),
    radial-gradient(circle at 100% 100%, rgba(16, 135, 95, 0.06), transparent 30%),
    var(--bg);
}

.topbar {
  border-bottom: 1px solid rgba(16, 135, 95, 0.15);
}

header.horizontal-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

header.horizontal-header .brand h2 a {
  color: var(--brand) !important;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-logo {
  height: 38px;
  width: auto;
  display: block;
}

header.horizontal-header .main-menu .menu .menu-item a,
header.horizontal-header.scroll-header .main-menu .menu .menu-item a {
  color: var(--muted);
}

header.horizontal-header .main-menu .menu .menu-item a:hover,
header.horizontal-header .main-menu .menu .menu-item.active a {
  color: var(--brand);
}

.btn,
.btn-primary,
.btn.btn-blue {
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.btn-primary,
.btn.btn-blue {
  background-color: var(--brand) !important;
  border-color: var(--brand) !important;
  color: #fff !important;
  box-shadow: 0 10px 18px rgba(16, 135, 95, 0.25);
}

.btn-primary:hover,
.btn.btn-blue:hover {
  background-color: var(--brand-dark) !important;
  border-color: var(--brand-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(16, 135, 95, 0.32);
}

.contact .btn.btn-blue {
  padding: 10px 20px;
}

header.horizontal-header .main-menu .menu .menu-item.menu-btn .btn {
  margin-top: 18px;
  padding: 10px 22px;
  font-weight: 700;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.section-title h2:after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), #39b588);
}

.section-title .section-subtitle {
  display: block;
  margin-top: 10px;
  max-width: 900px;
}

.room-grid-item,
.contact .inner,
.modal-content,
.card {
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

/* Rooms grid refresh */
.room-grid-item {
  overflow: hidden;
  border: 1px solid rgba(16, 135, 95, 0.12);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.room-grid-item:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 135, 95, 0.28);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
}

.room-grid-item figure {
  position: relative;
  overflow: hidden;
}

.room-grid-item figure img {
  transition: transform .6s ease, filter .35s ease;
}

.room-grid-item:hover figure img {
  transform: scale(1.06);
  filter: saturate(1.06);
}

.room-grid-item .room-info {
  border: 0;
  border-top: 1px solid rgba(16, 135, 95, 0.10);
  padding: 22px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.room-grid-item .room-info .room-title a {
  color: #1f2937;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .2px;
}

.room-grid-item .room-info .room-title {
  flex: 0 0 100%;
  margin-bottom: 2px;
}

.room-grid-item .room-info p {
  color: #6b7280;
  font-size: 13px;
}

.room-grid-item .room-info p:after {
  width: 42px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), #39b588);
}

.room-grid-item .room-price {
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(16, 135, 95, 0.22);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.14);
}

.price-span {
  color: var(--brand);
  font-size: 34px;
  line-height: 1;
}

.room-grid-item .room-services {
  left: 18px;
  bottom: 16px;
  display: flex;
  gap: 8px;
}

.room-grid-item .room-services i {
  width: 34px;
  height: 34px;
  margin: 0;
  line-height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(16, 135, 95, 0.20);
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.95);
}

.room-grid-item .room-services i:hover {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 18px rgba(16, 135, 95, 0.35);
}

.room-book-btn {
  display: inline-flex;
  margin-top: 0;
}

.room-grid-item .room-info .button-span.room-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 3px 18px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #1f2937;
  font-size: 13px;
  border: 1px solid rgba(16, 135, 95, 0.18);
}

.room-grid-item .room-info .button-span.room-meta i {
  color: var(--brand);
}

.contact .nav-tabs .nav-link.active {
  color: var(--brand);
  border-color: transparent transparent var(--brand) transparent;
}

.form-control:focus {
  border-color: rgba(16, 135, 95, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(16, 135, 95, 0.16);
}

.whatsapp-float {
  background-color: var(--brand) !important;
  box-shadow: 0 10px 24px rgba(16, 135, 95, 0.35);
}

footer {
  background: #0f172a;
}

footer h3 {
  color: #ffffff;
}

footer a:hover {
  color: #7de2bf;
}

.blog-post-cover {
  position: relative;
}

.blog-post-cover:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(5, 20, 15, 0.20) 0%, rgba(16, 135, 95, 0.42) 60%, rgba(16, 135, 95, 0.15) 100%);
}

.blog-post-cover .inner {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 110px;
}

.booking-hero-cta {
  max-width: 700px;
  color: #fff;
}

.booking-hero-kicker {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 14px;
}

.booking-hero-cta h1 {
  color: #fff;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.booking-hero-cta p {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 24px;
}

.booking-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.booking-direct-strip {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: 20px 0;
}

.booking-direct-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.booking-direct-strip p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.booking-direct-strip .btn {
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* About section refresh */
section.about {
  background:
    linear-gradient(180deg, #f4f7f6 0%, #eef5f2 100%);
  position: relative;
}

section.about .container {
  position: relative;
  z-index: 2;
}

.about-row {
  align-items: center;
  margin-bottom: 26px;
}

.about-row-main {
  margin-bottom: 34px;
}

.about-intro {
  background: #fff;
  border: 1px solid rgba(16, 135, 95, 0.14);
  border-radius: 18px;
  padding: 26px 26px 22px;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.10);
}

.about-intro p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-feature-card {
  background: #fff;
  border-left: 5px solid var(--brand);
  border-radius: 12px;
  padding: 20px 22px 16px;
  margin-bottom: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.about-feature-card p {
  color: #4b5563;
  margin-bottom: 6px;
  line-height: 1.7;
}

.about-image-wrap {
  position: relative;
  padding: 10px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(16, 135, 95, 0.15);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.10);
}

.about-image {
  border-radius: 12px;
  margin-bottom: 0 !important;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .header-logo {
    height: 30px;
  }

  .booking-hero-cta h1 {
    font-size: 34px;
  }

  .booking-hero-cta p {
    font-size: 16px;
  }

  .booking-direct-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-intro,
  .about-feature-card {
    padding: 18px;
  }
}
