/* ═══════════════════════════════════════
   SAMTHAR GREENERY HOMESTAY – STYLES
   ═══════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #2d6a2d;
  --green-dark:  #1a4a1a;
  --green-light: #4a9e4a;
  --gold:        #c8963a;
  --gold-light:  #e8b55a;
  --brown:       #7a4f2e;
  --cream:       #f8f4ef;
  --cream-dark:  #ede6db;
  --white:       #ffffff;
  --text:        #1c1c1c;
  --text-muted:  #666666;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.18);
  --radius:      14px;
  --radius-lg:   24px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-tag.light { color: var(--gold-light); }
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(45,106,45,.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,45,.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up {
  animation: fadeUp .8s ease both;
}
.fade-up:nth-child(1) { animation-delay: .1s; }
.fade-up:nth-child(2) { animation-delay: .25s; }
.fade-up:nth-child(3) { animation-delay: .4s; }
.fade-up:nth-child(4) { animation-delay: .55s; }
.fade-up:nth-child(5) { animation-delay: .7s; }

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

/* ════════════════════════
   NAVIGATION
   ════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(26, 74, 26, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  padding: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding var(--transition);
}
#navbar.scrolled .nav-container { padding-top: 14px; padding-bottom: 14px; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.nav-logo .logo-icon { font-size: 1.6rem; }
.logo-name {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.1;
}
.logo-sub {
  display: block;
  font-size: .7rem;
  font-weight: 400;
  color: rgba(255,255,255,.7);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.btn-book-nav {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 9px 22px !important;
  font-weight: 600 !important;
}
.btn-book-nav:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════
   HERO
   ════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.45) 0%,
    rgba(0,0,0,.3) 50%,
    rgba(0,0,0,.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero-tag {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 16px 32px;
  width: fit-content;
  margin: 0 auto;
}
.stat { text-align: center; padding: 0 28px; }
.stat-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.25);
}

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot.active {
  background: var(--white);
  transform: scale(1.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  color: rgba(255,255,255,.55);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.2); }
}

/* ════════════════════════
   MEALS BANNER
   ════════════════════════ */
.meals-banner {
  background: var(--green);
  padding: 22px 0;
}
.meals-banner .container {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.meals-label {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
}
.meals-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.meal-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 7px 18px;
  color: var(--white);
  font-size: .85rem;
  font-weight: 500;
  white-space: nowrap;
}
.meal-icon { font-size: 1rem; }

/* ════════════════════════
   ABOUT
   ════════════════════════ */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }

.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 150px; object-fit: cover; }

.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.badge-num { font-size: 1.6rem; line-height: 1; }
.badge-text { font-size: .55rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; line-height: 1.2; }

.about-text { }
.about-text .section-tag { text-align: left; }
.about-text .section-title { text-align: left; }

.about-desc {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: .97rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0 32px;
}
.af-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
}
.af-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ════════════════════════
   ROOMS
   ════════════════════════ */
.rooms { background: var(--white); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.suite-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.suite-card .room-img-wrap { height: 100%; }
.suite-card .room-img-wrap img { height: 100%; min-height: 300px; object-fit: cover; }

.room-img-wrap {
  position: relative;
  overflow: hidden;
}
.room-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .6s ease;
}
.room-card:hover .room-img-wrap img { transform: scale(1.05); }

.room-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.room-badge.popular { background: var(--green); }
.room-badge.luxury  { background: #8b4513; }

.room-body { padding: 24px; }
.room-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.room-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}
.room-location {
  font-size: .8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
}
.room-price { text-align: right; flex-shrink: 0; }
.price-amount {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.price-unit {
  display: block;
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.room-desc {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}
.room-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 20px;
}
.room-amenities li {
  font-size: .8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-book-room {
  width: 100%;
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-book-room:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* ════════════════════════
   MEALS DETAIL
   ════════════════════════ */
.meals-detail {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 96px 0;
}
.meals-detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,74,26,.9) 0%, rgba(10,40,10,.85) 100%);
}
.meals-detail-content { position: relative; z-index: 1; text-align: center; }
.meals-detail-sub {
  color: rgba(255,255,255,.78);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1rem;
}
.meals-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.meal-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 32px 20px;
  color: var(--white);
  transition: var(--transition);
}
.meal-card:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-4px);
}
.meal-card-icon { font-size: 2.5rem; margin-bottom: 14px; }
.meal-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.meal-card p { font-size: .82rem; color: rgba(255,255,255,.72); line-height: 1.55; }

/* ════════════════════════
   WHY US
   ════════════════════════ */
.why-us { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.why-icon { font-size: 2.2rem; margin-bottom: 14px; }
.why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.why-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ════════════════════════
   GALLERY
   ════════════════════════ */
.gallery { background: var(--white); }

.gallery-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid var(--cream-dark);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  auto-rows: 220px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--cream-dark);
}
.gallery-item.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}
.gallery-item.hidden { display: none; }

/* ════════════════════════
   LOCATION
   ════════════════════════ */
.location { background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.location-info { }
.loc-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.loc-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(45,106,45,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.loc-item p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }
.loc-item a { color: var(--green); font-weight: 600; }
.loc-item a:hover { color: var(--green-dark); }

.loc-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-whatsapp svg { width: 18px; height: 18px; }
.btn-whatsapp:hover { background: #1db954; transform: translateY(-2px); }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-call svg { width: 18px; height: 18px; }
.btn-call:hover { background: var(--green-dark); transform: translateY(-2px); }

.location-map iframe { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* ════════════════════════
   CONTACT
   ════════════════════════ */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-icon { font-size: 2.5rem; margin-bottom: 16px; }
.contact-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: 20px; }

/* ════════════════════════
   FOOTER
   ════════════════════════ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.82);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-link {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.footer-contact-link:hover { color: var(--gold-light); }

.footer-links-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: .84rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-links-col a:hover { color: var(--gold-light); }

.footer-links-col address {
  font-size: .84rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-inclusion p {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.footer-inclusion small {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  display: block;
  margin-top: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}

/* ════════════════════════
   FLOATING BUTTONS
   ════════════════════════ */
.float-buttons {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transition: var(--transition);
  white-space: nowrap;
}
.float-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.float-btn:hover { transform: translateY(-3px) scale(1.03); }

.float-whatsapp { background: #25D366; }
.float-whatsapp:hover { background: #1db954; }
.float-call { background: var(--green); }
.float-call:hover { background: var(--green-dark); }

/* ════════════════════════
   BOOKING MODAL
   ════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 640px;
  width: 100%;
  max-height: 90svh;
  overflow-y: auto;
  position: relative;
  transform: scale(.95) translateY(20px);
  transition: transform .3s ease;
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.modal-close:hover { color: var(--text); }

.modal-header { margin-bottom: 28px; }
.modal-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.modal-header p { font-size: .88rem; color: var(--text-muted); }

.booking-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  font-family: 'Poppins', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,106,45,.12);
}
.form-group input.error,
.form-group select.error {
  border-color: #e53935;
}
.form-group textarea { resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }

.form-error {
  background: #fff3f3;
  border: 1px solid #f9a9a9;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .84rem;
  color: #c62828;
  margin-bottom: 16px;
}

.btn-submit {
  width: 100%;
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}
.btn-submit:hover:not(:disabled) { background: var(--green-dark); transform: translateY(-1px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }

/* ════════════════════════
   LIGHTBOX
   ════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85svh;
  text-align: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80svh;
  object-fit: contain;
  border-radius: 10px;
}
#lightboxCaption {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  margin-top: 12px;
  font-style: italic;
}
.lightbox-close {
  position: absolute;
  top: 16px; right: 20px;
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .2s;
  z-index: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,.28); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.25); }

/* ════════════════════════
   TOAST
   ════════════════════════ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #2e7d32;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  z-index: 4000;
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
  text-align: center;
  max-width: 90vw;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ════════════════════════
   RESPONSIVE
   ════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .meals-cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Nav */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100svh;
    background: var(--green-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 32px;
    gap: 4px;
    transition: right .35s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,.3);
  }
  .nav-links.open { right: 0; }
  .nav-link { width: 100%; padding: 12px 16px; font-size: .95rem; }
  .btn-book-nav { margin-top: 8px; }

  /* Hero */
  .hero-stats { padding: 14px 20px; }
  .stat { padding: 0 16px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary { display: none; }
  .about-text .section-tag, .about-text .section-title { text-align: center; }
  .about-desc { text-align: center; }
  .about-features { grid-template-columns: 1fr; max-width: 300px; margin: 24px auto 32px; }
  .about-text { text-align: center; }

  /* Rooms */
  .rooms-grid { grid-template-columns: 1fr; }
  .suite-card { grid-column: span 1; display: block; }
  .suite-card .room-img-wrap img { min-height: 240px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gallery-large { grid-column: span 2; }

  /* Location */
  .location-grid { grid-template-columns: 1fr; }
  .location-map { margin-top: 0; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Floating buttons – compact on mobile */
  .float-btn span { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; }
  .float-btn svg { width: 22px; height: 22px; }

  /* Modal */
  .modal-box { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Meals */
  .meals-cards { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gallery-large { grid-column: span 1; grid-row: span 1; }
  .meals-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .meals-banner .container { flex-direction: column; gap: 16px; }
  .loc-cta { flex-direction: column; }
  .footer-bottom { font-size: .72rem; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }
