/* ============================================
   JUNEGIRI FARMS - COMPLETE THEME CSS
   Wilderness Homestay | Rishikesh, India
   Design: Dark moody nature meets ultra-premium minimal
   ============================================ */

/* ============================================
   1. CSS RESET & VARIABLES
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --forest: #1a3c2a;
  --forest-deep: #0f2318;
  --sage: #7c9a6e;
  --sage-light: #a8c49a;
  --earth: #8b6f47;
  --earth-light: #c4a87a;
  --cream: #faf6f0;
  --warmwhite: #fffcf7;
  --mist: #e8ede5;
  --gold: #c9a84c;
  --gold-light: #e8d590;
  --rust: #b85c3a;
  --text: #3a3a3a;
  --text-light: #6b6b6b;
  --charcoal: #2d2d2d;

  /* Radii */
  --radius: 12px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.18);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
  --transition-slow: 0.5s var(--ease);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--warmwhite);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

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

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

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

.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.section-bg-cream {
  background-color: var(--cream);
}

.section-bg-forest {
  background-color: var(--forest);
  color: var(--cream);
}

.section-bg-mist {
  background-color: var(--mist);
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title--light {
  color: var(--cream);
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

.section-subtitle--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header {
  margin-bottom: 60px;
}

.section-header--center {
  text-align: center;
}

.handwritten {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--earth);
  font-weight: 400;
}

.text-gold { color: var(--gold); }
.text-forest { color: var(--forest); }
.text-cream { color: var(--cream); }

/* ============================================
   4. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--forest-deep);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--forest-deep);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.btn-dark:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--forest-deep);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1rem;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   5. NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
  background: transparent;
}

.site-nav.scrolled {
  background: rgba(15, 35, 24, 0.97);
  padding: 12px 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.nav-logo-tagline {
  font-family: 'Caveat', cursive;
  font-size: 0.8rem;
  color: var(--gold-light);
  display: block;
  margin-top: -4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
  transition: color var(--transition);
  position: relative;
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
  color: #fff;
}

.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Sub-menus */
.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--forest-deep);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  padding: 8px 0;
  border-top: 2px solid var(--gold);
}

.nav-menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--transition);
}

.nav-menu .sub-menu li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 24px;
}

/* CTA in nav */
.menu-item-cta > a {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--forest-deep) !important;
  border-radius: var(--radius) !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
}

.menu-item-cta > a::after {
  display: none !important;
}

.menu-item-cta > a:hover {
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* ============================================
   6. PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 35, 24, 0.65) 0%,
    rgba(15, 35, 24, 0.5) 60%,
    rgba(15, 35, 24, 0.8) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #fff;
  margin-bottom: 16px;
  font-weight: 700;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

/* ============================================
   7. HOMEPAGE HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 35, 24, 0.8) 0%,
    rgba(15, 35, 24, 0.55) 50%,
    rgba(15, 35, 24, 0.4) 100%
  );
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--warmwhite), transparent);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-label {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: block;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
}

.hero-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* Hero card stack */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #fff;
  transition: all var(--transition);
}

.hero-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(8px);
  border-color: rgba(201, 168, 76, 0.3);
}

.hero-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  color: var(--gold);
}

.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #fff;
}

.hero-card-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

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

/* ============================================
   8. HOMEPAGE SECTIONS
   ============================================ */

/* --- About Section --- */
.about-section {
  padding: 100px 0;
}

.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content {
  padding-left: 20px;
}

.about-content .section-title {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
}

/* --- Experiences Section --- */
.experiences-section {
  padding: 100px 0;
  background-color: var(--cream);
}

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

.experience-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.experience-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.experience-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.experience-card:hover .experience-card-image img {
  transform: scale(1.08);
}

.experience-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--forest-deep);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.experience-card-body {
  padding: 24px;
}

.experience-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.experience-card-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.experience-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.experience-card-link:hover {
  gap: 10px;
  color: var(--earth);
}

/* --- Yoga Preview --- */
.yoga-preview {
  padding: 100px 0;
  background: var(--forest-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.yoga-preview::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 154, 110, 0.1), transparent);
}

.yoga-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.yoga-preview .section-title {
  color: #fff;
}

.yoga-preview .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.yoga-offerings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 32px;
}

.yoga-offering-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Yatra Preview --- */
.yatra-preview {
  padding: 100px 0;
}

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

.yatra-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  cursor: pointer;
}

.yatra-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.yatra-card:hover img {
  transform: scale(1.05);
}

.yatra-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 35, 24, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.yatra-card-duration {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.yatra-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 6px;
}

.yatra-card-price {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.yatra-card-price strong {
  color: var(--gold);
  font-size: 1.1rem;
}

/* --- Membership Preview --- */
.membership-preview {
  padding: 100px 0;
  background: var(--cream);
}

.membership-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.membership-pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--forest-deep);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-card-tier {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.pricing-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.pricing-card-period {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-card-features {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-card-features li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--mist);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card-features li::before {
  content: '\2713';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Rooms Preview --- */
.rooms-preview {
  padding: 100px 0;
}

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

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 100px 0;
  background: var(--forest-deep);
  color: #fff;
}

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

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

.booking-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* ============================================
   9. ROOMS PAGE
   ============================================ */
.rooms-listing {
  padding: 80px 0;
}

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

.room-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.room-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.room-card:hover .room-card-image img {
  transform: scale(1.06);
}

.room-card-price-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(15, 35, 24, 0.9);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius);
}

.room-card-price-badge span {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  display: block;
}

.room-card-body {
  padding: 24px;
}

.room-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.room-card-capacity {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.room-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.room-amenity-tag {
  background: var(--mist);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
}

.room-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--mist);
}

/* ============================================
   10. SINGLE ROOM
   ============================================ */
.room-detail {
  padding: 60px 0 100px;
}

.room-detail-hero {
  position: relative;
  height: 65vh;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

.room-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 35, 24, 0.7) 0%, transparent 50%);
}

.room-detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  padding-top: 40px;
}

.room-detail-content h2 {
  margin-bottom: 16px;
}

.room-detail-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.room-detail-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.room-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text);
}

.room-detail-meta-item svg {
  width: 20px;
  height: 20px;
  color: var(--sage);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.amenity-item svg {
  width: 20px;
  height: 20px;
  color: var(--sage);
  flex-shrink: 0;
}

/* Photo gallery placeholder */
.room-gallery {
  margin: 40px 0;
}

.room-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.room-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 160px;
  cursor: pointer;
  position: relative;
}

.room-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.room-gallery-item:hover img {
  transform: scale(1.08);
}

.room-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background var(--transition);
}

.room-gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.15);
}

/* ============================================
   11. YOGA PAGE
   ============================================ */
.yoga-page {
  padding: 60px 0 100px;
}

.yoga-offerings-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.yoga-offering-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-left: 4px solid var(--sage);
}

.yoga-offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold);
}

.yoga-offering-card h3 {
  margin-bottom: 12px;
}

.yoga-offering-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Retreat Calendar */
.retreat-calendar {
  margin-bottom: 80px;
}

.retreat-calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.retreat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.retreat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.retreat-card-image {
  height: 200px;
  overflow: hidden;
}

.retreat-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.retreat-card-body {
  padding: 24px;
}

.retreat-card-dates {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.retreat-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.retreat-card-price {
  font-size: 0.9rem;
  color: var(--earth);
  font-weight: 600;
}

/* Teacher Cards */
.teacher-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.teacher-card {
  text-align: center;
  padding: 32px 24px;
}

.teacher-card-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--sage-light);
}

.teacher-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.teacher-card-specialty {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Host Your Retreat CTA */
.retreat-cta-banner {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
}

.retreat-cta-banner h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.retreat-cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
}

/* ============================================
   12. YATRA PAGE
   ============================================ */
.yatra-listing {
  padding: 60px 0 100px;
}

.yatra-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.yatra-listing-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  transition: transform var(--transition);
}

.yatra-listing-card:hover {
  transform: translateY(-6px);
}

.yatra-listing-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.yatra-listing-card:hover img {
  transform: scale(1.06);
}

.yatra-listing-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 35, 24, 0.95) 0%, rgba(15, 35, 24, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.yatra-difficulty-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.yatra-difficulty-badge.easy {
  background: var(--sage);
  color: #fff;
}

.yatra-difficulty-badge.moderate {
  background: var(--gold);
  color: var(--forest-deep);
}

.yatra-difficulty-badge.challenging {
  background: var(--rust);
  color: #fff;
}

.yatra-listing-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}

.yatra-listing-card-meta span {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 500;
}

.yatra-listing-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
}

.yatra-listing-card-price {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.yatra-listing-card-price strong {
  color: var(--gold);
  font-size: 1.15rem;
}

/* --- Single Yatra Detail --- */
.yatra-detail {
  padding: 60px 0 100px;
}

.yatra-at-a-glance {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--forest);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 60px;
}

.yatra-glance-item {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.yatra-glance-item:last-child {
  border-right: none;
}

.yatra-glance-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.yatra-glance-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 700;
}

/* Itinerary Timeline */
.itinerary-timeline {
  position: relative;
  padding-left: 40px;
  margin: 40px 0;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--sage), var(--gold));
}

.itinerary-day {
  position: relative;
  padding-bottom: 40px;
}

.itinerary-day:last-child {
  padding-bottom: 0;
}

.itinerary-day-number {
  position: absolute;
  left: -40px;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--forest);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 1;
}

.itinerary-day-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.itinerary-day-content {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

.itinerary-day-details {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--earth);
  font-weight: 500;
}

/* Inclusions / Exclusions */
.inclusions-exclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.inclusions h3,
.exclusions h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.inclusions li,
.exclusions li {
  padding: 10px 0;
  border-bottom: 1px solid var(--mist);
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.inclusions li::before {
  content: '\2713';
  color: var(--sage);
  font-weight: 700;
}

.exclusions li::before {
  content: '\2717';
  color: var(--rust);
  font-weight: 700;
}

/* ============================================
   13. MEMBERSHIP PAGE
   ============================================ */
.membership-page {
  padding: 60px 0 100px;
}

.membership-story {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.membership-story p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.membership-pricing-section {
  margin-bottom: 80px;
}

.membership-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* FAQ Accordion */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--mist);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color var(--transition);
  width: 100%;
  text-align: left;
  background: none;
  border: none;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--text-light);
}

.faq-arrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
}

.faq-item.active .faq-arrow::before {
  transform: rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding-bottom: 22px;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================
   14. GALLERY PAGE
   ============================================ */
.gallery-page {
  padding: 60px 0 100px;
}

.gallery-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-filter-btn {
  padding: 8px 22px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--mist);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--forest);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 35, 24, 0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover::after {
  background: rgba(15, 35, 24, 0.25);
}

/* Lightbox placeholder */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius);
}

.gallery-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   15. ABOUT PAGE
   ============================================ */
.about-page {
  padding: 60px 0 100px;
}

.about-story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-story-section p {
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.about-value-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-value-icon {
  width: 60px;
  height: 60px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
}

.about-value-card h4 {
  margin-bottom: 10px;
}

.about-value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.about-team {
  margin-bottom: 80px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.about-team-card {
  text-align: center;
}

.about-team-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid var(--mist);
}

.about-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.about-team-role {
  font-size: 0.82rem;
  color: var(--text-light);
}

.about-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  margin-bottom: 80px;
}

.about-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.about-sustainability {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 60px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-sustainability h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.about-sustainability p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.about-sustainability-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-sustainability-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
}

.about-sustainability-list li::before {
  content: '\25CF';
  color: var(--sage-light);
  font-size: 0.6rem;
}

/* ============================================
   16. CONTACT PAGE
   ============================================ */
.contact-page {
  padding: 60px 0 100px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  padding-right: 20px;
}

.contact-info h3 {
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}

.contact-detail-text h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-detail-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 250px;
  background: var(--mist);
}

.contact-map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   17. BLOG / JOURNAL
   ============================================ */
.blog-listing {
  padding: 60px 0 100px;
}

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

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-title a:hover {
  color: var(--forest);
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-light);
  padding-top: 14px;
  border-top: 1px solid var(--mist);
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-card-author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

/* Single Post */
.single-post {
  padding: 60px 0 100px;
}

.single-post-header {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.single-post-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.single-post-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.single-post-meta {
  font-size: 0.88rem;
  color: var(--text-light);
  display: flex;
  justify-content: center;
  gap: 20px;
}

.single-post-featured-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 500px;
  margin-bottom: 48px;
}

.single-post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post-content {
  max-width: 740px;
  margin: 0 auto;
}

.single-post-content p {
  margin-bottom: 20px;
  line-height: 1.85;
  color: var(--text);
}

.single-post-content h2 {
  margin: 48px 0 16px;
  font-size: 1.6rem;
}

.single-post-content h3 {
  margin: 36px 0 12px;
  font-size: 1.3rem;
}

.single-post-content ul,
.single-post-content ol {
  margin: 16px 0 24px 24px;
}

.single-post-content li {
  margin-bottom: 8px;
  line-height: 1.7;
  list-style: disc;
}

.single-post-content ol li {
  list-style: decimal;
}

.single-post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text);
}

.single-post-content img {
  border-radius: var(--radius);
  margin: 24px 0;
}

.single-post-content a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.single-post-content a:hover {
  color: var(--gold);
}

/* Blog pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}

.blog-pagination a,
.blog-pagination span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.blog-pagination a {
  background: var(--mist);
  color: var(--text);
}

.blog-pagination a:hover {
  background: var(--forest);
  color: #fff;
}

.blog-pagination span.current {
  background: var(--forest);
  color: #fff;
}

/* ============================================
   18. TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

/* Cream background variant */
.section-bg-cream .testimonial-card {
  background: #fff;
  border: 1px solid var(--mist);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.section-bg-cream .testimonial-quote {
  color: var(--text);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}

.section-bg-cream .testimonial-author-name {
  color: var(--charcoal);
}

.testimonial-author-location {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.section-bg-cream .testimonial-author-location {
  color: var(--text-light);
}

/* ============================================
   19. FAQ ACCORDION (standalone)
   ============================================ */
/* Styles already defined in Membership section (13) above */

/* ============================================
   20. WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: #fff;
  color: var(--charcoal);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   21. BREADCRUMBS
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
}

.breadcrumb-current {
  color: var(--gold-light);
}

/* Non-hero breadcrumb (dark text on light bg) */
.breadcrumb--dark {
  color: var(--text-light);
  padding: 16px 0;
}

.breadcrumb--dark a {
  color: var(--text-light);
}

.breadcrumb--dark a:hover {
  color: var(--forest);
}

.breadcrumb--dark .breadcrumb-separator {
  color: var(--text-light);
}

.breadcrumb--dark .breadcrumb-current {
  color: var(--forest);
  font-weight: 500;
}

/* ============================================
   22. BOOKING SIDEBAR
   ============================================ */
.booking-sidebar {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--mist);
}

.booking-sidebar-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--mist);
}

.booking-sidebar-price .price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
}

.booking-sidebar-price .price-per {
  font-size: 0.88rem;
  color: var(--text-light);
}

.booking-sidebar-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-field label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.booking-field input,
.booking-field select {
  padding: 12px 16px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
}

.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-color: var(--sage);
}

.booking-dates-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booking-sidebar-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--mist);
  margin-top: 8px;
}

.booking-sidebar-total span:first-child {
  font-weight: 600;
  color: var(--charcoal);
}

.booking-sidebar-total span:last-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
}

.booking-sidebar .btn-primary {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 0.95rem;
}

.booking-sidebar-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* ============================================
   23. FORM STYLES
   ============================================ */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--rust);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text);
  background: #fff;
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(124, 154, 110, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #bbb;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--forest);
  flex-shrink: 0;
}

.form-checkbox span {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--forest-deep);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
}

.form-message {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-top: 16px;
}

.form-message.success {
  background: rgba(124, 154, 110, 0.1);
  color: var(--forest);
  border: 1px solid var(--sage-light);
}

.form-message.error {
  background: rgba(184, 92, 58, 0.1);
  color: var(--rust);
  border: 1px solid var(--rust);
}

/* Dark form variant */
.form--dark .form-input,
.form--dark .form-select,
.form--dark .form-textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.form--dark .form-input:focus,
.form--dark .form-select:focus,
.form--dark .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form--dark .form-label {
  color: rgba(255, 255, 255, 0.8);
}

.form--dark .form-input::placeholder,
.form--dark .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   24. FOOTER
   ============================================ */
.site-footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-logo-text {
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--forest-deep);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   25. ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

.fade-in {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}

.fade-in.visible {
  opacity: 1;
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Card hover lift */
.hover-lift {
  transition: transform var(--transition), box-shadow var(--transition);
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Image zoom on hover (for containers) */
.hover-zoom {
  overflow: hidden;
}

.hover-zoom img {
  transition: transform var(--transition-slow);
}

.hover-zoom:hover img {
  transform: scale(1.08);
}

/* Underline grow on hover */
.hover-underline {
  position: relative;
}

.hover-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.hover-underline:hover::after {
  width: 100%;
}

/* ============================================
   26. RESPONSIVE
   ============================================ */

/* ---- 1024px and below (Tablets) ---- */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .section-pad {
    padding: 72px 0;
  }

  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--forest-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 0;
    transition: right var(--transition);
    overflow-y: auto;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-menu > li > a {
    padding: 16px 0;
    font-size: 1rem;
  }

  .nav-menu > li > a::after {
    display: none;
  }

  .nav-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    padding: 0 0 8px 16px;
    background: transparent;
  }

  .menu-item-cta {
    margin-top: 16px;
  }

  .menu-item-cta > a {
    text-align: center;
    display: block !important;
  }

  /* Hero */
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-cards {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
  }

  /* Grids */
  .grid-3,
  .experiences-grid,
  .rooms-grid,
  .yatra-preview-grid,
  .yatra-listing-grid,
  .retreat-calendar-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4,
  .room-gallery-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* About */
  .about-section .container,
  .yoga-preview .container,
  .about-story-section,
  .about-sustainability {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    padding-left: 0;
  }

  .about-image-accent {
    display: none;
  }

  /* Room detail */
  .room-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-sidebar {
    position: static;
  }

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

  /* Yatra */
  .yatra-at-a-glance {
    grid-template-columns: repeat(3, 1fr);
  }

  .inclusions-exclusions {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Membership pricing */
  .membership-preview-inner {
    grid-template-columns: 1fr;
  }

  .membership-pricing-cards,
  .membership-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Contact */
  .contact-layout,
  .booking-contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info {
    padding-right: 0;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  /* About team */
  .about-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Teacher cards */
  .teacher-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Retreat CTA */
  .retreat-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
  }

  .retreat-cta-banner p {
    max-width: 100%;
  }
}

/* ---- 768px and below (Mobile) ---- */
@media (max-width: 768px) {
  .section-pad {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .container {
    padding: 0 16px;
  }

  /* Typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.35rem; }

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

  .section-subtitle {
    font-size: 0.95rem;
  }

  .handwritten {
    font-size: 1.25rem;
  }

  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-lg {
    padding: 14px 32px;
  }

  /* Page Hero */
  .page-hero {
    height: 50vh;
    min-height: 320px;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  /* Homepage Hero */
  .hero {
    height: 100vh;
    min-height: 600px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  /* All major grids to single column */
  .grid-2,
  .grid-3,
  .grid-4,
  .experiences-grid,
  .rooms-grid,
  .yatra-preview-grid,
  .yatra-listing-grid,
  .testimonials-grid,
  .blog-grid,
  .retreat-calendar-grid,
  .yoga-offerings-list,
  .teacher-cards,
  .about-values,
  .about-team-grid,
  .membership-pricing-cards,
  .membership-pricing-grid {
    grid-template-columns: 1fr;
  }

  .rooms-grid,
  .experiences-grid,
  .blog-grid {
    gap: 20px;
  }

  /* Gallery */
  .gallery-grid,
  .room-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }

  /* About section */
  .about-features {
    grid-template-columns: 1fr;
  }

  /* Room detail */
  .room-detail-meta {
    flex-direction: column;
    gap: 12px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  /* Yatra */
  .yatra-at-a-glance {
    grid-template-columns: repeat(2, 1fr);
  }

  .yatra-glance-item {
    padding: 20px 12px;
  }

  .itinerary-timeline {
    padding-left: 36px;
  }

  /* Yoga */
  .yoga-offerings {
    grid-template-columns: 1fr;
  }

  .yoga-offering-card {
    padding: 24px;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-dates-row {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-card {
    padding: 28px 20px;
  }

  .pricing-card-price {
    font-size: 2rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  /* Nav menu width */
  .nav-menu {
    width: 100%;
  }

  /* Retreat CTA */
  .retreat-cta-banner {
    padding: 36px 24px;
  }

  .retreat-cta-banner h3 {
    font-size: 1.4rem;
  }

  /* About sustainability */
  .about-sustainability {
    padding: 36px 24px;
  }

  .about-sustainability-list {
    grid-template-columns: 1fr;
  }

  /* WhatsApp */
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  /* Booking sidebar */
  .booking-sidebar {
    padding: 24px;
  }

  /* Single post */
  .single-post-content {
    padding: 0 4px;
  }

  /* Contact */
  .contact-map-placeholder,
  .about-map {
    height: 250px;
  }

  /* Blog pagination */
  .blog-pagination a,
  .blog-pagination span {
    width: 38px;
    height: 38px;
    font-size: 0.82rem;
  }
}

/* ---- 480px and below (small phones) ---- */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .page-hero-title {
    font-size: 1.7rem;
  }

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

  .yatra-at-a-glance {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .gallery-filters {
    gap: 8px;
  }

  .gallery-filter-btn {
    padding: 6px 16px;
    font-size: 0.78rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }
.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* WordPress-specific overrides */
.wp-block-image { margin: 24px 0; }
.wp-block-image img { border-radius: var(--radius); }
.aligncenter { text-align: center; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.82rem; color: var(--text-light); margin-top: 8px; text-align: center; }

/* Screen reader text (WordPress accessibility) */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   TEMPLATE-TO-CSS COMPATIBILITY LAYER
   Bridges class names from PHP templates to CSS
   ============================================ */

/* --- HEADER / NAV FIXES --- */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: all var(--transition); }
.site-header .site-nav { padding: 20px 0; transition: all var(--transition); }
.site-header.scrolled .site-nav { padding: 12px 0; }
.site-header.scrolled { background: rgba(15,35,24,0.97); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.15); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.site-logo { display: flex; align-items: center; gap: 12px; z-index: 1001; }
.site-logo img { height: 44px; width: auto; }
.site-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.site-logo-text span { color: var(--gold-light); }
.scrolled .site-logo-text { color: #fff; }

/* Nav menu wrapper */
#nav-menu { display: flex; align-items: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-list > li > a:hover::after,
.nav-list > li.current-menu-item > a::after { transform: scaleX(1); }
.nav-list > li > a:hover { color: #fff; }

.scrolled .nav-list > li > a { color: rgba(255,255,255,0.9); }
.scrolled .site-logo-text { color: #fff; }
.scrolled .site-logo-text span { color: var(--gold); }

.nav-list .menu-item-cta > a {
  background: var(--gold);
  color: var(--forest-deep) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}
.nav-list .menu-item-cta > a::after { display: none; }
.nav-list .menu-item-cta > a:hover { background: var(--gold-light); }

/* Nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}
.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* --- HERO V2 — Full-screen centered immersive --- */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--forest-deep);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-align: center;
}
.hero-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15,35,24,0.7) 0%,
    rgba(15,35,24,0.5) 40%,
    rgba(15,35,24,0.65) 70%,
    rgba(15,35,24,0.85) 100%
  );
  z-index: 1;
}
.hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 60%);
  z-index: 2;
}

.hero-v2-content {
  position: relative;
  z-index: 10;
  max-width: 780px;
  padding: 0 24px;
  animation: heroFadeIn 1.2s ease forwards;
}

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

.hero-v2-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 50px;
}
.hero-v2-location svg { opacity: 0.7; }

.hero-v2-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-v2-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-v2-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-v2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--forest-deep);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.hero-v2-btn-primary:hover {
  background: var(--gold-light);
  color: var(--forest-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}
.hero-v2-btn-primary svg { transition: transform var(--transition); }
.hero-v2-btn-primary:hover svg { transform: translateX(3px); }

.hero-v2-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.hero-v2-btn-secondary:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
  color: #fff;
}

/* Feature pills */
.hero-v2-pills {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  animation: heroFadeIn 1.2s 0.4s ease both;
}
.hero-v2-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
}
.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.pill-dot--green { background: #4caf50; }
.pill-dot--gold { background: var(--gold); }
.pill-dot--blue { background: #42a5f5; }
.pill-dot--pink { background: #ec407a; }

/* Bottom stats bar */
.hero-v2-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(15,35,24,0.6);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.hero-v2-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.hero-v2-stat {
  flex: 1;
  text-align: center;
  padding: 4px 0;
}
.hero-v2-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-v2-stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-v2-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-v2-scroll {
  position: absolute;
  bottom: 90px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroFadeIn 1.2s 0.8s ease both;
}
.hero-v2-scroll span {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
}
.hero-v2-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50% { opacity: 0.7; height: 50px; }
}

/* Hero Slideshow */
.hero-v2-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.5s ease-in-out;
  will-change: opacity, transform;
}
.hero-v2-slide.active {
  opacity: 1;
}
.hero-v2-slide.ken-burns {
  animation: kenBurns 20s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Responsive hero v2 */
@media (max-width: 768px) {
  .hero-v2 { min-height: 100svh; }
  .hero-v2-title { font-size: 2.2rem; }
  .hero-v2-tagline { font-size: 0.95rem; }
  .hero-v2-pills { gap: 8px; }
  .hero-v2-pill { font-size: 0.7rem; padding: 6px 12px; }
  .hero-v2-stats { flex-wrap: wrap; gap: 8px; }
  .hero-v2-stat { flex: none; width: 45%; }
  .hero-v2-stat-divider { display: none; }
  .hero-v2-scroll { display: none; }
  .hero-v2-bottom { padding: 16px 0; }
}

/* --- HERO SECTION FIX (legacy) --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: var(--forest-deep);
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,35,24,0.85) 0%, rgba(15,35,24,0.6) 50%, rgba(42,31,14,0.7) 100%);
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(124,154,110,0.12) 0%, transparent 70%),
              radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 50%);
  z-index: 2;
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}
.hero-section .hero-content { max-width: 560px; }

.hero-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-section .hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  line-height: 1.8;
  max-width: 480px;
}

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

.hero-section .hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-section .hero-stat { text-align: center; }
.hero-section .hero-stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}
.hero-section .hero-stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.hero-cards { display: none; } /* Hidden until images are added via customizer */

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn.btn-primary {
  background: var(--gold);
  color: var(--forest-deep);
}
.btn.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
  padding: 12px 24px;
}
.btn.btn-outline:hover { background: var(--forest); color: #fff; }
.btn-dark, .btn.btn-dark { background: var(--forest); color: #fff; padding: 14px 28px; border-radius: 50px; font-weight: 600; display: inline-flex; }
.btn-dark:hover, .btn.btn-dark:hover { background: var(--forest-deep); }

/* --- SECTION UTILITIES --- */
.section { padding: 100px 0; }
.section-about { background: var(--warmwhite); }
.section-experiences { background: var(--cream); }
.section-desc { font-size: 1.05rem; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }
.text-center { text-align: center; }
.section-header { margin-bottom: 48px; }
.section-header.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* --- TWO-COL GRID --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* --- ABOUT SECTION FIX --- */
.about-grid.two-col { gap: 80px; }
.about-images {
  position: relative;
  min-height: 400px;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
}
.about-img-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 55%;
  border-radius: var(--radius-lg);
  border: 6px solid var(--warmwhite);
  box-shadow: var(--shadow-lg);
}
.about-years-badge {
  position: absolute;
  bottom: 20%;
  left: -20px;
  background: var(--forest);
  color: #fff;
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 3;
}
.about-years-badge .years-number {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.about-years-badge .years-label {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
}
.about-content .section-label { margin-bottom: 8px; }
.about-content .section-title { margin-bottom: 16px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-feature-icon { font-size: 1.3rem; }
.about-feature-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest);
}

/* --- CARD GRID --- */
.card-grid {
  display: grid;
  gap: 28px;
}
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: block;
  text-decoration: none;
  color: var(--text);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.card:hover .card-image img { transform: scale(1.05); }
.card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--forest);
}
.card-body { padding: 24px; }
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 8px;
}
.card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--earth);
  transition: var(--transition);
}
.card-link:hover { color: var(--forest); }
.card-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}
.card-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.card-amenity {
  font-size: 0.7rem;
  padding: 3px 10px;
  background: var(--mist);
  border-radius: 50px;
  color: var(--forest);
  font-weight: 500;
}

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.page-hero .breadcrumb {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb a:hover { color: var(--gold-light); }

/* Also support .page-header from older templates */
.page-header {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
  padding: 160px 0 80px;
  text-align: center;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}
.page-header p { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-top: 8px; }

/* --- SECTION LINKS --- */
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--earth);
}
.section-link:hover { color: var(--forest); gap: 12px; }

/* --- YOGA PREVIEW ON HOMEPAGE --- */
.section-yoga-preview { background: var(--forest-deep); color: #fff; }
.section-yoga-preview .section-label { color: var(--gold-light); }
.section-yoga-preview .section-title { color: #fff; }
.section-yoga-preview .section-desc { color: rgba(255,255,255,0.6); }
.yoga-offering-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}
.yoga-offering-card:hover { background: rgba(255,255,255,0.1); }
.yoga-offering-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.yoga-offering-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.yoga-offering-card p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* --- YATRA PREVIEW --- */
.section-yatra-preview { background: var(--cream); }
.yatra-stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--mist);
}
.yatra-stat { text-align: center; }
.yatra-stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--forest);
}
.yatra-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Difficulty badges */
.difficulty-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.difficulty-easy { background: #e8f5e9; color: #2e7d32; }
.difficulty-moderate { background: #fff3e0; color: #e65100; }
.difficulty-challenging { background: #fbe9e7; color: #c62828; }

/* --- MEMBERSHIP PREVIEW ON HOMEPAGE --- */
.section-membership-preview { background: linear-gradient(180deg, var(--forest-deep), var(--forest)); color: #fff; }
.section-membership-preview .section-label { color: var(--gold-light); }
.section-membership-preview .section-title { color: #fff; }
.section-membership-preview .section-desc { color: rgba(255,255,255,0.6); }

.membership-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
}
.membership-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.membership-card.featured { background: rgba(201,168,76,0.12); border-color: var(--gold); }
.membership-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--forest-deep);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.membership-tier-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.membership-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Inter', sans-serif;
  margin-bottom: 4px;
}
.membership-price span { font-size: 0.9rem; font-weight: 400; color: rgba(255,255,255,0.5); }
.membership-card-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.membership-features { margin-bottom: 28px; }
.membership-features li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}
.membership-features .check { color: var(--sage-light); font-weight: 700; }
.membership-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.membership-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.membership-card.featured .membership-btn { background: var(--gold); color: var(--forest-deep); border-color: var(--gold); }
.membership-card.featured .membership-btn:hover { background: var(--gold-light); }

/* --- TESTIMONIALS --- */
.section-testimonials { background: var(--warmwhite); }
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--text); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
}
.testimonial-name { font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 600; color: var(--forest); }
.testimonial-location { font-size: 0.75rem; color: var(--text-light); }

/* --- BOOKING CTA SECTION --- */
.section-booking-cta {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
  text-align: center;
  padding: 80px 0;
}
.section-booking-cta h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}
.section-booking-cta p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 32px; }
.section-booking-cta .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}
.btn-whatsapp:hover { background: #20bd5a; color: #fff; transform: translateY(-2px); }

/* --- CONTACT PAGE --- */
.contact-grid.two-col { gap: 48px; align-items: start; }
.booking-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.booking-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--warmwhite);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(124,154,110,0.1); }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover { background: var(--forest-deep); }

.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--forest); margin-bottom: 12px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; margin-top: 28px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h4 { font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 600; color: var(--forest); margin-bottom: 2px; }
.contact-item p { font-size: 0.85rem; color: var(--text-light); }
.contact-item a { color: var(--earth); }
.contact-item a:hover { color: var(--forest); }

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: wa-pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { fill: #fff; width: 28px; height: 28px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* --- FOOTER FIX --- */
.site-footer .site-logo { margin-bottom: 16px; }
.site-footer .site-logo-text { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--forest-deep); }
.footer-social svg { width: 18px; height: 18px; }

/* --- CARD STRUCTURE FIXES --- */
/* Cards must show both image and body - no overflow clip on body */
.card { overflow: visible; }
.card-image { height: 200px; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.card-image-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  font-size: 3rem;
}
.card-image-placeholder .card-icon { font-size: 3rem; }
.card-image-placeholder .card-icon img.emoji { width: 48px; height: 48px; display: inline; }
.card-body { padding: 20px 24px 24px; background: #fff; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }

/* Room card structure */
.room-card { overflow: visible; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.room-card .card-image { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

/* Yatra card structure */
.yatra-card { overflow: visible; }

/* --- TEXT VISIBILITY FIXES --- */
/* Ensure dark text in card bodies */
.card-body h3, .card-body .card-title { color: var(--forest); }
.card-body p, .card-body .card-desc { color: var(--text-light); }
.card-body .card-price { color: var(--forest); font-weight: 700; }

/* Membership section — should be dark bg but template uses section-dark class */
.section-dark { background: linear-gradient(180deg, var(--forest-deep), var(--forest)); color: #fff; }
.section-dark .section-label { color: var(--gold-light); }
.section-dark .section-title { color: #fff; }
.section-dark .section-desc, .section-dark p { color: rgba(255,255,255,0.6); }
.section-dark .membership-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: #fff; }
.section-dark .membership-card h3, .section-dark .membership-card h4 { color: #fff; }
.section-dark .membership-card p { color: rgba(255,255,255,0.6); }
.section-dark .membership-card li { color: rgba(255,255,255,0.7); }
.section-dark .membership-card .btn { border-color: rgba(255,255,255,0.2); color: #fff; }
.section-dark .membership-card.featured { background: rgba(201,168,76,0.12); border-color: var(--gold); }
.section-dark .membership-card.featured .btn { background: var(--gold); color: var(--forest-deep); border-color: var(--gold); }

/* Testimonial quote text */
.testimonial-card p, .testimonial-card .testimonial-text { color: var(--text); opacity: 1; }

/* Yatra stats row should be horizontal */
.yatra-stats-row { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }

/* Section CTA (Ready to Escape) */
.section-cta { text-align: center; }
.section-cta.section-dark { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%); }
.section-cta h2 { color: #fff; }
.section-cta p { color: rgba(255,255,255,0.6); }

/* Scrolled nav fix — dark green bg with white text */
.site-header.scrolled .site-nav { background: rgba(15,35,24,0.97); backdrop-filter: blur(12px); }
.site-header.scrolled .nav-list > li > a { color: rgba(255,255,255,0.9); }
.site-header.scrolled .site-logo-text { color: #fff; }
.site-header.scrolled .nav-toggle-bar { background: #fff; }

/* Membership section must have dark bg */
.section-membership { background: linear-gradient(180deg, var(--forest-deep), var(--forest)); color: #fff; }
.section-membership .section-label { color: var(--gold-light); }
.section-membership .section-title { color: #fff; }
.section-membership p { color: rgba(255,255,255,0.6); }
.section-membership .card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: #fff; overflow: visible; }
.section-membership .card h3, .section-membership .card h4 { color: #fff; }
.section-membership .card p { color: rgba(255,255,255,0.6); }
.section-membership .card li { color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.06); }
.section-membership .card .btn { border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.section-membership .card.featured { background: rgba(201,168,76,0.12); border-color: var(--gold); }
.section-membership .card.featured .btn { background: var(--gold); color: var(--forest-deep); border-color: var(--gold); }
.section-membership .card .card-body { background: transparent; }

/* Testimonials — ensure quote text is visible */
.section-testimonials .card { background: var(--cream); overflow: visible; }
.section-testimonials .card p { color: var(--text); font-style: italic; }
.section-testimonials .card .card-body { background: transparent; }

/* --- RESPONSIVE COMPAT --- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-cards { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  #nav-menu { display: none; }
  .nav-toggle { display: flex; }
  #nav-menu.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warmwhite);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
  }
  #nav-menu.active .nav-list { flex-direction: column; gap: 0; }
  #nav-menu.active .nav-list > li > a { color: var(--text); padding: 12px 0; }
  #nav-menu.active .nav-list .menu-item-cta > a { margin-top: 8px; display: inline-block; }

  .hero-section { min-height: auto; padding: 120px 0 60px; }
  .hero-inner { padding-top: 40px; padding-bottom: 40px; }
  .hero-section .hero-title { font-size: 2rem; }
  .hero-section .hero-stats { gap: 20px; flex-wrap: wrap; }

  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .yatra-stats-row { flex-wrap: wrap; gap: 20px; }
}
