/* ══════════════════════════════════════════════════
   PANDIT JI BOOKING – LUCKNOW | style.css
   Premium Glassmorphism + Sacred Orange/Gold Theme
══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --saffron:    #FF6B00;
  --gold:       #FFB800;
  --deep:       #0D0A1A;
  --card-bg:    rgba(255,255,255,0.05);
  --card-border:rgba(255,180,60,0.18);
  --text:       #F0EAD6;
  --text-muted: #A89880;
  --white:      #FFFFFF;
  --radius:     16px;
  --radius-lg:  24px;
  --trans:      all 0.35s cubic-bezier(.4,0,.2,1);
  --glow:       0 0 40px rgba(255,107,0,0.25);
  --shadow:     0 20px 60px rgba(0,0,0,0.45);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--deep);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ══════════════════════════════════════ NAVBAR ══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0;
  transition: var(--trans);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(13,10,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,180,60,0.12);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.6rem; }
.logo-text { font-family: 'Yatra One', cursive; font-size: 1.25rem; color: var(--white); }
.logo-highlight { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 500; color: var(--text);
  transition: var(--trans);
}
.nav-link:hover { color: var(--gold); background: rgba(255,184,0,0.08); }
.nav-cta {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #000 !important; font-weight: 700;
  padding: 10px 22px !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: var(--glow); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: var(--trans);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════ HERO ══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 0 60px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,107,0,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(255,184,0,0.12) 0%, transparent 50%),
              linear-gradient(160deg, #0D0A1A 0%, #150C2E 50%, #0D0A1A 100%);
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,184,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,184,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.3;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.orb-1 { width: 500px; height: 500px; background: var(--saffron); top: -100px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 350px; height: 350px; background: var(--gold); bottom: 0; left: -80px; animation-delay: -3s; }
.orb-3 { width: 250px; height: 250px; background: #9B2D7A; top: 50%; left: 40%; animation-delay: -6s; }
@keyframes orbFloat {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.15) translate(20px,-20px); }
}

.hero-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,184,0,0.12); border: 1px solid rgba(255,184,0,0.3);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.82rem; font-weight: 500; color: var(--gold);
  margin-bottom: 20px;
}
.badge-dot { width:8px; height:8px; border-radius:50%; background: var(--gold); animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100% {opacity:1;} 50% {opacity:0.2;} }

.hero-title {
  font-family: 'Yatra One', cursive;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-word {
  background: linear-gradient(135deg, #FFB800, #FF6B00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem; color: var(--text-muted); margin-bottom: 32px; max-width: 480px;
}
.hero-sub strong { color: var(--gold); }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; cursor: pointer; border: none;
  transition: var(--trans); white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  color: #000;
  box-shadow: 0 6px 30px rgba(255,107,0,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,107,0,0.6); }
.btn-outline {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,184,0,0.4);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { background: rgba(255,184,0,0.12); border-color: var(--gold); transform: translateY(-3px); }
.btn-full { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }

.pulse { animation: pulseCTA 2.5s ease-in-out infinite; }
@keyframes pulseCTA {
  0%,100% { box-shadow: 0 6px 30px rgba(255,107,0,0.4); }
  50%      { box-shadow: 0 6px 50px rgba(255,107,0,0.75), 0 0 0 10px rgba(255,107,0,0.08); }
}

.hero-trust { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-pill {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,184,0,0.2);
  border-radius: 50px; padding: 6px 14px;
  font-size: 0.8rem; font-weight: 500; color: var(--text);
}

/* Hero image side */
.hero-image {
  position: relative; display: flex;
  justify-content: center; align-items: center;
}
.image-glow {
  position: absolute; width: 320px; height: 320px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,107,0,0.3) 0%, transparent 70%);
  filter: blur(40px); z-index: 0;
}
.pandit-img {
  position: relative; z-index: 2;
  max-height: 480px; width: auto;
  filter: drop-shadow(0 20px 60px rgba(255,107,0,0.3));
}
.floating { animation: floatY 4s ease-in-out infinite; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}
.mandala-ring {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  border: 1.5px solid rgba(255,184,0,0.18);
  z-index: 1; animation: spin 25s linear infinite;
}
.mandala-ring::before {
  content: ''; position: absolute; inset: 20px; border-radius: 50%;
  border: 1px dashed rgba(255,107,0,0.15);
  animation: spin 15s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

.floating-card {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,184,0,0.3); border-radius: 12px;
  padding: 10px 18px; font-size: 0.85rem; font-weight: 600; color: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.card-top    { top: 12%; right: 0; animation: floatY 4s ease-in-out infinite 0.5s; }
.card-bottom { bottom: 12%; left: 0; animation: floatY 4s ease-in-out infinite 1.2s; }

.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; z-index: 2;
}
.scroll-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--gold);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity:1; }
  50%      { transform: translateY(10px); opacity:0.4; }
}

/* ══════════════════════════════════════ TRUST BAR ══════════════════════════════════════ */
.trust-bar {
  padding: 32px 0;
  background: rgba(255,255,255,0.025);
  border-top: 1px solid rgba(255,184,0,0.1);
  border-bottom: 1px solid rgba(255,184,0,0.1);
  backdrop-filter: blur(10px);
}
.trust-container {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: center; align-items: center;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 40px; flex: 1; min-width: 200px; justify-content: center;
}
.trust-icon { font-size: 2rem; }
.trust-num { font-size: 1.5rem; font-weight: 800; color: var(--gold); font-family: 'Yatra One', cursive; }
.trust-label { font-size: 0.8rem; color: var(--text-muted); }
.trust-divider { width: 1px; height: 50px; background: rgba(255,184,0,0.15); }

/* ══════════════════════════════════════ SECTIONS COMMON ══════════════════════════════════════ */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: rgba(255,184,0,0.1); border: 1px solid rgba(255,184,0,0.25);
  border-radius: 50px; padding: 5px 16px;
  font-size: 0.82rem; font-weight: 600; color: var(--gold);
  margin-bottom: 12px; letter-spacing: 0.05em; text-transform: uppercase;
}
.section-title {
  font-family: 'Yatra One', cursive;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white); line-height: 1.25; margin-bottom: 14px;
}
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ══════════════════════════════════════ SERVICES ══════════════════════════════════════ */
.services { padding: 100px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative; overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--trans);
  cursor: default;
  backdrop-filter: blur(16px);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,184,0,0.45);
  box-shadow: 0 20px 60px rgba(255,107,0,0.2);
}
.card-glow {
  position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: radial-gradient(circle at 30% 20%, rgba(255,107,0,0.12) 0%, transparent 60%);
  opacity: 0; transition: var(--trans);
}
.service-card:hover .card-glow { opacity: 1; }
.service-icon { font-size: 2.8rem; margin-bottom: 16px; }
.service-card h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--white);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.card-link {
  font-size: 0.88rem; font-weight: 600; color: var(--gold);
  transition: var(--trans);
}
.card-link:hover { color: var(--saffron); letter-spacing: 0.04em; }

/* ══════════════════════════════════════ HOW IT WORKS ══════════════════════════════════════ */
.how-it-works { padding: 100px 0; position: relative; overflow: hidden; }
.hiw-bg { position: absolute; inset: 0; z-index: 0; }
.hiw-orb {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.how-it-works .section-container { position: relative; z-index: 1; }

.steps-wrapper {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 40px;
  position: relative;
}
.step-line {
  position: absolute; top: 50px; left: 16%; right: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,184,0,0.4), transparent);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-number {
  font-family: 'Yatra One', cursive;
  font-size: 4rem; font-weight: 900;
  background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,184,0,0.08));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 8px;
}
.step-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(255,107,0,0.35);
  transition: var(--trans);
}
.step:hover .step-icon { transform: scale(1.1) rotate(5deg); box-shadow: 0 12px 40px rgba(255,107,0,0.5); }
.step h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════════ BOOKING ══════════════════════════════════════ */
.booking { padding: 100px 0; }
.booking-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 32px; padding: 60px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.booking-info .section-title { text-align: left; margin-top: 12px; }
.booking-highlights {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0;
}
.b-highlight {
  background: rgba(255,184,0,0.1); border: 1px solid rgba(255,184,0,0.25);
  border-radius: 50px; padding: 7px 16px;
  font-size: 0.85rem; font-weight: 600; color: var(--gold);
}
.contact-direct { margin-top: 24px; }
.contact-direct p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 10px; }
.contact-link {
  display: inline-block; margin-right: 12px; margin-bottom: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,184,0,0.25);
  border-radius: 50px; padding: 8px 20px;
  font-size: 0.9rem; font-weight: 600; color: var(--white);
  transition: var(--trans);
}
.contact-link:hover { background: rgba(255,184,0,0.15); transform: translateY(-2px); }

.booking-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.form-group input,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: 12px; padding: 12px 16px;
  color: var(--white); font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--trans); outline: none;
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus { border-color: var(--gold); background: rgba(255,184,0,0.06); box-shadow: 0 0 0 3px rgba(255,184,0,0.12); }
.form-group select option { background: #1a1030; color: var(--white); }

/* ══════════════════════════════════════ ABOUT ══════════════════════════════════════ */
.about { padding: 100px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.about-content .section-title { text-align: left; margin-top: 12px; }
.about-text { color: var(--text-muted); margin-bottom: 32px; font-size: 1rem; }
.about-features { display: flex; flex-direction: column; gap: 22px; }
.about-feat {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); transition: var(--trans);
  backdrop-filter: blur(10px);
}
.about-feat:hover { border-color: rgba(255,184,0,0.4); transform: translateX(6px); }
.feat-icon { font-size: 1.8rem; flex-shrink: 0; }
.about-feat strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.about-feat p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* About visual */
.about-visual { display: flex; justify-content: center; align-items: center; }
.about-card-stack {
  position: relative; width: 320px; height: 360px;
}
.abt-card {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,184,0,0.25);
  backdrop-filter: blur(16px); border-radius: 16px;
  padding: 16px 22px; font-size: 0.95rem; font-weight: 600; color: var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  transition: var(--trans);
}
.abt-card:hover { transform: scale(1.05); border-color: var(--gold); }
.abt-card-icon { font-size: 1.8rem; }
.abt-card-1 { top: 0; left: 0; animation: floatY 5s ease-in-out infinite 0s; }
.abt-card-2 { top: 35%; right: 0; animation: floatY 5s ease-in-out infinite 1.2s; }
.abt-card-3 { bottom: 0; left: 10%; animation: floatY 5s ease-in-out infinite 2.4s; }
.about-om {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 7rem; opacity: 0.06; z-index: -1;
  animation: spin 40s linear infinite;
  font-family: 'Noto Sans Devanagari', sans-serif;
}

/* ══════════════════════════════════════ FOOTER ══════════════════════════════════════ */
.footer {
  background: rgba(0,0,0,0.45);
  border-top: 1px solid rgba(255,184,0,0.1);
  padding: 60px 0 0; position: relative; overflow: hidden;
}
.footer-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.footer-links-col h4, .footer-contact-col h4 {
  font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 16px;
}
.footer-links-col a, .footer-contact-col a, .footer-address {
  display: block; font-size: 0.88rem; color: var(--text-muted);
  margin-bottom: 8px; transition: var(--trans);
}
.footer-links-col a:hover, .footer-contact-col a:hover { color: var(--gold); }
.footer-address { color: var(--text-muted); }
.footer-wa {
  display: inline-block; margin-top: 10px;
  background: #25D366; color: #fff !important;
  border-radius: 50px; padding: 8px 18px;
  font-weight: 600; font-size: 0.88rem !important;
  transition: var(--trans);
}
.footer-wa:hover { background: #20b558; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px; text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ══════════════════════════════════════ FLOATING WHATSAPP ══════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 30px rgba(37,211,102,0.45);
  transition: var(--trans); animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 40px rgba(37,211,102,0.65); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 30px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 50px rgba(37,211,102,0.75), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ══════════════════════════════════════ POPUP ══════════════════════════════════════ */
.popup-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--trans);
}
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-box {
  background: linear-gradient(145deg, #1a1030, #0D0A1A);
  border: 1px solid rgba(255,184,0,0.3);
  border-radius: 28px; padding: 50px 40px;
  text-align: center; max-width: 420px; width: 90%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  transform: scale(0.85); transition: var(--trans);
}
.popup-overlay.active .popup-box { transform: scale(1); }
.popup-icon { font-size: 4rem; margin-bottom: 16px; }
.popup-box h3 { font-family: 'Yatra One', cursive; font-size: 1.6rem; color: var(--white); margin-bottom: 12px; }
.popup-box p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.popup-box p strong { color: var(--gold); }
.popup-contact {
  background: rgba(255,184,0,0.08); border: 1px solid rgba(255,184,0,0.2);
  border-radius: 12px; padding: 12px 16px;
  font-size: 0.9rem; color: var(--text-muted);
  margin-bottom: 24px;
}
.popup-contact a { color: var(--gold); font-weight: 700; }

/* ══════════════════════════════════════ SCROLL REVEAL ══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-right {
  opacity: 0; transform: translateX(36px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Staggered children */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.12s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.19s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.26s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.33s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.40s; }
.steps-wrapper .step:nth-child(2) { transition-delay: 0.15s; }
.steps-wrapper .step:nth-child(3) { transition-delay: 0.30s; }
.trust-container .trust-item:nth-child(1) { transition-delay: 0.05s; }
.trust-container .trust-item:nth-child(3) { transition-delay: 0.12s; }
.trust-container .trust-item:nth-child(5) { transition-delay: 0.19s; }
.trust-container .trust-item:nth-child(7) { transition-delay: 0.26s; }

/* ══════════════════════════════════════ RESPONSIVE ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-image { order: -1; }
  .hero-sub, .hero-btns, .hero-trust { justify-content: center; }
  .hero-sub { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .booking-wrapper { grid-template-columns: 1fr; padding: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { margin-top: 40px; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    flex-direction: column; align-items: center; justify-content: center;
    background: rgba(13,10,26,0.97); backdrop-filter: blur(20px);
    gap: 20px; transform: translateX(100%); transition: var(--trans);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.2rem; padding: 12px 24px; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .step-line { display: none; }
  .trust-container { flex-direction: column; }
  .trust-divider { width: 60px; height: 1px; }
  .booking-wrapper { padding: 28px 20px; }
  .about-visual { display: none; }

  /* ── Pandit image mobile fix ── */
  .hero-image {
    display: flex !important;
    order: -1;
    margin-bottom: 10px;
    justify-content: center;
    align-items: center;
  }
  .pandit-img {
    max-height: 240px;
    width: auto;
    margin: 0 auto;
  }
  .mandala-ring { width: 250px; height: 250px; }
  .floating-card { display: none; }
  .image-glow { width: 180px; height: 180px; }
  .footer-container { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
  .booking-wrapper { gap: 32px; }
}

/* ── Google Form Embed ── */
.gform-wrapper {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gform-wrapper iframe {
  display: block;
  min-height: 620px;
  background: #fff;
}
.form-direct-link {
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
