/* ============================================
   Vrundavan Homestay — Main Stylesheet
   Color Palette:
     Deep Forest:      #0D2B12
     Primary Green:    #2E7D32
     Light Green:      #A5D6A7
     Dark Green:       #1B5E20
     White:            #FFFFFF
     Light Background: #F5F8F4
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================ */

/* ============================================
   DEEP FOREST THEME UTILITY
   ============================================ */
.theme-deep-forest {
  background-color: #0D2B12 !important;
  color: #FFFFFF !important;
  position: relative;
  overflow: hidden;
}

.theme-deep-forest .section-title h2,
.theme-deep-forest .section-title h2 small,
.theme-deep-forest h2,
.theme-deep-forest h3 {
  color: #FFFFFF !important;
}

.theme-deep-forest .section-title h2::after {
  background: #A5D6A7 !important;
}

.theme-deep-forest p,
.theme-deep-forest .section-subtitle,
.theme-deep-forest .story-content p {
  color: rgba(255, 255, 255, 0.8) !important;
}

.theme-deep-forest .mv-card,
.theme-deep-forest .glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.theme-deep-forest .mv-card:hover,
.theme-deep-forest .glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(165, 214, 167, 0.3);
}

.theme-deep-forest svg {
  stroke: #A5D6A7 !important;
}

.theme-deep-forest .room-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.theme-deep-forest .room-card-body h3 {
  color: #FFFFFF !important;
}

.theme-deep-forest .room-card-body p {
  color: rgba(255, 255, 255, 0.7) !important;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #333;
  background-color: #FFFFFF;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1B5E20;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #A5D6A7;
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 48px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
  background: #2E7D32;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.25);
}

.btn-primary:hover {
  background: #1B5E20;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(27, 94, 32, 0.35);
}

.btn-outline {
  background: transparent;
  color: #2E7D32;
  border: 2px solid #2E7D32;
}

.btn-outline:hover {
  background: #2E7D32;
  color: #fff;
}

/* ---------- Image Placeholder ---------- */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E7D32;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '🌿';
  font-size: 2.5rem;
  position: absolute;
  opacity: 0.3;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, height 0.4s ease, border-bottom 0.4s ease;
}

.navbar.scrolled {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar.nav-open {
  background: #FFFFFF;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}



.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #FFFFFF;
  position: relative;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #A5D6A7;
}

.navbar.scrolled .nav-links a,
.navbar.nav-open .nav-links a {
  color: #444;
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active,
.navbar.nav-open .nav-links a:hover,
.navbar.nav-open .nav-links a.active {
  color: #2E7D32;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}

.navbar.scrolled .hamburger span,
.navbar.nav-open .hamburger span {
  background: #1B5E20;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateX(100%);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.hero-slide.active {
  transform: translateX(0);
  z-index: 1;
}

.hero-slide.prev {
  transform: translateX(-100%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(27, 94, 32, 0.4) 50%,
      rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 800px;
}

.hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-tagline span {
  display: block;
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 30px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 36px;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.hero-content .btn-primary {
  background: #FFFFFF;
  color: #1B5E20;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-content .btn-primary:hover {
  background: #f0f7f0;
  transform: translateY(-2px);
}

/* ============================================
   WELCOME SECTION
   ============================================ */
.welcome {
  background: #F5F8F4;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.welcome-img .img-placeholder {
  min-height: 380px;
}

.welcome-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 16px;
}

.welcome-text p {
  color: #555;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.welcome-text .btn {
  margin-top: 12px;
}

/* ============================================
   HIGHLIGHTS SECTION
   ============================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ============================================
   GLIMPSE GALLERY (HOME)
   ============================================ */
.glimpse-gallery {
  padding-top: 0;
}

.glimpse-teaser-wrapper {
  position: relative;
  max-height: 440px;
  /* Cuts row 2 in half */
  overflow: hidden;
  margin-top: 40px;
  border-radius: 12px;
}

.glimpse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.glimpse-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
}

.glimpse-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.glimpse-item.blurred img {
  filter: blur(8px) brightness(0.9);
  transform: scale(1.1);
}

.glimpse-teaser-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent, #F5F8F4 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding-top: 40px;
  /* Center button on the 'cut' line */
}

.glimpse-action {
  text-align: center;
  margin-top: 50px;
}



.highlights {
  background: linear-gradient(to bottom, #FFFFFF, #F5F8F4);
}

.highlight-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0,0,0,0.03);
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  border-color: #A5D6A7;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.highlight-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}

.highlight-icon svg {
  width: 32px;
  height: 32px;
  stroke: #2E7D32;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highlight-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 10px;
}

.highlight-card p {
  color: #666;
  font-size: 0.95rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  background: #0D2B12; /* Deep Forest */
  color: #FFFFFF;
  padding: 100px 0;
}

.testimonials .section-title h2 {
  color: #FFFFFF;
}

.testimonials .section-title h2::after {
  background: #A5D6A7;
}

.testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-top: 50px;
}

.testimonial-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonial-column .testimonial-card {
  flex: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(165, 214, 167, 0.4);
}

.testimonial-stars {
  color: #FFC107;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 2.5rem;
  color: rgba(165, 214, 167, 0.3);
  position: absolute;
  top: 25px;
  right: 30px;
  font-family: serif;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 30px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E7D32, #1B5E20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid rgba(165, 214, 167, 0.3);
}

.testimonial-author-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 3px;
}

.testimonial-author-info span {
  font-size: 0.85rem;
  color: #A5D6A7;
}

/* ============================================
   ROOM CARDS
   ============================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.room-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.room-card-img {
  height: 240px;
  overflow: hidden;
}

.room-card-img .img-placeholder {
  border-radius: 0;
  min-height: 240px;
  transition: transform 0.4s;
}

.room-card:hover .room-card-img .img-placeholder {
  transform: scale(1.05);
}

.room-card-body {
  padding: 24px;
}

.room-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 8px;
}

.room-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2E7D32;
  margin-bottom: 12px;
}

.room-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: #999;
}

.room-card-body p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.room-card-body .btn {
  width: 100%;
  text-align: center;
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img,
.gallery-item .img-placeholder {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.4s;
}

.gallery-item:hover img,
.gallery-item:hover .img-placeholder {
  transform: scale(1.06);
}

/* ============================================
   FACILITIES GRID
   ============================================ */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.facility-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.facility-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.facility-icon svg {
  width: 32px;
  height: 32px;
  stroke: #2E7D32;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.facility-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 10px;
}

.facility-card p {
  color: #666;
  font-size: 0.93rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 16px;
}

.about-text p {
  color: #555;
  margin-bottom: 14px;
  font-size: 1.02rem;
}

/* Story Section */
.story-section {
  background: #F5F8F4;
}

.story-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.story-content p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* Mission Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.mv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2E7D32;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-card p {
  color: #555;
  font-size: 0.97rem;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  text-align: center;
  padding: 24px;
}

.why-card .why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card .why-icon svg {
  width: 28px;
  height: 28px;
  stroke: #2E7D32;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 8px;
}

.why-card p {
  color: #666;
  font-size: 0.93rem;
}

/* Large Peaceful Image */
.peaceful-image-section {
  padding: 0;
}

.peaceful-image-section .img-placeholder {
  min-height: 420px;
  border-radius: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  stroke: #2E7D32;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 4px;
}

.contact-info-item p {
  color: #666;
  font-size: 0.93rem;
}

/* Contact Form */
.contact-form-wrapper {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-form-wrapper h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #333;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fafdf9;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #A5D6A7;
  box-shadow: 0 0 0 3px rgba(165, 214, 167, 0.3);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form-wrapper .btn {
  width: 100%;
  text-align: center;
}

/* Map Placeholder */
.map-section {
  background: #F5F8F4;
}

.map-placeholder {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  padding: 160px 0 90px;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('swimming pool/swim-3.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #FFFFFF;
  position: relative;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1B5E20;
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-about h3,
.footer-col h4 {
  color: #FFFFFF;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-about h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
}

.footer-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 0.93rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 1.05rem;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #A5D6A7;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
  font-size: 0.93rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: #A5D6A7;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  min-width: 18px;
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #A5D6A7;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  stroke: #FFFFFF;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-section {
  background: #FFFFFF;
}

.map-section .section-title h2 {
  color: #1B5E20;
}

.map-section .section-subtitle {
  color: #666;
}

.map-placeholder {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet — 992px */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    max-height: 100vh;
    padding: 16px 0;
  }

  .nav-links a {
    padding: 14px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    color: #444 !important;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .welcome-grid,
  .about-intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .highlights-grid,
  .rooms-grid,
  .facilities-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .section-padding {
    padding: 50px 0;
  }

  .page-hero {
    background-attachment: scroll;
    padding: 120px 0 60px;
  }

  .container {
    padding: 0 20px;
  }
}

/* Mobile — 576px */
@media (max-width: 576px) {
  .nav-container {
    height: 72px;
  }

  .nav-links {
    top: 72px;
  }

  .nav-logo img {
    height: 48px;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-tagline {
    font-size: 0.75rem;
    gap: 10px;
    margin-bottom: 15px;
  }

  .hero-tagline span {
    width: 30px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-content h1 span {
    font-size: 0.65em !important;
    display: block;
    margin-top: 12px;
    line-height: 1.4;
  }

  .hero-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 5px;
  }

  .section-title h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .section-title h2 small {
    font-size: 0.65em !important;
    display: block;
    margin-top: 10px;
    line-height: 1.4;
  }

  .welcome-text h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .welcome-text h3 {
    font-size: 1.05rem !important;
    margin-top: 15px;
    margin-bottom: 22px;
    line-height: 1.4;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .highlights-grid,
  .rooms-grid,
  .testimonials-grid,
  .facilities-grid,
  .gallery-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-padding {
    padding: 40px 0;
  }

  .container {
    padding: 0 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
    margin-bottom: 10px;
  }

  .btn-outline {
    margin-top: 5px;
  }

  .contact-form-wrapper {
    padding: 20px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 62px;
  height: 62px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: translateY(-5px);
  animation: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ============================================
   ROOM DETAILS PAGE
   ============================================ */
.room-details-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: flex-start;
  margin-top: 40px;
}

.room-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.room-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: #FFFFFF;
  transform: translateY(-50%) scale(1.05);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
  stroke: #444;
  fill: none;
  stroke-width: 2;
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.room-info h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #333;
}

.room-info h2 span {
  color: #2E7D32;
}

.room-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-price span {
  font-size: 0.85rem;
  color: #BBB;
  text-transform: uppercase;
  font-weight: 500;
}

.room-meta-section {
  margin-bottom: 32px;
}

.room-meta-section h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #AAA;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.room-meta-section p {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 10px;
  line-height: 1.5;
}

.room-services-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 50px 0 25px;
  text-transform: uppercase;
  color: #333;
  letter-spacing: 0.5px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  max-width: 800px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #F0F0F0;
}

.service-item span {
  font-size: 0.92rem;
  font-weight: 700;
  color: #9EA3A9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon {
  width: 8px;
  height: 8px;
  background: #2E7D32;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  flex-shrink: 0;
}

.back-to-rooms {
  margin-top: 60px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2E7D32;
  font-weight: 700;
  transition: all 0.3s;
}

.back-to-rooms:hover {
  transform: translateX(-5px);
}

@media (max-width: 992px) {
  .room-details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .room-main-img {
    height: 380px;
  }

  .room-info h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}