/* Panch Tatva — 5-Day Shivir Luxury Redesign Styles v6.0 */
:root {
  --pt-emerald-dark: #0e2911;
  --pt-emerald: #1c401f;
  --pt-emerald-mid: #27522b;
  --pt-emerald-light: #eaf2eb;
  --pt-gold: #c9882a;
  --pt-gold-light: #f5c46b;
  --pt-gold-soft: #fcf4e6;
  --pt-gold-glow: rgba(201, 136, 42, 0.28);
  --pt-cream-bg: #fffbf4;
  --pt-paper: #ffffff;
  --pt-border-subtle: #ebd9c2;
  --pt-border-gold: rgba(201, 136, 42, 0.38);
  --pt-ink-dark: #1b261b;
  --pt-ink-muted: #525c52;
  --pt-shadow-card: 0 12px 32px rgba(22, 54, 25, 0.07);
  --pt-shadow-hover: 0 22px 50px rgba(22, 54, 25, 0.15);
  --pt-font-devanagari: 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --pt-font-serif: 'Marcellus', 'Noto Sans Devanagari', serif;
  --pt-font-sans: 'Plus Jakarta Sans', sans-serif;
}

body.retreat-page {
  background-color: var(--pt-cream-bg);
  font-family: var(--pt-font-devanagari);
  color: var(--pt-ink-dark);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Common Layout Shell */
.retreat-shell {
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
}

/* ==========================================================================
   1. HERO BANNER SECTION (Cropped equally top & bottom)
   ========================================================================== */
.retreat-hero {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  height: clamp(390px, 32vw, 510px) !important;
  min-height: 0 !important;
  overflow: hidden !important;
  background: var(--pt-emerald-dark) !important;
  isolation: isolate;
}

.retreat-hero-image,
.retreat-hero img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 50% !important; /* Crops sky at top & ground at bottom equally */
  filter: brightness(0.92) contrast(1.05);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.retreat-hero:hover .retreat-hero-image,
.retreat-hero:hover img {
  transform: scale(1.03);
}

.retreat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 26, 12, 0.94) 0%,
    rgba(12, 31, 14, 0.80) 42%,
    rgba(14, 36, 17, 0.45) 75%,
    rgba(10, 24, 12, 0.60) 100%
  );
  z-index: 1;
}

.retreat-hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), 1240px) !important;
  height: 100% !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 30px !important;
  padding: 20px 0 !important;
}

.hero-copy-block {
  flex: 1;
  max-width: 660px;
  color: #ffffff;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 136, 42, 0.22);
  border: 1px solid rgba(245, 196, 107, 0.55);
  color: #f7db9d;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--pt-font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  backdrop-filter: blur(8px);
}

.hero-copy-block h1 {
  font-family: var(--pt-font-serif);
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.16;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.hero-copy-block h1 span {
  color: #f8c65d;
  background: linear-gradient(135deg, #ffebad, #d9962a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: clamp(14px, 1vw, 16px);
  color: #e9eee6;
  line-height: 1.55;
  margin: 0 0 16px 0;
  font-weight: 400;
  max-width: 580px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pills span {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 196, 107, 0.4);
  color: #f6ebd5;
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.hero-pills span:hover {
  background: rgba(201, 136, 42, 0.3);
  border-color: #f5c46b;
  transform: translateY(-2px);
}

/* Floating Luxury Camp Card */
.camp-card {
  width: 290px !important;
  flex-shrink: 0;
  background: rgba(255, 253, 248, 0.96) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 136, 42, 0.45) !important;
  border-radius: 20px !important;
  padding: 20px 22px !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3) !important;
  color: var(--pt-ink-dark);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.camp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4) !important;
}

.camp-card > p {
  margin: 0;
  text-align: center;
  font-family: var(--pt-font-sans);
  color: #826e4e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.camp-card > h2 {
  margin: 4px 0 12px 0;
  text-align: center;
  color: #b8752a;
  font-size: 19px;
  font-weight: 700;
  font-family: var(--pt-font-sans);
}

.camp-detail {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 9px 0 !important;
  border-top: 1px solid #ebd9c2;
}

.camp-detail img {
  width: 34px !important;
  height: 34px !important;
  padding: 6px;
  background: #f5eae0;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

.camp-detail span {
  display: block;
}

.camp-detail small {
  display: block;
  color: #7a6e5d;
  font-size: 11px;
  line-height: 1.2;
}

.camp-detail b {
  display: block;
  color: #1c361e;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.25;
}

.camp-book {
  width: 100% !important;
  height: 46px !important;
  margin-top: 14px !important;
  border: none !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #f0c367, #c9882a) !important;
  color: #2b1d07 !important;
  font-size: 14.5px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(201, 136, 42, 0.35) !important;
  transition: all 0.3s ease !important;
}

.camp-book:hover {
  transform: translateY(-2px) scale(1.02) !important;
  background: linear-gradient(135deg, #f7ce76, #d9962a) !important;
  box-shadow: 0 12px 28px rgba(201, 136, 42, 0.45) !important;
}

.camp-book b {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.camp-book:hover b {
  transform: translateX(4px);
}

.camp-upcoming-link {
  display: block;
  margin-top: 10px;
  text-align: center;
  color: var(--pt-emerald);
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.camp-upcoming-link:hover {
  color: var(--pt-gold);
}

/* ==========================================================================
   2. BENEFITS SECTION ("इस शिविर में आपको मिलेगा")
   ========================================================================== */
.retreat-benefits {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 60px 0 !important;
  background: linear-gradient(180deg, #f2f7f1, #e7f2e6) !important;
  border-bottom: 1px solid #dce8db;
}

.five-day-journey,
.schedule-stay-section {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.ornament-title,
.journey-heading {
  font-family: var(--pt-font-serif) !important;
  font-size: clamp(24px, 2.2vw, 32px) !important;
  color: var(--pt-emerald) !important;
  text-align: center !important;
  font-weight: 700 !important;
  margin: 0 0 40px 0 !important;
  position: relative;
}

.ornament-title::after,
.journey-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--pt-gold), transparent);
  margin: 12px auto 0;
  border-radius: 3px;
}

.ornament-title::before,
.retreat-reviews h2::before,
.retreat-reviews h2::after {
  display: none !important;
}

.benefit-grid {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 16px !important;
}

.benefit-card {
  height: auto !important;
  min-height: 210px !important;
  background: var(--pt-paper) !important;
  border: 1px solid var(--pt-border-subtle) !important;
  border-radius: 20px !important;
  padding: 22px 14px !important;
  text-align: center !important;
  box-shadow: var(--pt-shadow-card) !important;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.benefit-card:hover {
  transform: translateY(-7px) !important;
  box-shadow: var(--pt-shadow-hover) !important;
  border-color: var(--pt-border-gold) !important;
}

.benefit-icon {
  width: 60px !important;
  height: 60px !important;
  margin: 0 auto 14px !important;
  background: linear-gradient(135deg, #f7f0e4, #ebe1cc) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.benefit-icon img {
  width: 36px !important;
  height: 36px !important;
  object-fit: contain !important;
}

.benefit-card h3 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--pt-emerald) !important;
  margin: 0 0 6px 0 !important;
  line-height: 1.25 !important;
}

.benefit-card p {
  font-size: 12.5px !important;
  color: var(--pt-ink-muted) !important;
  line-height: 1.48 !important;
  margin: 0 !important;
}

/* ==========================================================================
   3. 6-DAY TIMELINE JOURNEY ("आपकी 6-दिवसीय यात्रा")
   ========================================================================== */
.five-day-journey {
  padding: 60px 0 !important;
  background: linear-gradient(180deg, #fdf7ed, #f5ebd8) !important;
  border-top: 1px solid #eadbc8;
  border-bottom: 1px solid #eadbc8;
}

.retreat-timeline {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 12px !important;
  position: relative !important;
  padding-top: 20px;
}

.retreat-timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(201, 136, 42, 0.2), rgba(201, 136, 42, 0.8), rgba(201, 136, 42, 0.2));
  border-radius: 3px;
}

.retreat-day-card {
  position: relative !important;
  height: auto !important;
  min-height: 230px !important;
  background: var(--pt-paper) !important;
  border: 1px solid var(--pt-border-subtle) !important;
  border-radius: 16px !important;
  padding: 32px 10px 20px !important;
  text-align: center !important;
  box-shadow: var(--pt-shadow-card) !important;
  transition: all 0.35s ease !important;
}

.retreat-day-card:hover {
  transform: translateY(-7px) !important;
  box-shadow: var(--pt-shadow-hover) !important;
  border-color: var(--pt-gold) !important;
}

.retreat-day-number {
  position: absolute !important;
  top: -20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #e5b352, #c9882a) !important;
  color: #2b1d07 !important;
  font-family: var(--pt-font-sans) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 14px rgba(201, 136, 42, 0.4) !important;
  border: 2px solid #ffffff;
}

.retreat-day-card small {
  display: block !important;
  color: var(--pt-gold) !important;
  font-family: var(--pt-font-sans) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
  margin-bottom: 4px !important;
}

.retreat-day-card h3 {
  font-size: 15.5px !important;
  font-weight: 700 !important;
  color: var(--pt-emerald) !important;
  margin: 0 0 10px 0 !important;
}

.retreat-day-icon {
  width: 52px !important;
  height: 52px !important;
  margin: 0 auto 10px !important;
  background: #f7f1e5 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.retreat-day-icon img {
  width: 34px !important;
  height: 34px !important;
  object-fit: contain !important;
}

.retreat-day-card p {
  font-size: 12.5px !important;
  color: var(--pt-ink-muted) !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}

/* ==========================================================================
   4. SCHEDULE & ACCOMMODATION/FOOD ("दैनिक दिनचर्या" & "आवास & भोजन")
   ========================================================================== */
.schedule-stay-section {
  padding: 60px 0 !important;
  background: linear-gradient(180deg, #f4f8f4, #e9f1e9) !important;
  border-bottom: 1px solid #dce8db;
}

.schedule-stay-grid {
  display: grid !important;
  grid-template-columns: 420px 1fr !important;
  gap: 32px !important;
}

.schedule-panel,
.stay-panel {
  height: auto !important;
  background: var(--pt-paper) !important;
  border: 1px solid var(--pt-border-subtle) !important;
  border-radius: 24px !important;
  padding: 28px !important;
  box-shadow: var(--pt-shadow-card) !important;
}

.schedule-panel h2,
.stay-panel > h2 {
  font-family: var(--pt-font-serif) !important;
  font-size: 22px !important;
  color: var(--pt-emerald) !important;
  font-weight: 700 !important;
  margin: 0 0 24px 0 !important;
  text-align: center !important;
}

.schedule-panel h2 span {
  font-size: 16px;
  color: var(--pt-gold);
  font-family: var(--pt-font-sans);
  font-weight: 600;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.schedule-row {
  height: auto !important;
  display: grid !important;
  grid-template-columns: 148px 16px 1fr !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 4px 0;
}

.schedule-row time {
  height: 24px !important;
  background: var(--pt-emerald) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--pt-font-sans) !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

.schedule-row i {
  position: relative !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: var(--pt-gold) !important;
  margin: 0 auto;
}

.schedule-row i::after {
  content: "" !important;
  position: absolute !important;
  left: 3.5px !important;
  top: 8px !important;
  width: 1px !important;
  height: 26px !important;
  background: rgba(201, 136, 42, 0.3) !important;
}

.schedule-row:last-child i::after {
  display: none !important;
}

.schedule-row span {
  font-size: 14px !important;
  color: var(--pt-ink-dark) !important;
  font-weight: 500 !important;
}

.stay-cards {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
}

.stay-card {
  margin: 0 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: var(--pt-cream-bg) !important;
  border: 1px solid var(--pt-border-subtle) !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}

.stay-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--pt-shadow-hover) !important;
}

.stay-card img {
  width: 100% !important;
  height: 180px !important;
  object-fit: cover !important;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.stay-card:hover img {
  transform: scale(1.06) !important;
}

.stay-card figcaption {
  padding: 18px;
}

.stay-card h3 {
  font-size: 17px !important;
  color: var(--pt-emerald) !important;
  font-weight: 700 !important;
  margin: 0 0 6px 0 !important;
}

.stay-card p {
  font-size: 13.5px !important;
  color: var(--pt-ink-muted) !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

.stay-highlights {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin-top: 12px !important;
  padding-top: 10px !important;
  border-top: 1px dashed var(--pt-border-subtle) !important;
}

.stay-highlights span {
  font-size: 11.5px !important;
  color: var(--pt-emerald) !important;
  background: #edf5ee !important;
  border: 1px solid rgba(28, 64, 31, 0.15) !important;
  padding: 3px 9px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}

.stay-note-banner {
  margin-top: 20px !important;
  padding: 16px 20px !important;
  background: linear-gradient(135deg, #f9f4ea, #ede1cd) !important;
  border: 1px solid var(--pt-border-gold) !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.8);
}

.stay-note-banner img {
  width: 40px !important;
  height: 40px !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
}

.stay-note-banner strong {
  display: block !important;
  font-size: 14.5px !important;
  color: var(--pt-emerald) !important;
  font-weight: 700 !important;
  margin-bottom: 2px !important;
}

.stay-note-banner p {
  font-size: 12.5px !important;
  color: var(--pt-ink-muted) !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}

/* ==========================================================================
   5. SUITABLE SECTION ("यह शिविर आपके लिए है यदि आप...")
   ========================================================================== */
.suitable-section {
  padding: 60px 0 !important;
  background: linear-gradient(180deg, #fff5eb, #f7e8d4) !important;
  border-bottom: 1px solid #eadbc8;
}

.suitable-section h2 {
  font-family: var(--pt-font-serif) !important;
  font-size: clamp(22px, 2vw, 30px) !important;
  color: var(--pt-emerald) !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin: 0 0 36px 0 !important;
}

.suitable-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 18px !important;
}

.suitable-grid article {
  height: auto !important;
  min-height: 120px !important;
  background: var(--pt-paper) !important;
  border: 1px solid var(--pt-border-subtle) !important;
  border-radius: 18px !important;
  padding: 20px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 12px !important;
  box-shadow: var(--pt-shadow-card) !important;
  transition: all 0.35s ease !important;
}

.suitable-grid article:hover {
  transform: translateY(-6px) !important;
  border-color: var(--pt-gold) !important;
  box-shadow: var(--pt-shadow-hover) !important;
}

.suitable-grid article > div {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #f9f3e8, #ebe0cd) !important;
  border: 1px solid rgba(201, 136, 42, 0.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.9), 0 4px 12px rgba(201, 136, 42, 0.15) !important;
  transition: transform 0.3s ease !important;
}

.suitable-grid article:hover > div {
  transform: scale(1.08) !important;
  background: linear-gradient(135deg, #fff9ee, #f3e5d0) !important;
  border-color: var(--pt-gold) !important;
}

.suitable-grid img {
  width: 30px !important;
  height: 30px !important;
  object-fit: contain !important;
}

.suitable-grid p {
  font-size: 13.5px !important;
  color: var(--pt-ink-dark) !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}

/* ==========================================================================
   6. DETAILS SECTION ("शिविर में शामिल है" & "अपने साथ क्या लाएँ")
   ========================================================================== */
.details-section {
  padding: 60px 0 !important;
  background: linear-gradient(180deg, #edf5ee, #deece0) !important;
  border-bottom: 1px solid #d5e4d7;
}

.details-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px !important;
}

.detail-card {
  height: auto !important;
  background: var(--pt-paper) !important;
  border: 1px solid var(--pt-border-subtle) !important;
  border-radius: 24px !important;
  padding: 30px !important;
  box-shadow: var(--pt-shadow-card) !important;
}

.detail-card h2 {
  font-family: var(--pt-font-serif) !important;
  font-size: 22px !important;
  color: var(--pt-emerald) !important;
  font-weight: 700 !important;
  margin: 0 0 24px 0 !important;
  text-align: center !important;
  position: relative;
}

.detail-card h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--pt-gold);
  margin: 8px auto 0;
}

.check-columns,
.bring-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px 20px !important;
}

.detail-card p {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 14px !important;
  color: var(--pt-ink-dark) !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}

.detail-card p span {
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  background: var(--pt-gold) !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  flex-shrink: 0 !important;
  margin-top: 1px !important;
  box-shadow: 0 3px 8px rgba(201, 136, 42, 0.3);
}

.bring-columns p span {
  background: #f7ede0 !important;
  color: var(--pt-gold) !important;
  border: 1px solid rgba(201, 136, 42, 0.4);
}

/* ==========================================================================
   7. REVIEWS / TESTIMONIALS SECTION ("हमारे अतिथियों के अनुभव")
   ========================================================================== */
.retreat-reviews {
  padding: 60px 0 !important;
  background: linear-gradient(180deg, #fbf2e3, #f2e2ca) !important;
  border-bottom: 1px solid #eadbc8;
}

.retreat-reviews h2 {
  font-family: var(--pt-font-serif) !important;
  font-size: clamp(24px, 2.2vw, 32px) !important;
  color: var(--pt-emerald) !important;
  text-align: center !important;
  font-weight: 700 !important;
  margin: 0 0 36px 0 !important;
}

.retreat-review-shell {
  position: relative !important;
}

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

.retreat-reviews .review-card {
  height: auto !important;
  min-height: 180px !important;
  background: var(--pt-paper) !important;
  border: 1px solid var(--pt-border-subtle) !important;
  border-radius: 20px !important;
  padding: 24px !important;
  box-shadow: var(--pt-shadow-card) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}

.retreat-reviews .review-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--pt-shadow-hover) !important;
}

.retreat-reviews .quote {
  font-family: serif !important;
  font-size: 32px !important;
  color: var(--pt-gold) !important;
  line-height: 1 !important;
}

.retreat-reviews .review-card p {
  font-size: 14.5px !important;
  color: var(--pt-ink-dark) !important;
  line-height: 1.6 !important;
  margin: 6px 0 12px 0 !important;
  font-style: italic;
}

.retreat-reviews .stars {
  color: #f5b027 !important;
  font-size: 16px !important;
  letter-spacing: 2px !important;
  margin-bottom: 12px !important;
}

.retreat-reviews .reviewer {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.retreat-reviews .reviewer img {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid var(--pt-gold-light) !important;
}

.retreat-reviews .reviewer strong {
  display: block !important;
  font-size: 15px !important;
  color: var(--pt-emerald) !important;
}

.retreat-reviews .reviewer span {
  display: block !important;
  font-size: 12px !important;
  color: var(--pt-gold) !important;
  font-weight: 600 !important;
}

.retreat-reviews .review-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background: var(--pt-paper) !important;
  border: 1px solid var(--pt-border-subtle) !important;
  color: var(--pt-emerald) !important;
  font-size: 24px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.25s ease !important;
  z-index: 5;
}

.retreat-reviews .review-arrow:hover {
  background: var(--pt-emerald) !important;
  color: #ffffff !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.retreat-reviews .review-arrow.prev { left: -25px !important; }
.retreat-reviews .review-arrow.next { right: -25px !important; }

/* ==========================================================================
   8. BOTTOM CTA BOOKING STRIP ("retreat-booking-strip")
   ========================================================================== */
.retreat-booking-strip {
  height: auto !important;
  padding: 40px 0 60px !important;
  background: linear-gradient(180deg, #f7efe2, #ebdcc7) !important;
}

.retreat-booking-shell {
  width: min(calc(100% - 40px), 1240px) !important;
  margin: 0 auto !important;
  height: auto !important;
  padding: 24px 32px !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) auto !important;
  align-items: center !important;
  gap: 24px !important;
  border-radius: 24px !important;
  background: linear-gradient(135deg, #143316, #091f0a) !important;
  color: #ffffff !important;
  box-shadow: 0 20px 50px rgba(9, 31, 10, 0.35) !important;
  border: 1px solid rgba(245, 196, 107, 0.3);
}

.strip-block {
  height: auto !important;
  padding: 0 16px 0 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.strip-block img {
  width: 44px !important;
  height: 44px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.strip-block small {
  display: block !important;
  color: #e5c589 !important;
  font-size: 11.5px !important;
  font-weight: 600 !important;
}

.strip-block b,
.strip-block a {
  display: block !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.strip-block span {
  display: block !important;
  color: #cbd4c8 !important;
  font-size: 12px !important;
}

.strip-book {
  height: 54px !important;
  margin-left: 0 !important;
  padding: 0 28px !important;
  border: none !important;
  border-radius: 30px !important;
  background: linear-gradient(135deg, #f0c367, #c9882a) !important;
  color: #2b1d07 !important;
  cursor: pointer !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 24px rgba(201, 136, 42, 0.4) !important;
  transition: all 0.3s ease !important;
}

.strip-book:hover {
  transform: translateY(-2px) scale(1.03) !important;
  background: linear-gradient(135deg, #f7ce76, #d9962a) !important;
  box-shadow: 0 12px 32px rgba(201, 136, 42, 0.55) !important;
}

.strip-book span {
  font-size: 15px !important;
  font-weight: 800 !important;
}

.strip-book small {
  font-size: 10px !important;
  font-weight: 600 !important;
  opacity: 0.9;
}

/* ==========================================================================
   9. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1100px) {
  .retreat-hero-content {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
  }

  .camp-card {
    display: none !important; /* Kept sleek on tablet/mobile hero */
  }

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

  .retreat-timeline {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .schedule-stay-grid {
    grid-template-columns: 1fr !important;
  }

  .suitable-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .retreat-booking-shell {
    grid-template-columns: 1fr 1fr !important;
  }

  .strip-block {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 12px;
  }

  .strip-book {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .retreat-hero {
    height: clamp(320px, 60vw, 420px) !important;
  }

  .benefit-grid,
  .suitable-grid,
  .details-grid,
  .retreat-reviews .review-grid,
  .stay-cards {
    grid-template-columns: 1fr !important;
  }

  .retreat-timeline {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .retreat-timeline::before {
    display: none !important;
  }

  .check-columns,
  .bring-columns {
    grid-template-columns: 1fr !important;
  }

  .retreat-booking-shell {
    grid-template-columns: 1fr !important;
  }

  .strip-book {
    grid-column: span 1;
    width: 100% !important;
  }

  .retreat-reviews .review-arrow {
    display: none !important;
  }
}
