*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #2d6a4f;
  --green-dark: #1e4d38;
  --green-light: #40916c;
  --green-pale: #d8f3dc;
  --black: #0f0f0f;
  --dark: #1a1a1a;
  --grey: #6b6b6b;
  --light-grey: #f4f4f4;
  --border: #e5e5e5;
  --white: #ffffff;
  --gold: #c9a84c;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

section {
  padding: 72px 0;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.section-title span {
  color: var(--green);
}

.section-sub {
  font-size: 0.95rem;
  color: var(--grey);
  margin-top: 10px;
  max-width: 500px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* ─── SCROLL ANIMATION ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--green-light);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
  cursor: pointer;
}

.nav-links a:hover {
  color: var(--green-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--transition);
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nav-wa {
  background: #25d366;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  display: none;
}

.nav-wa:hover {
  background: #128c7e;
}

.hamburger {
  background: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a,
.mobile-nav button.mobile-nav-link {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  transition: color var(--transition);
  background: none;
  cursor: pointer;
}

.mobile-nav a:hover,
.mobile-nav button.mobile-nav-link:hover {
  color: var(--green-light);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.65) 60%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--green-light);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  color: var(--green-light);
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}

.scroll-indicator {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-mouse::before {
  content: "";
  width: 3px;
  height: 6px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scroll-pulse 1.8s infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }

  50% {
    opacity: 0;
    transform: translateY(6px);
  }
}

/* ─── HIGHLIGHTS ─── */
.highlights {
  background: var(--green);
  padding: 0;
}

.highlights-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.highlight-box {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.highlight-box:nth-child(even) {
  border-right: none;
}

.highlight-box:nth-last-child(-n + 2) {
  border-bottom: none;
}

.highlight-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.highlight-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── ROOMS ─── */
.rooms-section {
  background: var(--white);
}

.rooms-header {
  margin-bottom: 48px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.room-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.room-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.room-card-img img {
  transition: transform 0.5s ease;
}

.room-card:hover .room-card-img img {
  transform: scale(1.05);
}

.room-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.room-card-body {
  padding: 22px;
}

.room-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.room-prices {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.price-orig {
  font-size: 0.85rem;
  color: var(--grey);
  text-decoration: line-through;
}

.price-disc {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
}

.price-per {
  font-size: 0.75rem;
  color: var(--grey);
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.room-feat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.77rem;
  color: var(--grey);
  background: var(--light-grey);
  padding: 4px 10px;
  border-radius: 50px;
}

.room-feat-dot {
  color: var(--green);
  font-size: 0.7rem;
}

.room-book-btn {
  width: 100%;
  background: var(--green);
  color: var(--white);
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.room-book-btn:hover {
  background: var(--green-dark);
}

/* ─── ROOM DETAIL OVERLAY ─── */
#room-detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--white);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#room-detail-overlay.open {
  transform: translateX(0);
}

.room-detail-hero {
  position: relative;
  height: 55vw;
  min-height: 300px;
  max-height: 500px;
}

.room-detail-back {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.room-detail-back:hover {
  background: var(--green);
}

.room-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7));
}

.room-detail-body {
  padding: 32px 0 60px;
}

.room-detail-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.room-detail-prices {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.detail-price-orig {
  font-size: 1rem;
  color: var(--grey);
  text-decoration: line-through;
}

.detail-price-disc {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
}

.detail-per {
  font-size: 0.85rem;
  color: var(--grey);
}

.detail-checkin-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--light-grey);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.checkin-item {
  display: flex;
  flex-direction: column;
}

.checkin-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.checkin-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.facilities-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.facilities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--green-pale);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
}

.facility-item .check {
  color: var(--green);
  font-size: 0.9rem;
}

.room-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.room-gallery-img {
  height: 120px;
  overflow: hidden;
}

.room-gallery-img img {
  transition: transform 0.4s ease;
}

.room-gallery-img:hover img {
  transform: scale(1.05);
}

/* ─── PAGE OVERLAYS (Restaurant / Bar) ─── */
.page-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--white);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-overlay.open {
  transform: translateX(0);
}

.page-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.page-topbar.dark {
  background: rgba(20, 20, 20, 0.97);
  border-color: rgba(255, 255, 255, 0.1);
}

.page-back-btn {
  background: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity var(--transition);
}

.page-back-btn.dark {
  color: var(--gold);
}

.page-back-btn:hover {
  opacity: 0.7;
}

.page-topbar-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  flex: 1;
  text-align: center;
}

.page-topbar-title.dark {
  color: var(--white);
}

.page-hero {
  height: 55vw;
  min-height: 280px;
  max-height: 460px;
  position: relative;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.75));
}

.page-hero-content {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  padding: 0 24px;
  color: var(--white);
}

.page-hero-content h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 6px 0 4px;
  line-height: 1.2;
}

.page-hero-content p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.page-body {
  padding: 36px 0 80px;
}

.page-about {
  font-size: 0.95rem;
  color: var(--grey);
  margin-bottom: 32px;
  max-width: 640px;
  line-height: 1.8;
}

.page-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

/* ─── PHOTO GALLERY ─── */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.photo-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 180px;
}

/* ─── VIDEO CARDS ─── */
.video-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.video-card {
  aspect-ratio: 9/16;
  background: #1a1a1a;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card-label {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
  padding: 0 8px;
}

.video-path-note {
  font-size: 0.75rem;
  color: var(--grey);
  padding: 10px 14px;
  background: #fffbeb;
  border-radius: 8px;
  border-left: 3px solid #f59e0b;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ─── MENU ─── */
.menu-section {
  margin-top: 8px;
}

.menu-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.menu-badge.veg {
  background: #e8f5e9;
  color: #2e7d32;
}

.menu-badge.nonveg {
  background: #fbe9e7;
  color: #bf360c;
}

.menu-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 36px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.menu-img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.menu-item-type {
  font-size: 0.72rem;
  color: var(--grey);
}

.menu-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: auto;
}

.menu-dot.veg {
  background: #4caf50;
  border: 1.5px solid #2e7d32;
}

.menu-dot.nonveg {
  background: #f44336;
  border: 1.5px solid #b71c1c;
}

/* ─── RESTAURANT TEASER ─── */
.restaurant-section {
  background: var(--light-grey);
}

.teaser-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 24px 0;
}

.teaser-img {
  height: 300px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.teaser-images img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.teaser-desc {
  font-size: 0.95rem;
  color: var(--grey);
  margin-bottom: 16px;
  line-height: 1.7;
  max-width: 600px;
}

.teaser-menu-peek {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.menu-peek-item {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--dark);
}

.menu-peek-more {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  background: var(--green-pale);
}

/* ─── BAR TEASER ─── */
.bar-section {
  background: var(--dark);
  color: var(--white);
}

.bar-features-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}

.bar-features-mini span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 7px 16px;
  border-radius: 50px;
}

/* ─── BAR PAGE DARK STYLES ─── */
.bar-about {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 600px;
}

.bar-photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.bar-photo-gallery .photo-gallery-item {
  height: 180px;
}

.bar-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.bar-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.bar-feat-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ─── AMENITIES ─── */
.amenities-section {
  background: var(--white);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.amenity-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--light-grey);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.amenity-box:hover {
  background: var(--green-pale);
  transform: translateY(-4px);
}

.amenity-icon {
  font-size: 1.8rem;
}

.amenity-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--light-grey);
}

.testimonials-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  line-height: 1;
  color: var(--green-pale);
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.95rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
}

.testimonial-location {
  font-size: 0.76rem;
  color: var(--grey);
}

/* ─── CONTACT ─── */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  gap: 32px;
  margin-top: 40px;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--light-grey);
  border-radius: var(--radius);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-item-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 2px;
}

.contact-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-wa-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 28px 20px;
  font-size: 0.82rem;
}

footer strong {
  color: var(--green-light);
}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 32px 24px 40px;
  width: 100%;
  max-width: 540px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 92vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-box {
  transform: none;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.modal-title {
  font-size: 1.2rem;
  font-weight: 800;
}

.modal-sub {
  font-size: 0.82rem;
  color: var(--grey);
  margin-top: 4px;
}

.modal-close {
  background: var(--light-grey);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--border);
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-control:focus {
  border-color: var(--green);
  outline: none;
}

select.form-control {
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

.modal-submit {
  width: 100%;
  background: #25d366;
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  margin-top: 8px;
}

.modal-submit:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

/* ─── RESPONSIVE ─── */
@media (min-width: 640px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlights-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .highlight-box {
    border-bottom: none;
  }

  .highlight-box:nth-child(even) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .highlight-box:last-child {
    border-right: none;
  }

  .photo-gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .bar-photo-gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .modal-box {
    border-radius: var(--radius-lg);
    max-width: 480px;
    margin: auto;
  }

  .modal-overlay {
    align-items: center;
  }

  .facilities-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .room-gallery-img {
    height: 250px;
  }

  .teaser-images {
    grid-template-columns: repeat(4, 1fr);
  }

  .teaser-img {
    height: 200px;
  }

  .photo-gallery-item {
    height: 220px;
  }
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .nav-wa {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  .rooms-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .video-row {
    max-width: 500px;
    color: var(--green-light);
  }

  /* ─── MODAL ─── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .modal-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  .modal-box {
    background: var(--white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 32px 24px 40px;
    width: 100%;
    max-width: 540px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 92vh;
    overflow-y: auto;
  }

  .modal-overlay.open .modal-box {
    transform: none;
  }

  .modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
  }

  .modal-title {
    font-size: 1.2rem;
    font-weight: 800;
  }

  .modal-sub {
    font-size: 0.82rem;
    color: var(--grey);
    margin-top: 4px;
  }

  .modal-close {
    background: var(--light-grey);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
  }

  .modal-close:hover {
    background: var(--border);
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
  }

  .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition);
  }

  .form-control:focus {
    border-color: var(--green);
    outline: none;
  }

  select.form-control {
    cursor: pointer;
  }

  textarea.form-control {
    resize: vertical;
    min-height: 80px;
  }

  .modal-submit {
    width: 100%;
    background: #25d366;
    color: var(--white);
    padding: 16px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    margin-top: 8px;
  }

  .modal-submit:hover {
    background: #128c7e;
    transform: translateY(-2px);
  }

  /* ─── RESPONSIVE ─── */
  @media (min-width: 640px) {
    .rooms-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .highlights-inner {
      grid-template-columns: repeat(4, 1fr);
    }

    .highlight-box {
      border-bottom: none;
    }

    .highlight-box:nth-child(even) {
      border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .highlight-box:last-child {
      border-right: none;
    }

    .photo-gallery {
      grid-template-columns: repeat(4, 1fr);
    }

    .bar-photo-gallery {
      grid-template-columns: repeat(4, 1fr);
    }

    .menu-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .contact-grid {
      grid-template-columns: 1fr 1fr;
    }

    .modal-box {
      border-radius: var(--radius-lg);
      max-width: 480px;
      margin: auto;
    }

    .modal-overlay {
      align-items: center;
    }

    .facilities-list {
      grid-template-columns: repeat(3, 1fr);
    }

    .room-gallery-img {
      height: 250px;
    }

    .teaser-images {
      grid-template-columns: repeat(4, 1fr);
    }

    .teaser-img {
      height: 200px;
    }

    .photo-gallery-item {
      height: 220px;
    }
  }

  @media (min-width: 900px) {
    .nav-links {
      display: flex;
    }

    .nav-wa {
      display: inline-flex;
    }

    .hamburger {
      display: none;
    }

    .rooms-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .video-row {
      max-width: 500px;
    }
  }

  [data-hi] {
    font-size: inherit;
  }
}
