/* ══════════════════════════════════════════════
   MALWA HERITAGE TRAVELS — STYLE SHEET
   Color Palette: Deep Saffron, Gold, Off-White
══════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  --saffron: #E85D04;
  --saffron-light: #F48C06;
  --saffron-dark: #C44D03;
  --gold: #D4A017;
  --gold-light: #F5C842;
  --gold-dark: #A07812;
  --off-white: #FDF6EC;
  --cream: #FAF0DC;
  --dark: #1A0E00;
  --dark-mid: #2D1B00;
  --text-dark: #1A0E00;
  --text-mid: #4A3520;
  --text-light: #7A5C3A;
  --card-bg: #FFFBF4;
  --border: rgba(212, 160, 23, 0.25);
  --shadow: 0 8px 32px rgba(26, 14, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 14, 0, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Playfair Display', serif;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-saffron {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: #fff;
  border-color: var(--saffron);
  box-shadow: 0 4px 20px rgba(232, 93, 4, 0.35);
}

.btn-saffron:hover {
  background: linear-gradient(135deg, var(--saffron-dark), var(--saffron));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 93, 4, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.35);
  font-weight: 700;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* ─── Section Common ─── */
.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  background: rgba(232, 93, 4, 0.09);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(232, 93, 4, 0.2);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.gold-text {
  color: var(--gold-dark);
  font-style: italic;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(26, 14, 0, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition);
  filter: drop-shadow(0 2px 4px rgba(26, 14, 0, 0.4));
}

.navbar.scrolled .brand-logo {
  height: 45px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
  background: rgba(212, 160, 23, 0.12);
}

.nav-cta {
  margin-left: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(26, 14, 0, 0.75) 0%,
      rgba(26, 14, 0, 0.4) 50%,
      rgba(26, 14, 0, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 160, 23, 0.18);
  border: 1px solid rgba(212, 160, 23, 0.4);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease forwards;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  animation: fadeInLeft 0.9s 0.1s ease both;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero-title .gold-text {
  color: var(--gold-light);
  font-style: italic;
  text-shadow: 0 0 40px rgba(212, 160, 23, 0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
  animation: fadeInLeft 0.9s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInLeft 0.9s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.9s 0.5s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.dot.active {
  background: var(--gold-light);
  width: 30px;
  border-radius: 5px;
}

.scroll-hint {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s 1s both;
}

.scroll-arrow {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollAnim 1.8s infinite;
  border-radius: 2px;
}

/* ══════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════ */
.marquee-strip {
  background: linear-gradient(135deg, var(--dark), var(--dark-mid));
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212, 160, 23, 0.2);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   ABOUT US
══════════════════════════════════════ */
.about-section {
  background: linear-gradient(rgba(26, 14, 0, 0.85), rgba(26, 14, 0, 0.85)), url('images/about_bg_ahilya.png') center/cover no-repeat fixed;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
}

.about-section .section-label {
  color: var(--gold-light);
  background: rgba(212, 160, 23, 0.15);
  border-color: rgba(212, 160, 23, 0.3);
}

.about-section .section-title { color: #fff; }
.about-section .section-desc { color: rgba(255, 255, 255, 0.8); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content {
  padding-right: 20px;
}

.about-intro {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.about-pillars li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 93, 4, 0.08);
  border: 1px solid rgba(232, 93, 4, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--saffron);
}

.pillar-info {
  display: flex;
  flex-direction: column;
}

.pillar-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}

.pillar-info span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.about-closing {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--gold);
  padding: 24px;
  border-radius: 0 16px 16px 0;
}

.about-closing p {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 16px;
  font-style: italic;
}

.about-images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.main-img {
  width: 80%;
  aspect-ratio: 4/5;
  border: 4px solid #fff;
  background: var(--cream);
}

.main-img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.main-img:hover img {
  transform: scale(1.05);
}

.sub-img {
  position: absolute;
  bottom: -30px;
  left: -20px;
  width: 50%;
  aspect-ratio: 1/1;
  border: 6px solid #fff;
  z-index: 2;
  background: var(--cream);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.sub-img img {
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: 40px;
  right: -20px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(232, 93, 4, 0.4);
  border: 4px solid #fff;
  animation: pulse 3s infinite;
}

.exp-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .about-content {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .about-experience-badge {
    width: 100px;
    height: 100px;
    right: 0;
  }
  .exp-num {
    font-size: 1.8rem;
  }
}

/* ══════════════════════════════════════
   PACKAGES
══════════════════════════════════════ */
.packages-section {
  background: linear-gradient(rgba(26, 14, 0, 0.85), rgba(26, 14, 0, 0.85)), url('images/packages_bg_mahakal.png') center/cover no-repeat fixed;
}
.packages-section .section-label { color: var(--gold-light); background: rgba(212, 160, 23, 0.15); border-color: rgba(212, 160, 23, 0.3); }
.packages-section .section-title { color: #fff; }
.packages-section .section-desc { color: rgba(255, 255, 255, 0.8); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.package-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  border-color: rgba(212, 160, 23, 0.5);
  box-shadow: 0 8px 40px rgba(212, 160, 23, 0.15);
}

.pkg-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.pkg-img {
  height: 100%;
  transition: transform 0.6s ease;
}

.package-card:hover .pkg-img {
  transform: scale(1.07);
}

.pkg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 14, 0, 0.6) 0%, transparent 60%);
}

.pkg-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.4);
}

.pkg-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(26, 14, 0, 0.7);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(212, 160, 23, 0.3);
}

.pkg-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pkg-subtitle {
  color: var(--saffron);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.pkg-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.feat {
  font-size: 0.78rem;
  background: rgba(232, 93, 4, 0.07);
  color: var(--text-mid);
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 500;
}

.pkg-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.pkg-highlights {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pkg-highlights li {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}

.pkg-highlights li::before {
  color: var(--saffron);
  margin-right: 4px;
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.pkg-price {
  display: flex;
  flex-direction: column;
}

.price-from {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}

.price-amt {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--saffron);
}

.price-per {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
}

/* ─── Package Itinerary Block ─── */
.pkg-itinerary {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.itinerary-day {
  background: rgba(232, 93, 4, 0.05);
  border-left: 3px solid var(--saffron);
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
}

.day-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 5px;
}

.itinerary-day p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}

/* ─── Minimum Persons Note ─── */
.pkg-min-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* ══════════════════════════════════════
   DESTINATIONS
══════════════════════════════════════ */
.destinations-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  height: 300px;
  box-shadow: var(--shadow);
}

.dest-card.large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  height: 100%;
  min-height: 500px;
}

.dest-img {
  position: absolute;
  inset: 0;
  height: 100%;
  transition: transform 0.6s ease;
}

.dest-card:hover .dest-img {
  transform: scale(1.08);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 14, 0, 0.85) 0%, rgba(26, 14, 0, 0.1) 60%);
  transition: background 0.4s ease;
}

.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(26, 14, 0, 0.9) 0%, rgba(26, 14, 0, 0.2) 60%);
}

.dest-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}

.dest-card:hover .dest-content {
  transform: translateY(0);
}

.dest-tag {
  display: inline-block;
  background: rgba(232, 93, 4, 0.85);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dest-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.dest-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin-bottom: 12px;
}

.dest-link {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: letter-spacing var(--transition);
}

.dest-card:hover .dest-link {
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.services-section .section-label {
  color: var(--gold-light);
  background: rgba(212, 160, 23, 0.1);
  border-color: rgba(212, 160, 23, 0.25);
}

.services-section .section-title {
  color: #fff;
}

.services-section .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 160, 23, 0.18);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card.highlight {
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.12), rgba(212, 160, 23, 0.08));
  border-color: rgba(212, 160, 23, 0.4);
}

.svc-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition);
}

.service-card:hover .svc-icon-wrap {
  background: rgba(212, 160, 23, 0.2);
  border-color: rgba(212, 160, 23, 0.5);
  transform: scale(1.1);
}

.gold-icon {
  background: rgba(212, 160, 23, 0.15) !important;
  border-color: rgba(212, 160, 23, 0.4) !important;
}

.svc-icon {
  font-size: 2rem;
  line-height: 1;
}

.svc-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.svc-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 16px;
}

.svc-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(212, 160, 23, 0.1);
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(212, 160, 23, 0.2);
}

/* ══════════════════════════════════════
   POOJA SERVICES
══════════════════════════════════════ */
.pooja-section {
  background: linear-gradient(135deg, #1a0a00 0%, #2d1205 30%, #1f0800 60%, #0d0500 100%);
  position: relative;
  overflow: hidden;
}

.pooja-section::before {
  content: '🕉';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 450px;
  opacity: 0.025;
  line-height: 1;
  pointer-events: none;
}

.pooja-section::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pooja-section .section-label {
  color: var(--gold-light);
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.15), rgba(212, 160, 23, 0.1));
  border-color: rgba(232, 93, 4, 0.35);
  font-size: 0.82rem;
}

.pooja-section .section-title {
  color: #fff;
}

.pooja-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.pooja-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pooja-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(232, 93, 4, 0.2);
  border-radius: 20px;
  padding: 32px 24px 24px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
}

.pooja-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
  pointer-events: none;
}

.pooja-card:hover .pooja-glow {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.25) 0%, transparent 70%);
}

.pooja-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--saffron), var(--gold), var(--saffron), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.pooja-card:hover::before {
  opacity: 1;
}

.pooja-card:hover {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(232, 93, 4, 0.05));
  border-color: rgba(232, 93, 4, 0.45);
  transform: translateY(-10px);
  box-shadow: 
    0 20px 60px rgba(232, 93, 4, 0.15),
    0 0 40px rgba(212, 160, 23, 0.05);
}

.pooja-card.featured {
  background: linear-gradient(145deg, rgba(232, 93, 4, 0.12), rgba(212, 160, 23, 0.06));
  border-color: rgba(232, 93, 4, 0.4);
  box-shadow: 0 8px 30px rgba(232, 93, 4, 0.1);
}

.pooja-card.featured:hover {
  box-shadow: 
    0 20px 60px rgba(232, 93, 4, 0.25),
    0 0 50px rgba(232, 93, 4, 0.1);
}

.pooja-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.15), rgba(212, 160, 23, 0.1));
  border: 2px solid rgba(232, 93, 4, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.pooja-card:hover .pooja-icon-wrap {
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.25), rgba(212, 160, 23, 0.15));
  border-color: rgba(232, 93, 4, 0.6);
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 8px 30px rgba(232, 93, 4, 0.25);
}

.pooja-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.pooja-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.pooja-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.pooja-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(232, 93, 4, 0.15);
  gap: 8px;
}

.pooja-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--saffron);
  background: rgba(232, 93, 4, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(232, 93, 4, 0.2);
  white-space: nowrap;
}

.pooja-book-btn {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pooja-book-btn:hover {
  color: #fff;
  letter-spacing: 0.08em;
}

.pooja-cta {
  text-align: center;
  padding: 36px 40px;
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.08), rgba(212, 160, 23, 0.05));
  border: 1px solid rgba(232, 93, 4, 0.2);
  border-radius: 20px;
}

.pooja-cta p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section {
  background: linear-gradient(rgba(26, 14, 0, 0.88), rgba(26, 14, 0, 0.88)), url('images/testi_bg_omkareshwar.png') center/cover no-repeat fixed;
}

.testimonials-section .section-label {
  color: var(--gold-light);
  background: rgba(212, 160, 23, 0.15); border-color: rgba(212, 160, 23, 0.3);
}
.testimonials-section .section-title { color: #fff; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  font-family: var(--font-accent);
  color: rgba(212, 160, 23, 0.15);
  font-weight: 700;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(232, 93, 4, 0.35);
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.testi-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ══════════════════════════════════════
   BOOKING SECTION
══════════════════════════════════════ */
.booking-section {
  background: linear-gradient(135deg, var(--saffron-dark) 0%, var(--saffron) 40%, var(--gold-dark) 100%);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.booking-section::after {
  content: '🕉';
  position: absolute;
  bottom: -40px;
  right: 40px;
  font-size: 250px;
  opacity: 0.04;
  line-height: 1;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.booking-info {
  color: #fff;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.booking-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.booking-title .gold-text {
  color: var(--gold-light);
  text-shadow: 0 0 30px rgba(212, 160, 23, 0.4);
}

.booking-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.bf-item {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-item a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--gold-light);
}

.booking-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 30px 80px rgba(26, 14, 0, 0.25);
  position: relative;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1/-1;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.12);
  background: #fff;
}

/* ══════════════════════════════════════
   FLOATING ACTION BAR (CALL & WHATSAPP)
══════════════════════════════════════ */
.fab-container {
  position: fixed;
  bottom: 30px;
  left: 0;
  right: 0;
  pointer-events: none; /* Let clicks pass through container */
  z-index: 999;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
}

.fab-btn {
  pointer-events: auto; /* Enable clicks on buttons */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.fab-btn:hover {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.fab-call {
  background: linear-gradient(135deg, #0A74DA, #0056b3);
  position: relative;
}

.fab-call::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #0A74DA;
  opacity: 0;
  animation: radarPulse 2s infinite;
}

@keyframes radarPulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.fab-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  position: relative;
}

.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: radarPulse 2.5s infinite 1s; /* Offset pulse */
}

@media (max-width: 768px) {
  .fab-container {
    bottom: 20px;
    padding: 0 20px;
  }
  .fab-btn {
    width: 54px;
    height: 54px;
  }
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 20px;
  min-height: 300px;
}

.form-success.show {
  display: flex;
}

/* ─── Smooth Scroll Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.booking-form.hide {
  display: none;
}

/* ─── Mobile Background Optimizations ─── */
@media (max-width: 768px) {
  .about-section {
    background: var(--dark);
  }
  .packages-section {
    background: var(--dark);
  }
  .testimonials-section {
    background: var(--dark);
  }
}

.success-icon {
  font-size: 4rem;
  animation: pulse 1.5s infinite;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--saffron);
}

.form-success p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--dark);
}

.footer-top {
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 160, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  background: rgba(212, 160, 23, 0.15);
  border-color: rgba(212, 160, 23, 0.4);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col li,
.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-links-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ══════════════════════════════════════
   FLOATING ACTION BUTTON
══════════════════════════════════════ */
.fab-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  animation: fabPop 0.5s 2s both;
}

.fab-whatsapp:hover {
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollAnim {
  0% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: scaleY(0.3);
    transform-origin: bottom;
  }
}

@keyframes fabPop {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr 1fr;
  }

  .destinations-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dest-card.large {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pooja-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pooja-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pooja-cta {
    padding: 28px 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 14, 0, 0.97);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    gap: 4px;
    border-top: 1px solid rgba(212, 160, 23, 0.2);
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    gap: 18px;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .booking-form-wrap {
    padding: 28px 20px;
  }

  .scroll-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }
}
/* --------------------------------------
   DESTINATION MODAL STYLES
   -------------------------------------- */
.dest-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.dest-modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 14, 0, 0.85);
  backdrop-filter: blur(8px);
}

.modal-container {
  position: relative;
  background: var(--card-bg);
  width: 100%;
  max-width: 650px;
  border-radius: 24px;
  border: 1px solid rgba(212, 160, 23, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10;
}

.dest-modal.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20;
}

.modal-close:hover {
  background: var(--saffron);
  transform: rotate(90deg);
}

.modal-content {
  padding: 40px;
}

.modal-header {
  margin-bottom: 24px;
}

.modal-tag {
  display: inline-block;
  background: rgba(232, 93, 4, 0.15);
  color: var(--saffron);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.modal-body {
  margin-bottom: 32px;
}

#modalDesc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal-highlights h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-highlights h4::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

#modalHighlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
}

#modalHighlights li {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

#modalHighlights li::before {
  content: '?';
  color: var(--gold);
  font-weight: bold;
}

.modal-footer {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.modal-cta-btn {
  padding: 12px 32px;
}

@media (max-width: 600px) {
  .modal-content {
    padding: 30px 20px;
  }
  .modal-title {
    font-size: 2rem;
  }
  #modalHighlights {
    grid-template-columns: 1fr;
  }
}
