/* 
  PREMIUM CSS - Hotel Shetkari Farm and Resort
  Built with HTML5, CSS3, Vanilla JS
*/

:root {
  --primary: #4A6741;
  --primary-dark: #2F4528;
  --primary-light: #7A9E6E;
  --secondary: #D4AF37; /* Gold accent */
  --accent: #E8D8BA; /* Warm beige */
  --bg-dark: #121A14;
  --bg-muted: #F8F5F0;
  --bg-light: #FFFFFF;
  --text-dark: #2A332C;
  --text-muted: #556B5A;
  --text-light: #F4F6F4;
  
  --font-main: 'Mukta', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  --glass-blur: blur(16px);
  
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --transition: 0.4s var(--ease);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

img.img-loading {
  opacity: 0.75;
  filter: blur(4px);
  background: linear-gradient(90deg, #eef1ee 25%, #dde4dc 50%, #eef1ee 75%);
  background-size: 200% 100%;
  animation: imgSkeleton 1.2s ease-in-out infinite;
}

img.img-loaded,
img.img-fallback-visible {
  opacity: 1;
  filter: none;
  animation: none;
  transition: opacity 0.35s ease, filter 0.35s ease;
}

@keyframes imgSkeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Reveal animation only hides content when JS is active.
   If JS is slow/blocked, content remains visible so images never get trapped. */
.reveal {
  transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.js-ready .reveal:not(.active) {
  opacity: 0;
  transform: translateY(40px);
}

/* LAYOUT */
.container {
  width: min(100% - 2rem, 1200px);
  max-width: 100%;
  margin: 0 auto;
}

.section {
  width: 100%;
  max-width: 100%;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bg-muted { background-color: var(--bg-muted); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-light); }
.bg-primary { background-color: var(--primary); color: var(--text-light); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.full-width { width: 100%; }

/* SCROLL PROGRESS */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--secondary), var(--primary-light));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* CSS GRAPHICS / DECORATIVE BLOBS */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.4;
  animation: float 10s ease-in-out infinite alternate;
}
.blob-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: var(--primary-dark); }
.blob-2 { bottom: -10%; right: -10%; width: 400px; height: 400px; background: var(--secondary); animation-delay: 2s; opacity: 0.2; }
.blob-3 { top: 20%; right: -5%; width: 300px; height: 300px; background: var(--accent); opacity: 0.6; }
.blob-4 { bottom: 10%; left: -10%; width: 350px; height: 350px; background: var(--primary-light); opacity: 0.2; }

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -50px) scale(1.1); }
}

/* DECORATIVE ELEMENTS */
.section-badge {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(74, 103, 65, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 1rem;
  font-weight: 600;
}
.light-badge {
  background: rgba(212, 175, 55, 0.15);
  color: var(--secondary);
}
.section-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--secondary);
}
.text-center .section-title::after { left: 50%; transform: translateX(-50%); }

.lead-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.text-light .lead-text { color: rgba(255,255,255,0.8); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(74, 103, 65, 0.2);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(74, 103, 65, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-glass {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-glass:hover {
  background: #fff;
  color: var(--primary-dark);
}
.btn-shine::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: shine 4s ease-in-out infinite;
}
@keyframes shine {
  0% { left: -100%; }
  20%, 100% { left: 200%; }
}

/* TOP BAR */
.announcement-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  padding: 8px 0;
  position: relative;
  z-index: 1000;
}
.announcement-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.announce-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}
.announce-links a { margin-left: 0; }
.announce-links a:hover { color: var(--secondary); }

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 15px 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(18, 26, 20, 0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.navbar.scrolled .brand-logo { color: #fff; }
.navbar.scrolled .nav-link { color: rgba(255,255,255,0.8); }
.navbar.scrolled .nav-link.active, .navbar.scrolled .nav-link:hover { color: var(--secondary); }
.navbar.scrolled .menu-btn span { background: #fff; }

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.brand-logo > span { line-height: 1.1; }
.brand-logo > span > span { font-weight: 400; color: var(--secondary); }
.brand-logo-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.nav-links { display: flex; gap: 30px; align-items: center; }

/* Sidebar-only structural elements - hidden on desktop, shown on mobile via media query */
.nav-panel-header,
.nav-panel-footer,
.nav-close-btn {
  display: none;
}
.nav-link .nav-icon {
  display: none;
}
.nav-items {
  display: contents;
}

.nav-link {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  padding: 5px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--primary-dark); }

.menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 8px;
  -webkit-tap-highlight-color: rgba(74, 103, 65, 0.15);
  touch-action: manipulation;
}
.menu-btn:active {
  background: rgba(74, 103, 65, 0.08);
}
.menu-btn span {
  width: 24px; height: 2px;
  background: var(--primary-dark);
  transition: 0.3s;
  pointer-events: none;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  transform: scale(1.05);
  transition: transform 2s ease-out;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,26,20,0.85) 0%, rgba(18,26,20,0.4) 100%);
  z-index: -1;
}
.hero-content {
  width: 100%;
  max-width: min(100%, 800px);
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: 20px;
}
.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  font-family: var(--font-heading);
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
}
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-glass-cards {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 3;
}
.glass-module {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  padding: 15px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
}
.glass-module:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
}
.glass-icon { font-size: 1.5rem; }
.glass-module h4 { font-size: 0.95rem; font-family: var(--font-main); letter-spacing: 0.5px; }

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
}
.scroll-indicator span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 60px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.scroll-line::before {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: #fff; animation: scrollDown 2s infinite;
}
@keyframes scrollDown { 0% { top: -100%; } 100% { top: 100%; } }

/* ABOUT SECTION */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.image-wrapper { position: relative; border-radius: 20px; margin-right: 30px; }
.image-wrapper::before {
  content: ''; position: absolute; top: -20px; left: -20px; width: 50%; height: 50%;
  border-top: 4px solid var(--secondary); border-left: 4px solid var(--secondary); border-radius: 20px 0 0 0;
}
.main-img { border-radius: 20px; height: 500px; object-fit: cover; width: 100%; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.floating-stat-card {
  position: absolute; bottom: 30px; right: -30px; padding: 25px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.5); border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08); text-align: center;
}
.floating-stat-card .stat-num { font-size: 2.5rem; font-weight: 700; color: var(--primary); font-family: var(--font-heading); }
.floating-stat-card span { font-size: 1.5rem; color: var(--secondary); font-weight: 700; }
.floating-stat-card p { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-top: 5px; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.service-card {
  background: #fff; padding: 40px 30px; border-radius: 20px;
  text-align: center; transition: var(--transition); border: 1px solid rgba(0,0,0,0.03);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
  background: var(--primary); transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 70px; height: 70px; margin: 0 auto 20px; border-radius: 50%;
  background: rgba(74, 103, 65, 0.05); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: #fff; transform: scale(1.1); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--text-dark); }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

.service-img-wrap {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #f4f6f3;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}

/* ROOMS */
.rooms {
  background: linear-gradient(180deg, #f9fbf7 0%, #ffffff 100%);
}
.rooms-grid {
  display: grid;
  gap: 30px;
  margin-top: 50px;
}

/* Swimming Pool Highlight */
.pool-highlight {
  margin: 30px auto;
  max-width: min(100%, 800px);
  background: linear-gradient(135deg, rgba(74, 103, 65, 0.1), rgba(212, 175, 55, 0.15));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.pool-highlight::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  animation: shine 6s infinite;
}
.pool-highlight-inner {
  background:
    linear-gradient(rgba(8, 26, 38, 0.45), rgba(8, 26, 38, 0.45)),
    url("images/WhatsApp%20Image%202026-04-15%20at%206.50.25%20PM%20(3).jpeg") center/cover no-repeat;
  border-radius: 18px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.pool-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, #1e90ff, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: float 3s ease-in-out infinite;
}
.pool-text h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 5px;
  font-family: var(--font-main);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
.pool-text p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
@media (max-width: 768px) {
  .pool-highlight-inner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 15px;
  }
}

.modern-rooms-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.room-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 16px 34px rgba(22, 32, 24, 0.11);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(22, 32, 24, 0.16);
}
.room-slider {
  position: relative;
  overflow: hidden;
  background: #f3f5f2;
}
.room-slider-track {
  display: flex;
  transition: transform 0.45s ease;
}
.room-slide {
  min-width: 100%;
}
.room-ratio,
.room-slide {
  aspect-ratio: 4 / 3;
}
.room-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .room-slide img {
  transform: scale(1.08);
}
.room-label {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(21, 34, 24, 0.72);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  z-index: 2;
}
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }
.slider-btn:hover { background: rgba(0, 0, 0, 0.65); }
.room-tags {
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ac-tag {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #fff;
  background: linear-gradient(135deg, #3f8c56 0%, #2f6f45 100%);
}
.ac-tag.non-ac {
  background: linear-gradient(135deg, #9b7d2d 0%, #c89f34 100%);
}
.room-badge {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.room-badge.best-choice {
  background: rgba(63, 140, 86, 0.14);
  color: #1f6b37;
  border: 1px solid rgba(63, 140, 86, 0.25);
}
.room-badge.budget-choice {
  background: rgba(200, 159, 52, 0.15);
  color: #8a640d;
  border: 1px solid rgba(155, 125, 45, 0.28);
}
.room-details {
  padding: 22px 22px 20px;
}
.room-details h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.room-details p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.room-features {
  margin-bottom: 14px;
}
.room-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.room-feature-chips li {
  background: rgba(74, 103, 65, 0.09);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
}
.room-price {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 700;
  color: #1f4f2f;
  margin-bottom: 14px;
}
.room-cta {
  border-radius: 999px;
  color: #fff;
  border: none;
  background: linear-gradient(135deg, #4a6741 0%, #d4af37 100%);
  box-shadow: 0 8px 18px rgba(74, 103, 65, 0.25);
}
.room-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(74, 103, 65, 0.35);
}
.room-card.reveal.active {
  animation: roomCardIn 0.6s ease both;
}

@keyframes roomCardIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* DINING */
.ambience {
  background:
    linear-gradient(135deg, rgba(13, 10, 8, 0.95), rgba(28, 20, 14, 0.92)),
    radial-gradient(circle at 85% 20%, rgba(212, 175, 55, 0.18), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(255, 190, 120, 0.1), transparent 40%);
  color: #f2e8d8;
}
.ambience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}
.ambience-text p {
  color: rgba(242, 232, 216, 0.9);
  max-width: 620px;
}
.ambience-badge {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.35);
  color: #f2d78b;
}
.ambience-subtitle {
  margin: 8px 0 16px;
  font-size: 1.15rem;
  color: #f0c97a;
  font-weight: 600;
}
.ambience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.ambience-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  border: 1px solid rgba(255, 214, 148, 0.35);
  background: rgba(255, 214, 148, 0.12);
  color: #ffe6bb;
}
.ambience-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.ambience-photo {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
  cursor: pointer;
}
.ambience-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.ambience-photo:hover img {
  transform: scale(1.05);
}

.dining-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.dining-chips { display: flex; flex-wrap: wrap; gap: 15px; margin: 30px 0; }
.chip { padding: 8px 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 30px; font-size: 0.9rem; letter-spacing: 0.5px; }
.dining-visuals { position: relative; height: 500px; display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%; max-width: 100%; overflow: hidden; }
.dish-card { position: absolute; border-radius: 50%; width: 220px; height: 220px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); animation: float 6s ease-in-out infinite alternate; padding: 20px; }

/* Inline-replaced styles for the two main dish cards in the dining section */
.dish-card.dish-pos-tr {
  top: 15%;
  right: 6%;
  background: transparent;
  border: none;
}
.dish-card.dish-pos-bl {
  bottom: 12%;
  left: 6%;
  background: transparent;
  border: none;
  animation-delay: 0.9s;
}
.dish-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}
.dish-card img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 20px 20px rgba(0,0,0,0.5)); }
.top-dish { top: 0; left: 10%; }
.bottom-dish { bottom: 0; right: 10%; animation-delay: -3s; width: 280px; height: 280px; }
.dish-card.big-small {
  width: min(280px, 46vw);
  height: min(280px, 46vw);
  animation: bigSmall 2.8s ease-in-out infinite;
}
.dish-card.big-small img {
  object-fit: cover;
}
.motion-card img {
  transition: transform 0.5s ease, filter 0.5s ease;
}
.motion-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.05) saturate(1.08);
}
.motion-right {
  animation: bigSmall 2.8s ease-in-out infinite, driftRight 8s ease-in-out infinite;
}
.motion-left {
  animation: bigSmall 2.8s ease-in-out infinite, driftLeft 8s ease-in-out infinite;
}
.dish-name { position: absolute; bottom: -15px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; white-space: nowrap; }

@keyframes bigSmall {
  0%, 100% { transform: scale(0.93); }
  50% { transform: scale(1.06); }
}
@keyframes driftRight {
  0%, 100% { translate: 0 0; }
  50% { translate: 8px -6px; }
}
@keyframes driftLeft {
  0%, 100% { translate: 0 0; }
  50% { translate: -8px 6px; }
}

/* ===== V4RT FARM RESORT - PREMIUM DARK MENU ===== */
.v4rt-menu {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  z-index: 1;
}
.v4rt-menu-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #0c0e0d 0%, #1a1f1b 35%, #0f1510 70%, #111613 100%),
    radial-gradient(ellipse at 20% 0%, rgba(212,175,55,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(74,103,65,0.12) 0%, transparent 50%);
  z-index: -2;
}
.v4rt-menu-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}

.v4rt-menu-badge {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.08));
  color: #f0c97a;
  padding: 10px 24px;
  border-radius: 40px;
  margin-bottom: 1.2rem;
  font-weight: 700;
  border: 1px solid rgba(212,175,55,0.25);
}
.v4rt-menu-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: #fff;
  margin-bottom: 0.8rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.v4rt-menu-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--secondary), var(--primary-light));
  margin: 12px auto 0;
  border-radius: 2px;
}
.v4rt-menu-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
  margin-top: 8px;
}

/* Category Filter Tabs */
.v4rt-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 40px 0 45px;
}
.v4rt-tab {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all 0.35s ease;
  letter-spacing: 0.3px;
}
.v4rt-tab:hover {
  background: rgba(212,175,55,0.12);
  color: #f0c97a;
  border-color: rgba(212,175,55,0.3);
}
.v4rt-tab.active {
  background: linear-gradient(135deg, var(--secondary), #b8962c);
  color: #0f1510;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
  font-weight: 700;
}

/* Menu Cards Grid */
.v4rt-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* Individual Card */
.v4rt-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25,1,0.5,1);
  position: relative;
}
.v4rt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(212,175,55,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}
.v4rt-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212,175,55,0.25);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.5),
    0 0 30px rgba(212,175,55,0.08);
}
.v4rt-card:hover::before {
  opacity: 1;
}
.v4rt-card.hidden {
  display: none;
}
.v4rt-card.fade-in {
  animation: v4rtCardIn 0.45s ease both;
}

@keyframes v4rtCardIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Card Image */
.v4rt-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.v4rt-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.v4rt-card:hover .v4rt-card-img img {
  transform: scale(1.1);
  filter: brightness(1.08) saturate(1.1);
}
.v4rt-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  pointer-events: none;
}

/* Card Badge */
.v4rt-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(220,80,50,0.88);
  color: #fff;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
}
.v4rt-card-badge.veg {
  background: rgba(40,140,60,0.88);
}
.v4rt-card-badge.seafood {
  background: rgba(30,100,160,0.88);
}
.v4rt-card-badge.main {
  background: rgba(180,100,30,0.88);
}
.v4rt-card-badge.thali {
  background: linear-gradient(135deg, rgba(180,140,30,0.9), rgba(200,160,40,0.9));
}
.v4rt-card-badge.bread {
  background: rgba(160,120,60,0.88);
}
.v4rt-card-badge.drink {
  background: rgba(140,50,120,0.88);
}

/* Card Body */
.v4rt-card-body {
  padding: 18px 20px 20px;
  position: relative;
  z-index: 1;
}
.v4rt-card-body h4 {
  font-family: var(--font-main);
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.35;
}
.v4rt-card-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
  font-weight: 400;
}

/* Special Features Strip */
.v4rt-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.v4rt-feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.35s ease;
}
.v4rt-feature-card:hover {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.2);
  transform: translateY(-4px);
}
.v4rt-feature-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 14px;
}
.v4rt-feature-card h4 {
  color: #f0c97a;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.v4rt-feature-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}

/* Responsive */
@media (max-width: 768px) {
  .v4rt-menu-title { font-size: 2.2rem; }
  .v4rt-menu-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .v4rt-features { grid-template-columns: 1fr; gap: 14px; }
  .v4rt-tabs { gap: 6px; }
  .v4rt-tab { padding: 8px 14px; font-size: 0.8rem; }
}
@media (max-width: 480px) {
  .v4rt-menu-grid { grid-template-columns: 1fr; }
  .v4rt-menu-title { font-size: 1.8rem; }
}

/* WHY US */
.why-us { position: relative; padding: 120px 0; }
.why-us-bg { position: absolute; inset: 0; background: url('images/DSC_0902.JPG') center/cover fixed; filter: brightness(0.3); z-index: -2; }
.why-us-box { background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); max-width: min(100%, 800px); margin: 0 auto; padding: 60px; border-radius: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.2); }
.features-list { display: flex; flex-direction: column; gap: 25px; margin-top: 40px; }
.feature-row { display: flex; align-items: center; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.feature-row:last-child { border: none; padding-bottom: 0; }
.f-num { font-size: 3rem; font-family: var(--font-heading); font-weight: 700; background: linear-gradient(to right, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; opacity: 0.8; line-height: 1; }
.f-text h3 { font-size: 1.3rem; margin: 0; font-family: var(--font-main); font-weight: 600; }

/* STATS STRIP */
.stats-strip { padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 30px; }
.stat-item { padding: 20px; position: relative; }
.stat-item::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.2); }
.stat-item:last-child::after { display: none; }
.s-icon { font-size: 2.5rem; margin-bottom: 15px; }
.s-info { font-size: 1.2rem; font-weight: 600; font-family: var(--font-heading); letter-spacing: 1px; }

/* GALLERY MASONRY */
.masonry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; grid-auto-rows: 200px; grid-auto-flow: dense; margin-top: 50px; }
.masonry-item { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; }
.masonry-item.masonry-tall { grid-row: span 2; }
.masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%); display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: var(--transition); }
.item-overlay span { color: #fff; font-size: 1.1rem; font-weight: 600; transform: translateY(20px); transition: var(--transition); }
.masonry-item:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.masonry-item:hover img { transform: scale(1.1); }
.masonry-item:hover .item-overlay { opacity: 1; }
.masonry-item:hover .item-overlay span { transform: translateY(0); }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.testi-card { background: rgba(255,255,255,0.6); backdrop-filter: blur(10px); padding: 40px 30px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.5); text-align: center; position: relative; }
.quote-mark { font-family: var(--font-heading); font-size: 5rem; color: var(--secondary); opacity: 0.3; line-height: 0; position: absolute; top: 40px; left: 30px; }
.testi-card p { font-size: 1.05rem; font-style: italic; color: #444; margin-bottom: 20px; z-index: 2; position: relative; }
.testi-card h5 { font-size: 1.1rem; color: var(--primary-dark); }

/* CONTACT & LOCATION */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info { background: var(--primary-dark); color: #fff; padding: 50px; border-radius: 20px; }
.contact-info .section-title { margin-bottom: 20px; }
.contact-info .section-title::after { background: var(--secondary); left: 0; }
.info-list { margin: 30px 0; }
.info-list li { margin-bottom: 15px; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.info-list li strong { color: var(--accent); margin-right: 10px; font-weight: normal; }
.flex-gap { display: flex; gap: 15px; flex-wrap: wrap; }
.contact-info .btn-outline { border-color: rgba(255,255,255,0.3); color: #fff; }
.contact-info .btn-outline:hover { background: #fff; color: var(--primary-dark); }

.contact-form-box { background: #fff; padding: 50px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.contact-form-box h3 { font-size: 2rem; margin-bottom: 30px; font-family: var(--font-heading); }
.high-end-form .input-group { position: relative; margin-bottom: 30px; }
.high-end-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.high-end-form .form-row .input-group {
  margin-bottom: 30px;
}
.high-end-form input[type="date"] {
  padding-top: 25px;
}
.high-end-form .booking-intro {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #666;
}
.high-end-form .room-type-select {
  width: 100%;
  padding: 15px 0 10px;
  border: none;
  border-bottom: 2px solid #ddd;
  background: transparent;
  font-family: var(--font-main);
  font-size: 1rem;
  outline: none;
  margin-top: 10px;
  color: var(--text-dark);
}
.high-end-form .room-type-select-label {
  top: -12px;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}
.map-iframe {
  width: 100%;
  height: 350px;
  border: 0;
}
@media (max-width: 480px) {
  .high-end-form .form-row {
    grid-template-columns: 1fr;
  }
}
.high-end-form input, .high-end-form textarea { width: 100%; padding: 15px 0; border: none; border-bottom: 2px solid #ddd; background: transparent; font-family: var(--font-main); font-size: 1rem; outline: none; transition: var(--transition); }
.high-end-form textarea { resize: vertical; }
.high-end-form label { position: absolute; top: 15px; left: 0; color: #888; pointer-events: none; transition: var(--transition); }
.high-end-form input:focus, .high-end-form textarea:focus { border-bottom-color: var(--primary); }
.high-end-form input:focus ~ label, .high-end-form textarea:focus ~ label,
.high-end-form input:not(:placeholder-shown) ~ label, .high-end-form textarea:not(:placeholder-shown) ~ label { top: -12px; font-size: 0.8rem; color: var(--primary); font-weight: 600; }
.error-msg { color: #e74c3c; font-size: 0.8rem; position: absolute; bottom: -20px; left: 0; opacity: 0; transition: 0.3s; }
.input-group.error input, .input-group.error textarea { border-bottom-color: #e74c3c; }
.input-group.error .error-msg { opacity: 1; }
.success-alert { margin-top: 20px; padding: 15px; background: rgba(74, 103, 65, 0.1); color: var(--primary); border-radius: 8px; text-align: center; display: none; font-weight: 600; }

.map-banner { width: 100%; margin: 10px 0 20px; }
.map-banner iframe { filter: grayscale(20%) contrast(1.1); }

.contact-section {
  padding-bottom: 0;
}

.final-location-cta {
  padding-top: 0;
  padding-bottom: 70px;
  background: linear-gradient(180deg, #f8f5f0 0%, #ffffff 100%);
}
.final-location-box {
  text-align: center;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(74, 103, 65, 0.15);
  box-shadow: 0 10px 26px rgba(21, 34, 24, 0.08);
  padding: 35px 20px;
  max-width: min(100%, 780px);
  margin: 0 auto;
}
.final-location-box h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}
.final-location-box p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* FOOTER */
.footer { background: #0A0F0C; color: rgba(255,255,255,0.6); padding: 80px 0 20px; }
.footer-cont { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 3px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
.f-brand h3 { font-family: var(--font-heading); color: #fff; font-size: 1.8rem; margin-bottom: 20px; }
.f-brand span { color: var(--secondary); font-weight: normal; }
.f-brand p { max-width: 300px; line-height: 1.8; }
.footer h4 { color: #fff; font-size: 1.2rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--secondary); }
.f-links a { display: block; margin-bottom: 12px; transition: 0.3s; }
.f-links a:hover { color: var(--secondary); transform: translateX(5px); }
.f-contact p { margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; padding-top: 20px; font-size: 0.9rem; }

p, a, h1, h2, h3, h4, h5, h6, li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* FLOATING BUTTONS */

/* MOBILE MENU OVERLAY */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  z-index: 999;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease, visibility 0s linear 0s;
}

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 3000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); transform: scale(0.9); transition: transform 0.3s; }
.lightbox.active img { transform: scale(1); }
.lb-close { position: absolute; top: 30px; right: 30px; background: transparent; border: none; color: #fff; font-size: 3rem; cursor: pointer; transition: 0.3s; }
.lb-close:hover { color: var(--secondary); transform: rotate(90deg); }

/* ANIMATIONS */
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-load { opacity: 0; transform: translateY(30px); animation: loadReveal 1s forwards ease-out; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes loadReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-title { font-size: 3.5rem; }
  .about-grid, .ambience-grid, .dining-split, .contact-container, .footer-cont { grid-template-columns: 1fr; gap: 40px; }
  .ambience-images { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .image-wrapper { margin-right: 0; }
  .modern-rooms-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-glass-cards { display: none; } /* Hide on small screens to save space */
  .dish-card { position: static; animation: none; margin: 10px auto; width: 180px; height: 180px; }
  .dining-visuals { height: auto; gap: 20px; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 320px);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #ffffff 0%, #f7f5ef 100%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    box-shadow: -12px 0 40px rgba(15, 26, 18, 0.18);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1000;
    will-change: transform;
  }
  .nav-links.active { transform: translateX(0); }
  .menu-btn { position: relative; }

  /* Header (logo + close) */
  .nav-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(74, 103, 65, 0.12);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }
  .nav-brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 55, 0.45);
    flex-shrink: 0;
  }
  .nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    min-width: 0;
  }
  .nav-brand-text strong {
    font-size: 1.05rem;
    font-weight: 700;
  }
  .nav-brand-text span {
    font-size: 0.82rem;
    color: var(--secondary);
    font-weight: 500;
  }
  .nav-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(74, 103, 65, 0.08);
    color: var(--primary-dark);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
  }
  .nav-close-btn:hover,
  .nav-close-btn:active {
    background: rgba(74, 103, 65, 0.18);
    transform: rotate(90deg);
  }

  /* Items */
  .nav-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 12px;
    flex: 1 1 auto;
  }
  .nav-links .nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.2s ease;
  }
  .nav-links .nav-link::after {
    display: none;
  }
  .nav-links .nav-link .nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(74, 103, 65, 0.08);
    font-size: 1.05rem;
    flex-shrink: 0;
  }
  .nav-links .nav-link .nav-label {
    flex: 1;
    font-family: var(--font-main);
    letter-spacing: 0.2px;
    color: #1a1a1a;
  }
  .nav-links .nav-link:hover,
  .nav-links .nav-link:active {
    background: rgba(74, 103, 65, 0.07);
    color: #1a1a1a;
    transform: translateX(2px);
  }
  .nav-links .nav-link:hover .nav-label,
  .nav-links .nav-link:active .nav-label {
    color: #1a1a1a;
  }
  .nav-links .nav-link.active {
    background: rgba(74, 103, 65, 0.10);
    color: #1a1a1a;
  }
  .nav-links .nav-link.active .nav-label {
    color: #1a1a1a;
    font-weight: 700;
  }
  .nav-links .nav-link.active .nav-icon {
    background: var(--primary);
    color: #fff;
  }

  /* Footer CTAs */
  .nav-panel-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px 16px 22px;
    border-top: 1px solid rgba(74, 103, 65, 0.12);
    background: #fff;
    position: sticky;
    bottom: 0;
    z-index: 2;
  }
  .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  }
  .nav-cta-call {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 6px 14px rgba(74, 103, 65, 0.28);
  }
  .nav-cta-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 6px 14px rgba(18, 140, 126, 0.28);
  }
  .nav-cta:active {
    transform: translateY(1px) scale(0.98);
    filter: brightness(0.95);
  }
  .nav-cta-icon {
    font-size: 1.05rem;
  }
  .menu-btn { display: flex; z-index: 1001; }
  .brand-logo { font-size: 1.1rem; gap: 8px; }
  .brand-logo-img { width: 42px; height: 42px; }
  .menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-btn.active span:nth-child(2) { opacity: 0; }
  .menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  
  .hero-title { font-size: 2.5rem; }
  .section { padding: 60px 0; }
  .announcement-wrap { flex-direction: column; gap: 10px; }
  .announce-text, .announce-links { width: 100%; text-align: center; }
  .modern-rooms-grid { grid-template-columns: 1fr; }
  .room-details { padding: 18px 16px; }
  .room-cta { min-height: 46px; }
  .ambience-images { grid-template-columns: 1fr; }
  .ambience-photo img { height: 220px; }
  .masonry-grid { grid-template-columns: 1fr; }
  .masonry-item.masonry-tall { grid-row: span 1; }
  form { width: 100%; }
  .footer-logo { width: 80px; height: 80px; }
}
