/* ============================================================
   GIRI SAROVAR RESORT — SHARED STYLESHEET
   style.css
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* ── CSS Variables ── */
:root {
  --green:      #1a6b3c;
  --green-dark: #134f2d;
  --green-bg:   #1a3d2b;
  --gold:       #f5c842;
  --gold-dark:  #d4a800;
  --offwhite:   #fdfaf5;
  --text:       #2c2c2c;
  --text-light: #666;
  --white:      #ffffff;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.16);
  --radius:     12px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Lato', Arial, sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--offwhite);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--green-dark);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 2.8rem;
}
.section-divider {
  width: 64px; height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0.7rem auto 1.5rem;
}

/* ── Section Padding ── */
section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,200,66,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,107,60,0.35);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1300px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-text .name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--green-dark);
  font-weight: 700;
  line-height: 1.2;
}
.nav-logo-text .tagline {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 20px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: var(--green);
}
.nav-cta {
  margin-left: 12px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 6px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.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); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-bg);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand img {
  height: 64px;
  margin-bottom: 14px;
  border-radius: 6px;
  filter: brightness(0) invert(1);
}
.footer-brand .f-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}
.footer-brand .f-tagline {
  font-size: 0.85rem;
  color: var(--gold);
  margin-top: 4px;
  margin-bottom: 16px;
  font-style: italic;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}
.footer h4 {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  margin-bottom: 9px;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}
.footer-contact li i {
  color: var(--gold);
  margin-top: 3px;
  min-width: 16px;
}
.footer-contact li a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-contact li a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--green-dark);
  transform: translateY(-3px);
}
.footer-map iframe {
  width: 100%;
  height: 180px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.12);
  margin-top: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
}
.wa-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: waPulse 2.2s infinite;
  transition: transform 0.2s;
  position: relative;
}
.wa-float a:hover {
  transform: scale(1.1);
}
.wa-float a .wa-tooltip {
  position: absolute;
  right: 68px;
  background: #25D366;
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  box-shadow: var(--shadow);
}
.wa-float a .wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #25D366;
}
.wa-float a:hover .wa-tooltip { opacity: 1; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 36px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ============================================================
   SCROLL-REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   PAGE: INDEX.HTML — HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: #1a3d2b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center 55%, rgba(0,0,0,0.45) 0%, transparent 68%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  background: transparent;
  padding: 40px 48px;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,200,66,0.18);
  border: 1px solid rgba(245,200,66,0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 32px rgba(0,0,0,0.8), 0 0 60px rgba(0,0,0,0.6);
}
.hero h1 span { color: var(--gold); text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.7); }
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,0.98);
  margin-bottom: 36px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.85), 0 2px 20px rgba(0,0,0,0.7);
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-arrow {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 1.8s infinite;
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ── Forest decorative shapes ── */
.hero-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-leaves::before, .hero-leaves::after {
  content: '';
  position: absolute;
  border-radius: 50% 50% 50% 50% / 70% 30% 70% 30%;
  background: rgba(26,107,60,0.25);
}
.hero-leaves::before {
  width: 500px; height: 500px;
  top: -200px; right: -100px;
  transform: rotate(30deg);
}
.hero-leaves::after {
  width: 400px; height: 400px;
  bottom: -150px; left: -80px;
  transform: rotate(-20deg);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a6b3c 0%, #2d9e60 40%, #1a3d2b 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.5);
  position: relative;
}
.about-img-placeholder::after {
  content: 'Giri Sarovar Resort';
  position: absolute; bottom: 20px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
}
.about-badge {
  position: absolute;
  bottom: -18px; right: 24px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 14px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}
.about-badge .big { font-size: 1.8rem; font-family: var(--font-head); display: block; line-height: 1; }
.about-text p {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.about-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.about-features span {
  background: rgba(26,107,60,0.08);
  border: 1px solid rgba(26,107,60,0.2);
  color: var(--green);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ============================================================
   NEARBY ATTRACTIONS
   ============================================================ */
.attractions { background: var(--offwhite); }
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
}
.attraction-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(26,107,60,0.08);
}
.attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.attraction-card .icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--green), #2d9e60);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
  font-size: 1.4rem;
}
.attraction-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.attraction-card .dist {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 700;
}
.attraction-card .dist i { margin-right: 4px; }

/* ============================================================
   FACILITIES
   ============================================================ */
.facilities { background: var(--white); }
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}
.facility-item {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.facility-item:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.facility-item:hover .f-icon,
.facility-item:hover h4 {
  color: var(--white);
}
.facility-item:hover .f-icon {
  background: rgba(255,255,255,0.15);
}
.facility-item .f-icon {
  width: 54px; height: 54px;
  background: rgba(26,107,60,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--green);
  font-size: 1.3rem;
  transition: all var(--transition);
}
.facility-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}

/* ============================================================
   ACTIVITIES
   ============================================================ */
.activities { background: var(--green-bg); }
.activities .section-title { color: var(--white); }
.activities .section-subtitle { color: rgba(255,255,255,0.7); }
.activities .section-divider { background: var(--gold); }
.activities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.activity-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  color: var(--white);
}
.activity-card .act-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.activity-card .act-icon {
  width: 54px; height: 54px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.activity-card .act-header h3 { color: var(--gold); font-size: 1.3rem; }
.activity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.activity-list li {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex; align-items: center; gap: 7px;
  transition: all var(--transition);
}
.activity-list li:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}
.activity-list li i { font-size: 0.75rem; color: var(--gold); }
.activity-list li:hover i { color: var(--green-dark); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--offwhite); overflow: hidden; }
.testi-carousel { position: relative; max-width: 800px; margin: 0 auto; }
.testi-track { overflow: hidden; }
.testi-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.testi-slide {
  min-width: 100%;
  padding: 8px 24px;
}
.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 6rem;
  color: var(--green);
  opacity: 0.12;
  position: absolute;
  top: 10px; left: 24px;
  line-height: 1;
}
.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 18px; }
.testi-text {
  font-size: 1.08rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}
.testi-author {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1rem;
  font-family: var(--font-head);
}
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.testi-btn {
  width: 44px; height: 44px;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}
.testi-btn:hover {
  background: var(--green);
  color: var(--white);
}
.testi-dots {
  display: flex;
  gap: 8px;
}
.testi-dot {
  width: 10px; height: 10px;
  border-radius: 5px;
  background: rgba(26,107,60,0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.testi-dot.active {
  background: var(--green);
  width: 24px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form-wrap h3 {
  margin-bottom: 24px;
  font-size: 1.5rem;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid rgba(26,107,60,0.15);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--offwhite);
  color: var(--text);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-wa-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.form-wa-note a {
  background: #25D366;
  color: var(--white);
  padding: 7px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: all var(--transition);
}
.form-wa-note a:hover { background: #1eb558; }
.contact-info h3 { margin-bottom: 24px; font-size: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-info-item .ci-icon {
  width: 44px; height: 44px;
  background: rgba(26,107,60,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item .ci-text strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 3px;
}
.contact-info-item .ci-text span,
.contact-info-item .ci-text a {
  color: var(--text-light);
  font-size: 0.95rem;
}
.contact-info-item .ci-text a:hover { color: var(--green); }

/* Social icons inside the contact section (light background override) */
.contact .footer-social a {
  background: rgba(26, 107, 60, 0.1);
  color: var(--green);
}
.contact .footer-social a:hover {
  background: var(--green);
  color: var(--white);
}

/* ============================================================
   PAGE HERO (rooms & gallery)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-bg) 0%, var(--green-dark) 100%);
  padding: 130px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; position: relative; }
.page-hero h1 span { color: var(--gold); }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  position: relative;
}
.breadcrumb a { color: var(--gold); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.65rem; }

/* ============================================================
   ROOMS PAGE — ROOM CARDS
   ============================================================ */
.rooms-section { background: var(--offwhite); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.room-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--green) 0%, #2d9e60 50%, var(--green-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 2.2rem;
  position: relative;
}
.room-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}
.room-body { padding: 24px; }
.room-body h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--green-dark);
}
.room-prices {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}
.room-price-item {
  flex: 1;
  background: var(--offwhite);
  border-radius: 8px;
  padding: 10px 12px;
  text-align: center;
}
.room-price-item .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  font-weight: 700;
}
.room-price-item .price {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  display: block;
}
.room-price-item .for {
  font-size: 0.72rem;
  color: var(--text-light);
}
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}
.room-amenities span {
  font-size: 0.78rem;
  color: var(--green);
  background: rgba(26,107,60,0.08);
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 700;
}
.room-card .btn { width: 100%; text-align: center; }

/* ============================================================
   FOOD PACKAGE SECTION
   ============================================================ */
.food-package { background: var(--white); }
.food-card {
  max-width: 780px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--green-bg) 0%, var(--green-dark) 100%);
  border-radius: 20px;
  padding: 48px 40px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.food-card h3 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.food-card .food-price {
  font-size: 2.2rem;
  font-family: var(--font-head);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 32px;
}
.food-card .food-price span { font-size: 1rem; color: rgba(255,255,255,0.65); font-weight: 400; }
.food-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
  text-align: left;
}
.food-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
}
.food-item i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

.food-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.food-tab-btn {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green-dark);
  padding: 10px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.food-tab-btn span { font-weight: 400; font-size: 0.85rem; opacity: 0.75; }
.food-tab-btn.active,
.food-tab-btn:hover {
  background: var(--green);
  color: var(--white);
}

/* ============================================================
   SPECIAL PACKAGES
   ============================================================ */
.special-packages { background: var(--offwhite); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 22px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all var(--transition);
}
.package-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.package-card .pkg-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--green), #2d9e60);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--white);
  font-size: 1.5rem;
}
.package-card h3 { font-size: 1rem; margin-bottom: 16px; }
.package-card .btn { font-size: 0.82rem; padding: 9px 20px; }

/* ── Check-in Policy Bar ── */
.checkin-bar {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 0;
}
.checkin-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.checkin-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.18);
}
.checkin-item:last-child { border-right: none; }
.checkin-item i { color: var(--gold); font-size: 1.1rem; }
.checkin-item .ci-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
}
.checkin-item .ci-val {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section { background: var(--offwhite); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.gallery-item .gal-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0.5);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover .gal-placeholder {
  transform: scale(1.08);
}
.gallery-item .gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,61,43,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gal-overlay { opacity: 1; }
.gallery-item .gal-overlay .gal-name {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 6px;
}
.gallery-item .gal-overlay .gal-zoom {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 860px;
  width: 100%;
  text-align: center;
}
.lightbox-display {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,0,0,0.6);
}
.lightbox-caption {
  color: var(--white);
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: 1.1rem;
}
.lightbox-count {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 4px;
}
.lb-btn {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10;
}
.lb-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: var(--white);
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-close {
  position: fixed;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10;
}
.lb-close:hover {
  background: rgba(220,50,50,0.5);
  border-color: rgba(220,50,50,0.7);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { padding: 12px 20px; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: fixed;
    inset: 0;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 30, 20, 0.97);
    z-index: 100;
    overflow: hidden;
    padding: 20px 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-links > li {
    width: 100%;
    text-align: center;
    flex-shrink: 0;
  }
  .nav-links > li:not(.nav-cta) a {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.72);
    padding: 11px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links > li:not(.nav-cta) a:hover,
  .nav-links > li:not(.nav-cta) a.active {
    color: #ffffff;
    font-weight: 700;
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    flex-shrink: 0;
  }
  .nav-cta a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 0 !important;
    border-radius: 50px !important;
    font-size: 0.95rem !important;
    background: var(--gold) !important;
    color: var(--green-dark) !important;
    font-weight: 700 !important;
  }
  .hamburger { display: flex; z-index: 110; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-badge { position: static; margin-top: 16px; display: inline-block; }
  .contact-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .checkin-inner { flex-direction: column; gap: 0; }
  .checkin-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); width: 100%; justify-content: center; }
  .checkin-item:last-child { border-bottom: none; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-btn { width: 42px; height: 42px; }
  .testi-card { padding: 32px 22px; }
  .food-card { padding: 36px 22px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .rooms-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .food-items { grid-template-columns: 1fr; }
  .slide-prev { left: 10px; }
  .slide-next { right: 10px; }
  .slide-prev, .slide-next { width: 38px; height: 38px; font-size: 0.85rem; }
}

/* ============================================================
   HERO BANNER SLIDER
   ============================================================ */
/* Override the old static hero background */
.hero {
  background: #1a3d2b; /* fallback while images load */
}
/* Slides container sits behind everything */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4,0,0.2,1);
}
.hero-slide.active { opacity: 1; }

/* Dark overlay so text stays readable over any photo */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

/* Bump content above overlay */
.hero-leaves  { z-index: 2; }
.hero-content { position: relative; z-index: 2; }
.scroll-arrow { z-index: 2; }

/* Prev / Next arrow buttons */
.slide-prev,
.slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.slide-prev { left: 28px; }
.slide-next { right: 28px; }
.slide-prev:hover,
.slide-next:hover {
  background: rgba(255,255,255,0.28);
  border-color: var(--gold);
  color: var(--gold);
}

/* Dot indicators */
.slide-dots {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.slide-dot {
  width: 10px; height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s;
}
.slide-dot.active {
  background: var(--gold);
  width: 26px;
  border-radius: 5px;
}

/* ── Gallery: real <img> support ── */
.gallery-item img.gal-real {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img.gal-real { transform: scale(1.08); }
.gallery-item .gal-placeholder { width: 100%; height: 100%; }

/* ── PDF view button on room cards ── */
.room-pdf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 0;
  margin-top: 10px;
  border-radius: 50px;
  border: 2px solid rgba(26,107,60,0.25);
  background: transparent;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-body);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.room-pdf-btn:hover {
  background: rgba(26,107,60,0.07);
  border-color: var(--green);
}

/* ── Toast notification (form submit feedback) ── */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1a6b3c;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.error { background: #c0392b; }
