/* =================================================================
   India-Nepal Spiritual Expedition — 2026
   Monastic Maroon · Sacred Saffron · Temple Gold
   ================================================================= */

/* --- Root Design Tokens Spiritual Expedition --- */
:root {
  --maroon:       #800000;         /* sacred monastic maroon */
  --maroon-deep:  #4b0000;
  --maroon-lt:    #a52a2a;
  --saffron:      #ff9933;         /* sacred saffron */
  --saffron-lt:   #ffb366;
  --gold:         #d4af37;         /* temple gold */
  --gold-light:   #f9d77e;
  --gold-pale:    #fff8e1;
  --cream:        #fffdf5;         /* ritual cream */
  --parchment:    #fdf5e6;         /* sandalwood parchment */
  --success:      #2e7d32;
  --text-dark:    #2c1810;         /* coffee/earth dark */
  --text-mid:     #5d4037;
  --text-muted:   #8d6e63;
  --border:       rgba(212, 175, 55, 0.25);
  --border-light: rgba(0,0,0,0.08);
  --shadow-sm:    0 2px 14px rgba(128,0,0,0.08);
  --shadow-md:    0 10px 40px rgba(128,0,0,0.13);
  --shadow-lg:    0 24px 80px rgba(128,0,0,0.20);
  --radius:       18px;
  --radius-lg:    28px;
  --transition:   0.38s cubic-bezier(0.4,0,0.2,1);
  --font-body:    'Nunito Sans', sans-serif;
  --font-heading: 'Playfair Display', serif;

  /* Legacy Aliases for migration stability */
  --jungle:       var(--maroon);
  --jungle-mid:   var(--maroon-deep);
  --teal:         var(--maroon-lt);
  --teal-light:   var(--saffron);
}

/* --- Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

/* --- Typography --- */
.font-serif { font-family: var(--font-heading) !important; }
.text-gold   { color: var(--gold) !important; }
.text-saffron { color: var(--saffron) !important; }
.text-maroon  { color: var(--maroon) !important; }
.bg-maroon    { background: var(--maroon) !important; }
.bg-cream     { background: var(--cream) !important; }
.bg-parchment { background: var(--parchment) !important; }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 10px;
}
.section-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--maroon);
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.divider-gold {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 14px auto 0;
}
.divider-gold.left { margin: 14px 0 0; }

/* -------------------------------------------------- */
/* TRUST BAR                                          */
/* -------------------------------------------------- */
.trust-bar {
  background: linear-gradient(90deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 9px 0;
  text-align: center;
  letter-spacing: 0.3px;
}
.trust-bar span { margin: 0 16px; }
.trust-bar i    { margin-right: 5px; color: var(--gold-light); }
.trust-bar a    { color: var(--gold-light); text-decoration: none; }

/* -------------------------------------------------- */
/* NAVBAR                                             */
/* -------------------------------------------------- */
.navbar-spiritual {
  background: rgba(255,255,255,0.97);
  padding: 0;
  z-index: 1050;
  box-shadow: 0 1px 0 rgba(212,175,55,0.15), 0 2px 18px rgba(128,0,0,0.06);
  backdrop-filter: blur(12px);
}
.navbar-spiritual .navbar-brand img { max-height: 52px; }
.navbar-spiritual .nav-link {
  color: var(--maroon);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 1rem 1rem !important;
  transition: color var(--transition);
  position: relative;
}
.navbar-spiritual .nav-link::after {
  content: '';
  position: absolute;
  bottom: 14px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}
.navbar-spiritual .nav-link:hover::after { left: 1rem; right: 1rem; }
.navbar-spiritual .nav-link:hover { color: var(--saffron) !important; }
.nav-cta-spiritual {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-deep) !important;
  border-radius: 50px;
  padding: 0.55rem 1.6rem !important;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(212,175,55,0.35);
}
.nav-cta-spiritual::after { display: none !important; }
.nav-cta-spiritual:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,175,55,0.45); }

.navbar-toggler {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: white !important;
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(128,0,0,0.25);
}

.navbar-toggler:hover {
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon-lt));
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 24px rgba(128,0,0,0.35);
}

.navbar-toggler i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.navbar-toggler:hover i {
  transform: rotate(90deg);
}

/* -------------------------------------------------- */
/* LIVE NOTIFICATION                                  */
/* -------------------------------------------------- */
.live-notification {
  position: fixed;
  bottom: 90px; left: 20px;
  z-index: 9999;
  background: #fff;
  border-left: 4px solid var(--maroon);
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(128,0,0,0.18);
  padding: 13px 18px 13px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 310px;
  animation: slideInLeft 0.5s ease both;
  font-size: 0.82rem;
}
.live-notification .notif-dot {
  width: 10px; height: 10px;
  background: var(--maroon);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(128,0,0,0.2);
  animation: pulseMaroon 1.5s infinite;
}
.live-notification .notif-text strong { display: block; font-size: 0.84rem; color: var(--maroon); }
.live-notification .notif-text span   { color: var(--text-muted); }
.live-notification.hide { animation: slideOutLeft 0.4s ease forwards; }
@keyframes slideInLeft  { from { opacity:0; transform:translateX(-120%); } to { opacity:1; transform:translateX(0); } }
@keyframes slideOutLeft { from { opacity:1; transform:translateX(0); } to { opacity:0; transform:translateX(-120%); } }
@keyframes pulseMaroon    { 0%,100% { box-shadow:0 0 0 3px rgba(128,0,0,0.2); } 50% { box-shadow:0 0 0 6px rgba(128,0,0,0.1); } }

/* -------------------------------------------------- */
/* HERO — CINEMATIC SPLIT                             */
/* -------------------------------------------------- */
.hero-spiritual {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--maroon);
  overflow: hidden;
}

.hero-bg-img {
  position: absolute; inset: 0;
  background: url('../img/banner.webp') center/cover no-repeat;
  opacity: 0.32;
}

/* Sacred Mandala pattern overlay */
.hero-ritual-overlay {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      60deg,
      rgba(212,175,55,0.04) 0px,
      rgba(212,175,55,0.04) 1px,
      transparent 1px,
      transparent 32px
    ),
    repeating-linear-gradient(
      -60deg,
      rgba(212,175,55,0.04) 0px,
      rgba(212,175,55,0.04) 1px,
      transparent 1px,
      transparent 32px
    );
  pointer-events: none;
}

/* Sunrise glow bottom left */
.hero-spiritual::after {
  content: '';
  position: absolute;
  bottom: -140px; left: -140px;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Saffron glow top right */
.hero-spiritual::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,153,51,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content { position: relative; z-index: 2; padding-top: 40px; }

/* Spiritual badge */
.spiritual-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon);
  border-radius: 4px;
  padding: 7px 24px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  box-shadow: 0 6px 24px rgba(212,175,55,0.45);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%, 10px 50%);
  padding-left: 28px; padding-right: 28px;
}

.hero-spiritual h1 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.1rem;
  letter-spacing: -0.5px;
}
.hero-spiritual h1 .highlight {
  color: var(--gold-light);
  font-style: italic;
  display: block;
}

.hero-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.stars-gold  { color: var(--gold-light); font-size: 1rem; letter-spacing: 2px; }
.review-count{ color: rgba(255,255,255,0.8); font-size: 0.88rem; }
.rating-num  { color: #fff; font-weight: 800; font-size: 1rem; }

/* Feature bullets */
.hero-features {
  list-style: none; padding: 0;
  margin: 0 0 2rem;
  display: flex; flex-direction: column; gap: 9px;
}
.hero-features li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.93rem; font-weight: 600;
}
.hero-features li i { color: var(--teal-light); font-size: 0.9rem; }

/* Platform badge pills */
.platform-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2rem; }
.platform-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex; align-items: center; gap: 7px;
  backdrop-filter: blur(6px);
}
.platform-pill img  { height: 20px; }
.platform-pill span { color: #fff; font-size: 0.78rem; font-weight: 700; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }

/* CTA buttons */
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon);
  border: none;
  border-radius: 4px;
  padding: 15px 34px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  box-shadow: 0 6px 28px rgba(212,175,55,0.5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 38px rgba(212,175,55,0.55); color: var(--maroon); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 4px;
  padding: 13px 30px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-white:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* -------------------------------------------------- */
/* QUOTE CARD (hero right panel)                      */
/* -------------------------------------------------- */
.quote-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(128,0,0,0.35);
  border: 1px solid rgba(212,175,55,0.2);
}
.quote-card-header {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: #fff;
  padding: 24px 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-card-header::before {
  content: '';
  position: absolute;
  bottom: -30px; left: 50%; transform: translateX(-50%);
  width: 160px; height: 60px;
  border: 2px solid rgba(200,134,30,0.25);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  border-bottom: none;
}
.card-title    { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; margin-bottom: 4px; }
.card-subtitle { font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.quote-card-body { padding: 26px 28px; }
.quote-card .form-control {
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
}
.quote-card select.form-control {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
  color: var(--text-dark);
}
.quote-card .form-control:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255,153,51,0.15);
  outline: none;
}
.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-submit {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-lt));
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-weight: 800;
  font-size: 0.95rem;
  width: 100%;
  transition: all var(--transition);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  letter-spacing: 0.3px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(128,0,0,0.4); }
.form-trust-note { text-align: center; font-size: 0.74rem; color: var(--text-muted); margin-top: 10px; }

/* -------------------------------------------------- */
/* TRUST BADGE STRIP                                  */
/* -------------------------------------------------- */
.trust-badges-strip {
  background: var(--maroon-deep);
  padding: 28px 0;
  border-top: 1px solid rgba(212,175,55,0.25);
}
.trust-badge-item {
  display: flex; align-items: center; justify-content: center; gap: 12px; text-align: left;
}
.tbi-icon {
  width: 50px; height: 50px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.tbi-text strong { display: block; font-size: 0.9rem; color: #fff; font-weight: 700; }
.tbi-text span   { font-size: 0.76rem; color: rgba(255,255,255,0.55); }

/* -------------------------------------------------- */
/* PROOF STATS                                        */
/* -------------------------------------------------- */
.proof-stats {
  background: var(--parchment);
  padding: 70px 0;
  position: relative;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.stat-item  { text-align: center; padding: 0 20px; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
  display: block;
}
.stat-label { color: var(--maroon-lt); font-size: 0.83rem; margin-top: 6px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.stat-divider { width: 1px; background: rgba(128,0,0,0.12); align-self: stretch; }

/* -------------------------------------------------- */
/* PLATFORM RATINGS / REVIEWS                         */
/* -------------------------------------------------- */
.reviews-section { padding: 90px 0; background: #fff; }
.platform-rating-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  transition: all var(--transition);
  background: #fff;
  position: relative;
  overflow: hidden;
}
.platform-rating-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
}
.platform-rating-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); transform: translateY(-4px); }
.platform-score { font-size: 2.6rem; font-weight: 800; color: var(--maroon); font-family: var(--font-heading); }
.platform-out   { font-size: 1rem; color: var(--text-muted); vertical-align: super; font-weight: 400; }

/* Review Cards */
.review-card {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
}
.review-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(128,0,0,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.review-card:hover { border-color: var(--saffron); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.quote-mark {
  font-size: 5rem; line-height: 0.7;
  color: var(--saffron);
  font-family: var(--font-heading);
  opacity: 0.15;
  position: absolute; top: 16px; right: 20px;
}
.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-name   { font-weight: 700; font-size: 0.93rem; color: var(--maroon); }
.reviewer-origin { font-size: 0.77rem; color: var(--text-muted); }
.review-text     { color: #374151; font-size: 0.87rem; line-height: 1.75; font-style: italic; }
.verified-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(128,0,0,0.08);
  color: var(--maroon-lt);
  font-size: 0.71rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
}

/* -------------------------------------------------- */
/* ITINERARY HIGHLIGHTS (new section)                 */
/* -------------------------------------------------- */
.itinerary-section {
  padding: 90px 0;
  background: var(--cream);
}
.day-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid var(--border-light);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.day-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.day-card:hover::before { transform: scaleX(1); }
.day-card:hover { box-shadow: var(--shadow-md); border-color: rgba(128,0,0,0.2); transform: translateY(-5px); }
.day-number {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: var(--gold-light);
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.day-title { font-family: var(--font-heading); font-weight: 700; color: var(--maroon); font-size: 1.1rem; margin-bottom: 6px; }
.day-location { font-size: 0.75rem; color: var(--maroon-lt); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.day-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* -------------------------------------------------- */
/* TOUR PACKAGES (tabbed)                             */
/* -------------------------------------------------- */
.packages-section { padding: 90px 0; background: #fff; }
.pkg-tabs { border: none; gap: 10px; margin-bottom: 36px; justify-content: center; }
.pkg-tabs .nav-link {
  border: 1.5px solid var(--border) !important;
  border-radius: 4px !important;
  color: var(--maroon);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 10px 26px;
  background: #fff;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}
.pkg-tabs .nav-link:hover { border-color: var(--saffron) !important; color: var(--saffron); }
.pkg-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep)) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 6px 20px rgba(75,0,0,0.25);
}

.pkg-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border-light);
  height: 100%;
  display: flex; flex-direction: column;
  position: relative;
}
.pkg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  z-index: 1;
}
.pkg-card:hover::before { transform: scaleX(1); }
.pkg-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-7px); border-color: transparent; }
.pkg-card .img-wrap { position: relative; overflow: hidden; }
.pkg-card .img-wrap img { width: 100%; height: 230px; object-fit: cover; transition: transform 0.7s ease; }
.pkg-card:hover .img-wrap img { transform: scale(1.07); }
.pkg-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--maroon);
  color: #fff;
  font-size: 0.7rem; font-weight: 700;
  padding: 5px 14px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}
.pkg-popular {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--jungle);
  font-size: 0.7rem; font-weight: 800;
  padding: 5px 14px;
  border-radius: 3px;
}
.pkg-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.pkg-title {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700;
  color: var(--jungle);
  margin-bottom: 5px;
}
.pkg-route { font-size: 0.76rem; color: var(--maroon-lt); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 14px; }
.pkg-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.pkg-rating .stars-gold { font-size: 0.83rem; }
.pkg-rating .rating-text { font-size: 0.76rem; color: var(--text-muted); }
.pkg-features { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 7px; }
.pkg-features li { font-size: 0.83rem; color: #4b5563; display: flex; align-items: flex-start; gap: 8px; }
.pkg-features li i { color: var(--gold); font-size: 0.73rem; margin-top: 3px; flex-shrink: 0; }
.btn-pkg {
  display: block; text-align: center;
  border: 2px solid var(--maroon);
  color: var(--maroon);
  border-radius: 4px;
  padding: 11px;
  font-weight: 800;
  font-size: 0.86rem;
  margin-top: auto;
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.btn-pkg:hover, .btn-pkg.featured {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: #fff;
  border-color: transparent;
}

/* -------------------------------------------------- */
/* DESTINATIONS (hover cards)                         */
/* -------------------------------------------------- */
.dest-section { padding: 80px 0; background: var(--maroon-deep); position: relative; }
.dest-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/banner.webp') center/cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.dest-section-inner { position: relative; z-index: 1; }
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 340px;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(200,134,30,0.2);
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.dest-card:hover img { transform: scale(1.1); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(75,0,0,0.93) 0%, rgba(75,0,0,0.3) 55%, transparent 80%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px;
  transition: all var(--transition);
}
.dest-city { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: #fff; }
.dest-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-deep);
  font-size: 0.68rem; font-weight: 800;
  padding: 4px 12px; border-radius: 3px;
  margin-top: 6px; letter-spacing: 1px; text-transform: uppercase;
}
.dest-highlights {
  max-height: 0; opacity: 0; overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4,0,0.2,1);
  transform: translateY(10px);
  list-style: none; padding: 0; margin: 0;
  font-size: 0.82rem; color: rgba(255,255,255,0.85);
}
.dest-highlights li { padding: 3px 0; }
.dest-highlights li::before { content: '✦ '; color: var(--gold-light); }
.dest-card:hover .dest-highlights { max-height: 200px; opacity: 1; transform: translateY(0); margin-top: 10px; }

/* -------------------------------------------------- */
/* EXPERIENCE STRIP (Kerala specific)                 */
/* -------------------------------------------------- */
.experience-strip {
  background: linear-gradient(135deg, var(--maroon-lt) 0%, #4b0000 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.experience-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
}
.exp-card { text-align: center; padding: 24px; position: relative; z-index: 1; }
.exp-icon  { font-size: 2.5rem; color: var(--gold-light); margin-bottom: 14px; }
.exp-card h5 { color: #fff; font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.exp-card p  { color: rgba(255,255,255,0.78); font-size: 0.83rem; line-height: 1.7; }

/* -------------------------------------------------- */
/* WHY US                                             */
/* -------------------------------------------------- */
.why-us-section { padding: 90px 0; background: var(--parchment); }
.why-card {
  text-align: center;
  padding: 38px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  background: #fff;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover { border-color: rgba(128,0,0,0.2); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.why-icon {
  width: 74px; height: 74px;
  background: linear-gradient(135deg, rgba(128,0,0,0.06), rgba(255,153,51,0.08));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--maroon);
  transition: all var(--transition);
}
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--maroon), var(--saffron)); color: var(--gold-light); }
.why-card h5 { font-family: var(--font-heading); font-weight: 700; color: var(--maroon); margin-bottom: 100px; font-size: 1.15rem; }
.why-card p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* -------------------------------------------------- */
/* CTA SECTION                                        */
/* -------------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--maroon) 0%, #300000 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/banner.webp') center/cover no-repeat;
  opacity: 0.07;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }

/* -------------------------------------------------- */
/* FAQ                                                */
/* -------------------------------------------------- */
.faq-section { padding: 90px 0; background: var(--cream); }
.faq-item {
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: all var(--transition);
  background: #fff;
}
.faq-item.open { border-color: var(--saffron); box-shadow: var(--shadow-sm); }
.faq-btn {
  width: 100%; text-align: left;
  background: #fff; border: none;
  padding: 18px 22px;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--maroon);
  font-size: 0.93rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-btn:hover { color: var(--saffron); }
.faq-body {
  padding: 0 22px;
  max-height: 0; overflow: hidden;
  color: var(--text-mid);
  font-size: 0.87rem;
  line-height: 1.8;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-body { max-height: 300px; padding: 4px 22px 18px; }
.faq-icon { transition: transform var(--transition); flex-shrink: 0; color: var(--saffron); }
.faq-item.open .faq-icon { transform: rotate(180deg); }

/* -------------------------------------------------- */
/* FOOTER                                             */
/* -------------------------------------------------- */
.site-footer {
  background: linear-gradient(160deg, #1f0d0d 0%, #2a1414 100%);
  padding: 70px 0 0;
  color: #fff;
}
.footer-brand img { height: 50px; margin-bottom: 18px; }
.footer-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 340px;
}
.footer-heading { color: var(--gold-light); font-size: 0.72rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.85rem; text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.footer-contact-item i { color: var(--gold-light); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a { color: rgba(255,255,255,0.65); font-size: 0.83rem; text-decoration: none; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition);
}
.footer-social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--maroon-deep); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 50px;
}

/* -------------------------------------------------- */
/* WHATSAPP FLOAT BUTTON                              */
/* -------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 9000;
  background: #25d366;
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: all var(--transition);
  animation: waBounce 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 12px 38px rgba(37,211,102,0.55); color: #fff; }
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* -------------------------------------------------- */
/* REVEAL ANIMATIONS                                  */
/* -------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.hover-lift { transition: transform var(--transition), box-shadow var(--transition); }
.hover-lift:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* -------------------------------------------------- */
/* RESPONSIVE                                         */
/* -------------------------------------------------- */
@media (max-width: 991.98px) {
  .hero-spiritual { min-height: auto; padding: 120px 0 60px; }
  .quote-card { margin-top: 40px; }
  .form-row-grid { grid-template-columns: 1fr; }
  .trust-bar { display: none; }
}
@media (max-width: 767.98px) {
  .platform-pills { justify-content: center; }
  .hero-cta-group { justify-content: center; }
  .dest-card { height: 280px; }
  .why-card { padding: 28px 18px; }
  .day-card { margin-bottom: 16px; }
}

/* -------------------------------------------------- */
/* THANK YOU OVERLAY                                  */
/* -------------------------------------------------- */
.thankyoumain {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-lt));
}
.thankyouin {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.thankyouin img { width: 120px; margin-bottom: 20px; }
.thankyouin h3 { font-family: var(--font-heading); color: var(--maroon); font-size: 2rem; margin-bottom: 10px; }
.thankyouin p  { color: var(--text-muted); font-size: 1rem; }
