/* =============================================
   WEDDING RESORT - GLOBAL STYLES
   Color Palette:
   Primary:   #fffaee (cream)
   Secondary: #475d33 (dark green)
   Accent:    #c9a84c (gold)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --cream:       #fffaee;
  --cream-dark:  #f5edd8;
  --green:       #475d33;
  --green-dark:  #2f3e22;
  --green-light: #6a8a4a;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --white:       #ffffff;
  --text-dark:   #1a1a1a;
  --text-mid:    #555555;
  --text-light:  #888888;
  --shadow-sm:   0 2px 12px rgba(71,93,51,0.10);
  --shadow-md:   0 8px 32px rgba(71,93,51,0.15);
  --shadow-lg:   0 20px 60px rgba(71,93,51,0.20);
  --radius:      12px;
  --radius-lg:   24px;
  --transition:  all 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  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; background: none; font-family: inherit; }

/* ---- Typography ---- */
.font-display { font-family: 'Playfair Display', serif; }
.font-elegant { font-family: 'Cormorant Garamond', serif; }

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.section-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: var(--green-dark);
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  font-weight: 300;
}

/* ---- Divider ---- */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1rem 0 1.8rem;
}
.gold-divider span {
  display: block;
  height: 1px;
  width: 60px;
  background: var(--gold);
  opacity: 0.6;
}
.gold-divider i { color: var(--gold); font-size: 0.75rem; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--cream);
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(71,93,51,0.30);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(71,93,51,0.40);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  background: #b8963e;
  transform: translateY(-2px);
}

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

/* ---- Section Padding ---- */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ============================================= 
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(255,250,238,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(71,93,51,0.12);
  height: 68px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-icon {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.nav-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--green-dark);
  font-weight: 700;
}
.nav-logo .logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  display: block;
  margin-top: -4px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Hero navbar – white links */
body.hero-page #navbar:not(.scrolled) .nav-links a,
body.hero-page #navbar:not(.scrolled) .logo-text,
body.hero-page #navbar:not(.scrolled) .logo-sub { color: var(--cream); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: 280px; height: 100%;
  background: var(--cream);
  z-index: 999;
  padding: 100px 40px 40px;
  flex-direction: column;
  gap: 32px;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--green-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 16px;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); padding-left: 8px; }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 998;
}
.mobile-overlay.open { display: block; }
.nav-close {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 1.5rem;
  color: var(--green);
  cursor: pointer;
}

/* ============================================= 
   FOOTER
   ============================================= */
footer {
  background: var(--green-dark);
  color: var(--cream);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .logo-text { color: var(--cream); font-size: 1.4rem; }
.footer-brand .logo-sub  { color: var(--gold); }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.875rem;
  color: rgba(255,250,238,0.65);
  line-height: 1.8;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,250,238,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--gold);
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,250,238,0.65);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--cream); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 0.85rem;
}
.footer-contact-item p {
  font-size: 0.85rem;
  color: rgba(255,250,238,0.65);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,250,238,0.10);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center; 
  text-align: center;     
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,250,238,0.45); }

/* ============================================= 
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.page-hero:hover .page-hero-bg { transform: scale(1); }

.page-hero-content {
  position: relative;
  text-align: center;
  color: var(--cream);
  padding: 0 20px;
}
.page-hero-content .section-tag { color: var(--gold-light); }
.page-hero-content h1 { font-size: clamp(2rem, 5vw, 4rem); color: var(--cream); }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(255,250,238,0.6);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,250,238,0.4); }

/* ============================================= 
   HOME – HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&q=80') center/cover no-repeat;
  transform: scale(1.08);
  animation: heroZoom 10s ease forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47,62,34,0.82) 0%, rgba(71,93,51,0.55) 60%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--cream);
  animation: heroFade 1.2s ease 0.3s both;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--cream);
}
.hero-title em { 
  font-style: italic; 
  color: var(--gold-light); 
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,250,238,0.78);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,250,238,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
  z-index: 2;
}
.hero-scroll i { font-size: 1.1rem; }

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ---- Floating Cards on Hero ---- */
.hero-cards {
  position: absolute;
  bottom: 60px; right: 60px;
  display: flex;
  gap: 12px;
  z-index: 2;
  animation: heroFade 1.2s ease 0.8s both;
}

.hero-card {
  background: rgba(255,250,238,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,250,238,0.2);
  padding: 16px 16px;
  border-radius: 14px;
  text-align: center;
  color: var(--cream);
}
.hero-card strong { display: block; font-size: 1.5rem; font-family: 'Playfair Display', serif; }
.hero-card span { font-size: 0.7rem; opacity: 0.7; letter-spacing: 0.1em; }

/* ---- Intro Section ---- */
.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image-wrap {
  position: relative;
}

.intro-image-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.intro-image-accent {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
}

.intro-badge {
  position: absolute;
  top: 30px; left: -20px;
  background: var(--green);
  color: var(--cream);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.intro-badge strong { display: block; font-size: 2.2rem; font-family: 'Playfair Display', serif; line-height: 1; }
.intro-badge span { font-size: 0.72rem; letter-spacing: 0.1em; opacity: 0.8; }

/* ---- Highlights ---- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  margin-top: 60px;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(71,93,51,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.highlight-card:hover::before { transform: scaleX(1); }

.highlight-icon {
  width: 64px; height: 64px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--green);
  transition: var(--transition);
}
.highlight-card:hover .highlight-icon {
  background: var(--green);
  color: var(--cream);
}

.highlight-card h3 { font-size: 1.05rem; color: var(--green-dark); margin-bottom: 8px; }
.highlight-card p  { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }

/* ---- Services Preview ---- */
.services-preview {
  background: var(--green-dark);
  padding: 100px 0;
}
.services-preview .section-title { color: var(--cream); }
.services-preview .section-subtitle { color: rgba(255,250,238,0.65); }
.services-preview .section-tag  { color: var(--gold-light); }
.services-preview .gold-divider span { background: var(--gold-light); }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 50px;
}

.preview-card {
  background: rgba(255,250,238,0.05);
  border: 1px solid rgba(255,250,238,0.12);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  cursor: pointer;
}
.preview-card:hover {
  background: rgba(255,250,238,0.10);
  transform: translateY(-6px);
  border-color: var(--gold);
}
.preview-card i { font-size: 2rem; color: var(--gold); margin-bottom: 16px; display: block; }
.preview-card h3 { font-size: 1.1rem; color: var(--cream); margin-bottom: 10px; }
.preview-card p  { font-size: 0.85rem; color: rgba(255,250,238,0.6); line-height: 1.7; }

/* ---- Testimonials ---- */
.testimonials-wrap {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(71,93,51,0.08);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testimonial-card .quote-icon {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
}
.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cream-dark);
}
.testimonial-author h4 { font-size: 0.9rem; color: var(--green-dark); }
.testimonial-author span { font-size: 0.75rem; color: var(--gold); }

.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 4px; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 280px; height: 280px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 360px; height: 360px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50%;
}
.cta-banner h2 { font-size: clamp(1.6rem, 4vw, 3.2rem); color: var(--cream); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,250,238,0.7); max-width: 500px; margin: 0 auto 36px; font-size: clamp(0.85rem, 2vw, 1rem); }
.cta-actions   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================= 
   ABOUT PAGE
   ============================================= */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-img-stack {
  position: relative;
  height: 540px;
}
.story-img-a {
  position: absolute;
  top: 0; left: 0;
  width: 72%; height: 78%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.story-img-b {
  position: absolute;
  bottom: 0; right: 0;
  width: 58%; height: 56%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 80px;
}

.feature-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(71,93,51,0.08);
  transition: var(--transition);
}
.feature-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-item i { font-size: 2rem; color: var(--green); margin-bottom: 16px; display: block; }
.feature-item h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 8px; }
.feature-item p  { font-size: 0.82rem; color: var(--text-mid); line-height: 1.7; }

/* Why Choose Us */
.why-us {
  background: var(--cream-dark);
  padding: 100px 0;
}
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-item:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.why-num {
  width: 40px; height: 40px;
  background: var(--green);
  color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  flex-shrink: 0;
}
.why-item h4 { font-size: 0.95rem; color: var(--green-dark); margin-bottom: 4px; }
.why-item p  { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }

.why-image {
  width: 100%; height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ---- Booking Section ---- */
.booking-section {
  padding: 100px 0;
  background: var(--white);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-md);
}

.calendar-wrap h3 { font-size: 1.5rem; color: var(--green-dark); margin-bottom: 24px; }

/* Custom Calendar */
.custom-calendar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(71,93,51,0.12);
}

.cal-header {
  background: var(--green);
  color: var(--cream);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cal-header h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.cal-header button {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--cream);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cal-header button:hover { background: rgba(255,255,255,0.3); }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7,1fr);
  background: var(--cream-dark);
  padding: 8px 0;
}
.cal-weekdays span {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  text-transform: uppercase;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7,1fr);
  padding: 8px;
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.cal-day:hover:not(.empty):not(.past) {
  background: var(--cream-dark);
  color: var(--green);
}
.cal-day.today {
  border: 1.5px solid var(--green);
  color: var(--green);
  font-weight: 600;
}
.cal-day.selected {
  background: var(--green);
  color: var(--cream);
  font-weight: 600;
}
.cal-day.booked {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  cursor: not-allowed;
}
.cal-day.past { color: #ccc; cursor: not-allowed; }
.cal-day.empty { cursor: default; }

/* Booking Form */
.booking-form h3 { font-size: 1.5rem; color: var(--green-dark); margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(71,93,51,0.2);
  border-radius: var(--radius);
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(71,93,51,0.10);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ============================================= 
   SERVICES PAGE
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 60px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(71,93,51,0.08);
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }

.service-num {
  position: absolute;
  top: 16px; left: 16px;
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.service-icon-wrap {
  position: absolute;
  bottom: -22px; right: 24px;
  width: 48px; height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap { background: var(--gold); }

.service-card-body {
  padding: 36px 28px 28px;
}
.service-card-body h3 {
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.service-card-body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(71,93,51,0.15);
  transition: var(--transition);
}
.service-card:hover .service-tag {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}

/* ---- Process Section ---- */
.process-section {
  background: var(--green-dark);
  padding: 100px 0;
}
.process-section .section-title { color: var(--cream); }
.process-section .section-subtitle { color: rgba(255,250,238,0.65); }
.process-section .section-tag { color: var(--gold-light); }
.process-section .gold-divider span { background: var(--gold-light); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.process-step { text-align: center; }
.step-circle {
  width: 80px; height: 80px;
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  position: relative;
  transition: var(--transition);
}
.process-step:hover .step-circle {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
.process-step h4 { font-size: 1rem; color: var(--cream); margin-bottom: 8px; }
.process-step p  { font-size: 0.82rem; color: rgba(255,250,238,0.55); line-height: 1.7; }

/* ============================================= 
   GALLERY PAGE
   ============================================= */
.gallery-section { padding: 80px 0; }
.gallery-section + .gallery-section { padding-top: 20px; }

.gallery-category {
  margin-bottom: 70px;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.category-header h2 { font-size: 1.8rem; color: var(--green-dark); }
.carousel-nav { display: flex; gap: 10px; }
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}
.carousel-btn:hover { background: var(--green); color: var(--cream); }

.carousel-viewport { overflow: hidden; border-radius: var(--radius-lg); }

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.carousel-item {
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.carousel-item img {
  width: 100%; height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.carousel-item:hover img { transform: scale(1.06); }

.carousel-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(47,62,34,0.7), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.carousel-item:hover .carousel-item-overlay { opacity: 1; }
.carousel-item-overlay span {
  color: var(--cream);
  font-size: 0.85rem;
  font-family: 'Playfair Display', serif;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 0 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: fixed;
  top: 24px; right: 24px;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }

/* ============================================= 
   CONTACT PAGE
   ============================================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--green-dark); margin-bottom: 8px; }
.contact-form-card > p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 36px; }

.contact-info-side { display: flex; flex-direction: column; gap: 24px; }

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid rgba(71,93,51,0.08);
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.contact-info-card .icon-wrap {
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-info-card:hover .icon-wrap { background: var(--green); color: var(--cream); }
.contact-info-card h4 { font-size: 0.9rem; color: var(--green-dark); margin-bottom: 4px; }
.contact-info-card p  { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; }

.map-container {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 280px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success i { font-size: 3rem; color: var(--green); margin-bottom: 16px; display: block; }
.form-success h3 { color: var(--green-dark); margin-bottom: 8px; }
.form-success p  { color: var(--text-mid); font-size: 0.9rem; }

/* ============================================= 
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }

/* ============================================= 
   RESPONSIVE DESIGN
   ============================================= */

/* ---- 1200px: Large tablets / small laptops ---- */
@media (max-width: 1200px) {
  #navbar { padding: 0 28px; }

  .intro-section  { gap: 48px; }
  .intro-image-main { height: 480px; }
  .intro-image-accent { width: 160px; height: 160px; right: -16px; bottom: -16px; }

  .highlights-grid { grid-template-columns: repeat(4,1fr); gap: 16px; }
  .highlights-grid .highlight-card { padding: 28px 18px; }

  .preview-grid { grid-template-columns: repeat(3,1fr); gap: 18px; }

  .booking-inner { padding: 44px; gap: 40px; }

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 32px; }
}

/* ---- 1024px: Tablet landscape ---- */
@media (max-width: 1024px) {
  .section { padding: 80px 0; }

  .nav-links { gap: 24px; }
  .nav-links a { font-size: 0.74rem; }

  .hero-cards { right: 24px; bottom: 40px; gap: 10px; }
  .hero-card  { padding: 12px 16px; }
  .hero-card strong { font-size: 1.25rem; }

  .intro-section { grid-template-columns: 1fr 1.1fr; gap: 36px; }
  .intro-image-main { height: 420px; }
  .intro-badge { left: -10px; padding: 16px 18px; }
  .intro-badge strong { font-size: 1.8rem; }

  .highlights-grid { grid-template-columns: repeat(2,1fr); }

  .services-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }

  .about-story { gap: 48px; }
  .features-grid { grid-template-columns: repeat(3,1fr); }

  .why-us-grid { gap: 40px; }
  .why-image { height: 400px; }

  .booking-inner { padding: 36px; gap: 32px; }

  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }

  .contact-wrapper { gap: 36px; }
  .contact-form-card { padding: 36px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand p { max-width: 100%; }
}

/* ---- 900px: Tablet portrait (hamburger appears) ---- */
@media (max-width: 900px) {
  #navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  /* Hero */
  .hero-cards { display: none; }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: clamp(2rem, 7vw, 3.5rem); }
  .hero-subtitle { font-size: 0.92rem; max-width: 100%; }

  /* Intro */
  .intro-section  { grid-template-columns: 1fr; gap: 40px; }
  .intro-image-main { height: 380px; }
  .intro-image-accent { display: none; }
  .intro-badge { left: 0; top: 16px; }

  /* Highlights */
  .highlights-grid { grid-template-columns: repeat(2,1fr); }

  /* Preview grid */
  .preview-grid { grid-template-columns: 1fr 1fr; }

  /* Testimonials */
  .testimonials-wrap { grid-template-columns: 1fr; }

  /* About */
  .about-story { grid-template-columns: 1fr; gap: 36px; }
  .story-img-stack { height: 340px; }
  .story-img-b { display: none; }
  .story-img-a { width: 100%; height: 100%; position: relative; border-radius: var(--radius-lg); }

  /* Facilities */
  .features-grid { grid-template-columns: repeat(2,1fr); }

  /* Why us */
  .why-us-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image { height: 340px; }
  .why-item:hover { transform: none; }

  /* Booking */
  .booking-inner { grid-template-columns: 1fr; padding: 32px 28px; gap: 32px; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2,1fr); }

  /* Process */
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .process-steps::before { display: none; }

  /* Contact */
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-card { padding: 32px; }
  .contact-info-card:hover { transform: none; }

  /* CTA */
  .cta-banner { padding: 64px 0; }
  .cta-actions { flex-direction: column; align-items: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer { padding: 60px 0 0; }
}

/* ---- 768px: Mobile landscape / large mobile ---- */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  /* Page hero */
  .page-hero { height: 320px; }
  .page-hero-content h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); margin-bottom: 16px; }
  .hero-subtitle { font-size: 0.88rem; margin-bottom: 28px; }
  .hero-actions { gap: 12px; }
  .btn-primary, .btn-outline, .btn-gold { padding: 12px 26px; font-size: 0.82rem; }

  /* Stats row inside intro */
  .intro-section > div > div[style*="display:flex;gap:32px"] { gap: 16px; }

  /* Highlights */
  .highlights-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .highlight-card { padding: 24px 16px; }
  .highlight-icon { width: 52px; height: 52px; font-size: 1.2rem; }

  /* Preview */
  .preview-grid { grid-template-columns: 1fr; }
  .preview-card { padding: 28px 22px; }

  /* Testimonials */
  .testimonial-card { padding: 24px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card-img { height: 200px; }
  .service-card-body { padding: 24px 20px 20px; }

  /* Process */
  .process-steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .step-circle { width: 64px; height: 64px; font-size: 1.2rem; margin-bottom: 16px; }

  /* Add-ons grid on services page */
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    display: grid !important;
    grid-template-columns: repeat(2,1fr) !important;
    gap: 14px !important;
  }

  /* Booking */
  .booking-inner { padding: 24px 18px; gap: 28px; }
  .booking-form h3, .calendar-wrap h3 { font-size: 1.25rem; margin-bottom: 16px; }

  /* Contact form two-column rows */
  .contact-form-card div[style*="grid-template-columns:1fr 1fr"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .contact-form-card { padding: 28px 20px; }

  /* Why us */
  .why-us { padding: 64px 0; }
  .why-image { height: 280px; }

  /* Features grid */
  .features-grid { grid-template-columns: repeat(2,1fr); margin-top: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 48px 0 0; }
  .footer-brand p { max-width: 100%; }

  /* CTA */
  .cta-banner { padding: 56px 0; }
  .cta-banner h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); }

  /* Gallery carousel */
  .carousel-item { width: 260px !important; }
  .carousel-item img { height: 220px; }
}

/* ---- 640px: Small mobile ---- */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* Navbar */
  #navbar { padding: 0 16px; height: 68px; }
  #navbar.scrolled { height: 60px; }
  .nav-logo .logo-text { font-size: 1rem; }
  .nav-logo .logo-sub  { font-size: 0.5rem; }
  .nav-logo .logo-icon { width: 34px; height: 34px; font-size: 0.9rem; }

  /* Hero */
  .hero-title { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; justify-content: center; }

  /* Highlights: 1 column */
  .highlights-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 20px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Add-ons grid on services page */
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Stats grid on about page */
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
  }

  /* Intro stats row */
  div[style*="display:flex;gap:32px;margin-bottom:40px"] { gap: 12px !important; }

  /* Page hero */
  .page-hero { height: 260px; }
  .page-hero-content .section-tag { font-size: 0.6rem; }

  /* Story img stack: flat */
  .story-img-stack { height: auto; position: static; }
  .story-img-a { position: static; width: 100%; height: 280px; }
  .story-img-b { display: none; }

  /* Booking inner */
  .booking-inner { padding: 20px 14px; border-radius: var(--radius); }

  /* Contact form */
  .contact-form-card { padding: 22px 16px; border-radius: var(--radius); }
  .contact-info-card { padding: 20px 16px; }
  .contact-info-card .icon-wrap { width: 40px; height: 40px; font-size: 0.95rem; }

  /* Map */
  .map-container { height: 220px; }

  /* Testimonial */
  .testimonials-wrap { gap: 16px; }
  .testimonial-card { padding: 20px; }

  /* Footer */
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-actions .btn-gold, .cta-actions .btn-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Gallery carousel */
  .carousel-item { width: 220px !important; }
  .carousel-item img { height: 190px; }
  .category-header h2 { font-size: 1.3rem; }

  /* Why us */
  .why-item { padding: 18px; gap: 14px; }
  .why-num { width: 36px; height: 36px; font-size: 0.9rem; }
}

/* ---- 480px: Extra small mobile ---- */
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .container { padding: 0 14px; }

  .section-title { font-size: clamp(1.4rem, 7vw, 2rem); }
  .section-subtitle { font-size: 0.88rem; }

  /* Hero */
  .hero-title { font-size: clamp(1.7rem, 9vw, 2.2rem); }
  .hero-subtitle { font-size: 0.84rem; }

  /* Nav logo: hide subtitle on very small */
  .nav-logo .logo-sub { display: none; }

  /* Intro badge: smaller */
  .intro-badge { padding: 12px 14px; }
  .intro-badge strong { font-size: 1.5rem; }
  .intro-badge span { font-size: 0.62rem; }

  /* Intro image */
  .intro-image-main { height: 280px; }

  /* Preview cards */
  .preview-card { padding: 22px 18px; }
  .preview-card i { font-size: 1.6rem; }
  .preview-card h3 { font-size: 1rem; }

  /* Stats grid on about: 1 column on very small */
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Add-ons: 1 col */
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Highlight cards */
  .highlight-card { padding: 20px 14px; }
  .highlight-card h3 { font-size: 0.95rem; }

  /* Feature items */
  .feature-item { padding: 24px 16px; }

  /* Process steps */
  .step-circle { width: 56px; height: 56px; font-size: 1.1rem; }

  /* Service card */
  .service-card-img { height: 180px; }

  /* Booking */
  .booking-inner { padding: 18px 12px; }
  .cal-weekdays span { font-size: 0.58rem; }
  .cal-day { font-size: 0.78rem; }

  /* Contact */
  .contact-form-card { padding: 18px 14px; }

  /* Gallery */
  .carousel-item { width: 200px !important; }
  .carousel-item img { height: 170px; }

  /* CTA banner */
  .cta-banner { padding: 48px 0; }

  /* Footer */
  footer { padding: 40px 0 0; }
  .footer-grid { gap: 24px; }
  .footer-col h4 { font-size: 0.95rem; margin-bottom: 14px; }
  .footer-col ul li a { font-size: 0.82rem; }
  .footer-contact-item p { font-size: 0.8rem; }
}

/* ---- 380px: Smallest phones ---- */
@media (max-width: 380px) {
  .container { padding: 0 12px; }

  #navbar { padding: 0 12px; }
  .nav-logo .logo-text { font-size: 0.9rem; }
  .nav-logo .logo-icon { width: 30px; height: 30px; font-size: 0.8rem; }

  .hero-title { font-size: 1.6rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { padding: 12px 20px; font-size: 0.78rem; }

  .section-title { font-size: 1.35rem; }

  .highlights-grid { gap: 10px; }
  .highlight-card { padding: 18px 12px; }
  .highlight-icon { width: 44px; height: 44px; font-size: 1rem; margin-bottom: 12px; }
  .highlight-card h3 { font-size: 0.88rem; }
  .highlight-card p  { font-size: 0.78rem; }

  .preview-card h3 { font-size: 0.92rem; }
  .preview-card p  { font-size: 0.8rem; }

  .testimonial-card { padding: 16px; }
  .testimonial-card p { font-size: 0.82rem; }

  .booking-inner { padding: 16px 10px; }
  .contact-form-card { padding: 16px 12px; }

  .why-item { flex-direction: column; gap: 10px; }
  .why-item:hover { transform: none; }

  .cta-banner h2 { font-size: 1.3rem; }
  .cta-banner p  { font-size: 0.82rem; }

  .carousel-item { width: 180px !important; }
  .carousel-item img { height: 150px; }

  footer { padding: 36px 0 0; }
  .footer-brand .logo-text { font-size: 1.1rem; }
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.green-bg { background: var(--green-dark); }

/* ---- Touch device improvements ---- */
@media (hover: none) {
  .highlight-card:hover,
  .service-card:hover,
  .preview-card:hover,
  .testimonial-card:hover,
  .feature-item:hover,
  .why-item:hover,
  .contact-info-card:hover { transform: none; }
}

/* ---- Prevent horizontal overflow on all screens ---- */
html, body { max-width: 100%; overflow-x: hidden; }
.hero-bg { max-width: 100vw; }

.logo-img{
  height: 250px;
  width: 200px;
  object-fit: contain;
}

/* ---- Prevent horizontal overflow on all screens ---- */
html, body { max-width: 100%; overflow-x: hidden; }
.hero-bg { max-width: 100vw; }

/* =============================================
   LOGO + NAVBAR — sahi size, har page pe
   ============================================= */
.nav-logo {
  display: flex !important;
  align-items: center !important;
}

.logo-img {
  height: 250px !important;
  width: 300px !important;
  max-width: 300px !important;
  object-fit: contain !important;
  display: block !important;
  transition: height 0.3s ease;
}

/* Navbar taller so logo fits */
#navbar {
  height: 115px !important;
}
#navbar.scrolled {
  height: 78px !important;
}
#navbar.scrolled .logo-img {
  height: 250px !important;
}

@media (max-width: 1024px) {
  #navbar              { height: 108px !important; }
  #navbar.scrolled     { height: 74px !important; }
  .logo-img            { height: 92px !important; }
  #navbar.scrolled .logo-img { height: 58px !important; }
}

@media (max-width: 900px) {
  #navbar              { height: 100px !important; }
  #navbar.scrolled     { height: 72px !important; }
  .logo-img            { height: 84px !important; }
  #navbar.scrolled .logo-img { height: 56px !important; }
}

@media (max-width: 640px) {
  #navbar              { height: 90px !important; }
  #navbar.scrolled     { height: 68px !important; }
  .logo-img            { height: 74px !important; }
  #navbar.scrolled .logo-img { height: 150px !important; }
  /* navbar padding bhi fix */
  #navbar { padding: 0 16px !important; }
}

@media (max-width: 380px) {
  #navbar              { height: 80px !important; }
  #navbar.scrolled     { height: 64px !important; }
  .logo-img            { height: 150px !important; }
  #navbar.scrolled .logo-img { height: 150px !important; }
}

/* =============================================
   MOBILE SIDEBAR NAV — slide properly
   ============================================= */
.mobile-nav {
  display: flex !important;
  right: -100% !important;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 900px) {
  .mobile-nav {
    visibility: visible !important;
    pointer-events: auto !important;
  }
}
.mobile-nav.open {
  right: 0 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* =============================================
   FOOTER MOBILE — Quick Links + Services
   side by side on mobile
   ============================================= */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
  .footer-brand      { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
  }
  .footer-brand      { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: 1 / -1; }
  .footer-col h4     { font-size: 0.88rem; margin-bottom: 10px; }
  .footer-col ul li a { font-size: 0.78rem; }
}
@media (max-width: 380px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
  }
  .footer-brand      { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: 1 / -1; }
}

/* =============================================
   LIGHTBOX NAV BUTTONS — left / right
   ============================================= */
.lightbox img {
  max-width: 88vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 0 80px rgba(0,0,0,0.5);
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,250,238,0.12);
  border: 1.5px solid rgba(255,250,238,0.3);
  color: var(--cream);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2001;
  backdrop-filter: blur(4px);
}
.lightbox-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
@media (max-width: 640px) {
  .lightbox-nav  { width: 40px; height: 40px; font-size: 0.9rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}
@media (hover: none) {
  .lightbox-nav:hover { transform: translateY(-50%); }
}

@media (max-width: 900px) {
 
  #navbar {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 20px !important;
    height: 130px !important;
  }
 
  #navbar.scrolled {
    height: 110px !important;
  }
 
  /* Logo — LEFT side (default order) */
  .nav-logo {
    order: 0 !important;
    margin-left: 0 !important;
    flex-shrink: 0 !important;
  }
 
  /* Logo image — 3x bada */
  .logo-img {
    height: 150px !important;
    width: auto !important;
    max-width: 250px !important;
    object-fit: contain !important;
  }
 
  #navbar.scrolled .logo-img {
    height: 110px !important;
  }
 
  /* Hamburger — RIGHT side */
  .hamburger {
    order: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    cursor: pointer !important;
    padding: 6px !important;
    flex-shrink: 0 !important;
  }
 
  .hamburger span {
    display: block !important;
    width: 28px !important;
    height: 2.5px !important;
    background: var(--green) !important;
    border-radius: 2px !important;
    transition: var(--transition) !important;
  }
 
  body.hero-page #navbar:not(.scrolled) .hamburger span {
    background: var(--cream) !important;
  }
}
 
/* ──────────────────────────────────────────────
   640px se neeche
   ────────────────────────────────────────────── */
@media (max-width: 640px) {
 
  #navbar {
    padding: 0 16px !important;
    height: 115px !important;
  }
 
  #navbar.scrolled {
    height: 95px !important;
  }
 
  .logo-img {
    height: 100px !important;
    max-width: 200px !important;
  }
 
  #navbar.scrolled .logo-img {
    height: 100px !important;
  }
}
 
/* ──────────────────────────────────────────────
   380px se neeche
   ────────────────────────────────────────────── */
@media (max-width: 380px) {
 
  #navbar {
    padding: 0 12px !important;
    height: 100px !important;
  }
 
  #navbar.scrolled {
    height: 100px !important;
  }
 
  .logo-img {
    height: 85px !important;
    max-width: 220px !important;
  }
 
  #navbar.scrolled .logo-img {
    height: 120px !important;
  }
}
 
/* ──────────────────────────────────────────────
   SIDEBAR — Right side se slide
   ────────────────────────────────────────────── */
.mobile-nav {
  display: flex !important;
  flex-direction: column !important;
  position: fixed !important;
  top: 0 !important;
  right: -100% !important;
  left: auto !important;
  width: 280px !important;
  height: 100% !important;
  background: var(--cream) !important;
  z-index: 9999 !important;
  padding: 90px 36px 40px !important;
  gap: 0 !important;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15) !important;
  overflow-y: auto !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
 
.mobile-nav.open {
  right: 0 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
 
.mobile-nav a {
  display: block !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 1.35rem !important;
  color: var(--green-dark) !important;
  border-bottom: 1px solid rgba(71, 93, 51, 0.12) !important;
  padding: 18px 0 !important;
  margin: 0 !important;
  transition: color 0.25s ease, padding-left 0.25s ease !important;
  text-decoration: none !important;
}
 
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold) !important;
  padding-left: 10px !important;
}
 
.nav-close {
  position: absolute !important;
  top: 26px !important;
  right: 24px !important;
  font-size: 1.6rem !important;
  color: var(--green) !important;
  cursor: pointer !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  transition: background 0.2s ease !important;
}
 
.nav-close:hover {
  background: rgba(71, 93, 51, 0.1) !important;
}
 
.mobile-overlay {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.4) !important;
  z-index: 9998 !important;
  backdrop-filter: blur(2px) !important;
}
 
.mobile-overlay.open {
  display: block !important;
}
 