/* ============================================================
   VEDIC BRAHMAN — Puja & Astrology Booking
   Traditional Sacred Design System
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cinzel+Decorative:wght@400;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

/* ── Design Tokens ── */
:root {
  --saffron:       #FF6B00;
  --deep-saffron:  #CC4400;
  --maroon:        #800000;
  --dark-maroon:   #5C0000;
  --deep-maroon:   #3D0000;
  --gold:          #C9A227;
  --light-gold:    #F0C040;
  --pale-gold:     #F5DFA0;
  --cream:         #FFF8E7;
  --light-cream:   #FFFDF5;
  --warm-beige:    #F5E6C8;
  --text-dark:     #3D1800;
  --text-brown:    #6B3A1F;
  --text-muted:    #8B6B50;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
  font-size: 1.06rem;
  color: var(--text-dark);
  background-color: var(--cream);
  /* Puja pattern background — subtle lotus diamond tile */
  background-image: url('/images/bg-pattern.svg');
  background-size: 120px 120px;
  background-repeat: repeat;
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', 'Trajan Pro', serif;
  color: var(--dark-maroon);
}

a { color: var(--maroon); }
a:hover { color: var(--saffron); }

/* Scrollbar */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--maroon); }

/* ============================================================
   NAVBAR
   ============================================================ */
.vedic-navbar {
  background: linear-gradient(135deg, #3D0000 0%, #700000 50%, #4A0800 100%);
  border-bottom: 3px solid var(--gold);
  padding: 8px 0;
}

.vedic-navbar .navbar-brand-text {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.15rem;
  color: #FFD700 !important;
  letter-spacing: 1px;
  line-height: 1.15;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6), 0 0 12px rgba(255,180,0,0.4);
}

.vedic-navbar .navbar-brand-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: rgba(255,215,0,0.95);
  text-transform: uppercase;
}

.vedic-navbar .nav-link {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  color: rgba(255,218,140,0.88) !important;
  padding: 8px 14px !important;
  transition: color 0.2s;
}

.vedic-navbar .nav-link:hover,
.vedic-navbar .nav-link.active {
  color: var(--light-gold) !important;
}

.vedic-navbar .navbar-toggler {
  border-color: rgba(200,160,50,0.5);
}

/* ============================================================
   HERO BANNER — Sacred Fire / Puja Lamp Effect
   ============================================================ */
.hero-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  text-align: center;
  /* Warm lamp-glow (agni/diya) background */
  background:
    radial-gradient(ellipse at 50% 15%, rgba(255,210,60,0.28) 0%, transparent 50%),
    radial-gradient(ellipse at 18% 88%, rgba(255,100,20,0.16) 0%, transparent 42%),
    radial-gradient(ellipse at 82% 88%, rgba(255,100,20,0.16) 0%, transparent 42%),
    linear-gradient(175deg, #3D0000 0%, #700000 30%, #A04000 60%, #5C0000 100%);
  color: white;
}

/* Mandala overlay on hero */
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/bg-pattern.svg');
  background-size: 75px 75px;
  opacity: 0.09;
  pointer-events: none;
}

/* Subtle vignette on hero */
.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-logo-wrap {
  display: inline-block;
}

@keyframes logoPulse {
  0%   { filter: drop-shadow(0 0  8px rgba(255,160,20,0.40)); }
  25%  { filter: drop-shadow(0 0 30px rgba(255,210,50,0.90)) drop-shadow(0 0 55px rgba(255,90,0,0.22)); }
  55%  { filter: drop-shadow(0 0 14px rgba(200,140,20,0.55)); }
  80%  { filter: drop-shadow(0 0 24px rgba(255,180,30,0.75)) drop-shadow(0 0 40px rgba(255,70,0,0.18)); }
  100% { filter: drop-shadow(0 0  8px rgba(255,160,20,0.40)); }
}

.hero-brand {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--light-gold);
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 0 50px rgba(255,180,30,0.35);
  letter-spacing: 2px;
  line-height: 1.15;
  margin-top: 14px;
}

@media (max-width: 576px) {
  .hero-brand { font-size: 2rem; }
  .hero-logo-wrap img { width: 110px; }
}

.hero-tagline {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(255,230,175,0.92);
  letter-spacing: 0.5px;
  margin-top: 6px;
}

/* Decorative gold line divider */
.gold-divider {
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--light-gold), var(--gold), transparent);
  margin: 16px auto;
  border: none;
}

.gold-divider-sm {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pale-gold), transparent);
  margin: 8px auto;
  border: none;
}

/* Decorative dots row */
.dot-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px 0;
}

.dot-row span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.dot-row span:nth-child(3) {
  width: 8px; height: 8px;
  opacity: 1;
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-bar-wrap {
  background: linear-gradient(135deg, #2E0000 0%, #5C0000 50%, #380800 100%);
  border-bottom: 2px solid var(--gold);
  padding: 20px 0 16px;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 18px rgba(0,0,0,0.30);
}

.search-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* -- Tabs -- */
.search-tabs {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.search-tab {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,39,0.30);
  border-radius: 8px;
  color: rgba(255,218,140,0.80);
  font-family: 'Cinzel', serif;
  font-size: 0.74rem;
  letter-spacing: 0.8px;
  padding: 7px 14px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.search-tab:hover {
  background: rgba(201,162,39,0.15);
  color: var(--light-gold);
  border-color: rgba(201,162,39,0.55);
}

.search-tab.active {
  background: linear-gradient(135deg, rgba(201,162,39,0.28), rgba(201,162,39,0.18));
  border-color: var(--gold);
  color: var(--light-gold);
  box-shadow: 0 0 10px rgba(201,162,39,0.20);
}

/* -- Input wrap -- */
.search-input-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 14px;
  color: rgba(240,192,64,0.92);
  font-size: 0.95rem;
  pointer-events: none;
}

.search-input {
  width: 100%;
  background: rgba(255,255,255,0.22);
  border: 1.5px solid rgba(201,162,39,0.72);
  border-radius: 10px;
  color: #FFEEBB;
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
  padding: 9px 40px 9px 40px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.search-input::placeholder { color: rgba(240,192,64,0.72); }

.search-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}

.search-clear {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  color: rgba(201,162,39,0.60);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  font-size: 0.8rem;
}

.search-clear:hover { color: var(--light-gold); }

/* -- Result count -- */
.search-result-count {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: rgba(240,192,64,0.65);
  text-align: center;
  margin-top: 6px;
}

/* -- No results notice -- */
.search-no-results {
  background: #FFF3CD;
  border: 1.5px dashed var(--maroon);
  color: var(--dark-maroon);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 8px;
}

@media (max-width: 576px) {
  .search-inner { flex-direction: column; align-items: stretch; }
  .search-tabs  { justify-content: center; }
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-heading-wrap {
  text-align: center;
  margin-bottom: 36px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-maroon);
  margin-bottom: 4px;
}

.section-subtitle {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* OM divider */
.om-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 400px;
  margin: 12px auto 0;
}

.om-divider::before, .om-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.om-divider::after {
  background: linear-gradient(270deg, transparent, var(--gold));
}

.om-divider-symbol {
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  border: 1px solid rgba(201,162,39,0.40) !important;
  border-radius: 14px !important;
  background: var(--light-cream) !important;
  box-shadow: 0 2px 14px rgba(80,30,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Subtle sheen corner */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: linear-gradient(225deg, rgba(201,162,39,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(120,0,0,0.16);
}

.service-card .card-header {
  border-radius: 14px 14px 0 0 !important;
  border-bottom: 2px solid rgba(201,162,39,0.45) !important;
  padding: 14px 18px !important;
}

.puja-card-header {
  background: linear-gradient(135deg, #4A0000 0%, #800000 60%, #6B1C00 100%);
  color: white;
}

.astro-card-header {
  background: linear-gradient(135deg, #0D2233 0%, #154360 60%, #1A5276 100%);
  color: white;
}

.service-card .card-body {
  padding: 18px 20px !important;
}

.card-service-name {
  font-family: 'Cinzel', serif;
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1.35;
  color: white;
}

/* ============================================================
   PRICE BADGE
   ============================================================ */
.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFF8D0, #FFEEA0);
  color: var(--dark-maroon);
  border: 1px solid var(--gold);
  border-radius: 30px;
  padding: 5px 16px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 6px rgba(180,130,0,0.15);
}

.astro-price-badge {
  background: linear-gradient(135deg, #E8F4FD, #D6EAF8);
  color: #0D2233;
  border-color: #5DADE2;
  box-shadow: 0 1px 6px rgba(93,173,226,0.15);
}

/* ============================================================
   TYPE BADGES
   ============================================================ */
.badge-puja {
  background: linear-gradient(135deg, #700000, #9B2000);
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 1.2px;
}

.badge-astrology {
  background: linear-gradient(135deg, #0D2233, #1E5F8A);
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 1.2px;
}

/* ============================================================
   META INFO ROWS
   ============================================================ */
.meta-row {
  font-family: 'Crimson Text', serif;
  font-size: 0.94rem;
  color: var(--text-brown);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.meta-row i { color: var(--maroon); font-size: 0.85rem; width: 16px; }

/* ============================================================
   BOOK NOW BUTTON
   ============================================================ */
.btn-book {
  background: linear-gradient(135deg, #4A0000, #8B2800);
  color: #FFE090 !important;
  border: 1px solid rgba(201,162,39,0.50) !important;
  border-radius: 8px;
  width: 100%;
  padding: 10px 20px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  text-align: center;
  display: block;
  text-decoration: none;
}

.btn-book:hover {
  background: linear-gradient(135deg, #700000, #C04000);
  color: #FFD700 !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(120,0,0,0.30);
}

.btn-book-astro {
  background: linear-gradient(135deg, #0D2233, #1A5276);
  color: #C8E6F8 !important;
  border-color: rgba(93,173,226,0.45) !important;
}

.btn-book-astro:hover {
  background: linear-gradient(135deg, #154360, #2E86C1);
  color: #EBF5FB !important;
}

/* ============================================================
   SECTION BACKGROUND TREATMENTS
   ============================================================ */
.astro-section-bg {
  background: linear-gradient(180deg, rgba(13,34,51,0.04), rgba(21,67,96,0.07));
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(93,173,226,0.18);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: linear-gradient(135deg, #FFF8DC, #FFF2C0);
  border: 1px solid rgba(201,162,39,0.40);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(180,130,0,0.10);
}

.pujari-avatar {
  width: 94px; height: 94px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A0000, #8B2800);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
  border: 3px solid var(--gold);
  box-shadow: 0 0 22px rgba(201,162,39,0.35);
}

/* ============================================================
   BOOKING FORM PAGE
   ============================================================ */
.booking-page-header {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,180,50,0.18) 0%, transparent 50%),
    linear-gradient(175deg, #3D0000 0%, #700000 55%, #5C2000 100%);
  color: white;
  padding: 44px 0 34px;
}

.form-card {
  background: var(--light-cream);
  border: 1px solid rgba(201,162,39,0.28);
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(80,30,0,0.10);
  padding: 38px;
}

.form-section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--maroon);
  border-bottom: 1px solid rgba(201,162,39,0.30);
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--dark-maroon);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 1px solid rgba(180,130,30,0.38);
  border-radius: 8px;
  background: #FFFFFA;
  color: var(--text-dark);
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
  padding: 10px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(128,0,0,0.10);
  background: #FFFFF8;
  outline: none;
}

.service-summary-box {
  background: linear-gradient(135deg, #FFF8DC, #FFF2B8);
  border: 1px solid var(--gold);
  border-radius: 14px;
  padding: 22px 26px;
  box-shadow: 0 2px 12px rgba(180,130,0,0.12);
}

.service-summary-box .svc-name {
  font-family: 'Cinzel', serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--dark-maroon);
}

.service-summary-box .svc-price {
  font-family: 'Cinzel', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--maroon);
}

.btn-submit-primary {
  background: linear-gradient(135deg, #4A0000, #8B2800);
  color: #FFE090;
  border: 1px solid rgba(201,162,39,0.45);
  border-radius: 10px;
  padding: 12px 38px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-submit-primary:hover {
  background: linear-gradient(135deg, #700000, #B83A00);
  color: #FFD700;
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(100,0,0,0.28);
}

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-banner {
  background:
    radial-gradient(ellipse at 50% 25%, rgba(255,230,80,0.22) 0%, transparent 55%),
    linear-gradient(135deg, #1E4D00 0%, #2E7D00 50%, #1E5500 100%);
  color: white;
  padding: 64px 0;
  text-align: center;
}

.check-icon {
  font-size: 5rem;
  display: block;
  animation: popIn 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  0%   { transform: scale(0) rotate(-15deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg);   opacity: 1; }
}

.success-banner h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  color: #D4EDAA;
}

.booking-ref-pill {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 40px;
  display: inline-block;
  padding: 7px 30px;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-top: 14px;
}

.step-card {
  background: var(--light-cream);
  border: 1px solid rgba(201,162,39,0.28);
  border-radius: 16px;
  padding: 34px 38px;
  box-shadow: 0 4px 22px rgba(80,30,0,0.08);
}

.step-icon-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.vedic-footer {
  background: linear-gradient(135deg, #3D0000 0%, #5C0000 50%, #480800 100%);
  border-top: 3px solid var(--gold);
  color: rgba(255,225,175,0.88);
}

.vedic-footer .footer-brand {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.12rem;
  color: var(--light-gold);
}

.vedic-footer .footer-heading {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240,192,64,0.6);
  margin-bottom: 12px;
}

.vedic-footer a {
  color: rgba(255,218,140,0.82);
  text-decoration: none;
  transition: color 0.2s;
}

.vedic-footer a:hover {
  color: var(--light-gold);
}

.vedic-footer .copyright-bar {
  background: rgba(0,0,0,0.28);
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: rgba(240,192,64,0.55);
  padding: 10px 0;
  text-align: center;
}

/* ============================================================
   NAVBAR — AUTH BUTTONS & ADMIN LINK
   ============================================================ */
.nav-admin-link {
  font-weight: 700 !important;
  color: var(--light-gold) !important;
}

.btn-nav-login {
  background: linear-gradient(135deg, #C9A227, #F0C040);
  color: #3D0000 !important;
  border-radius: 8px;
  padding: 7px 16px;
  font-family: 'Cinzel', serif;
  font-size: 0.76rem;
  letter-spacing: 0.5px;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-nav-login:hover { opacity: 0.88; color: #3D0000 !important; }

.nav-user-name {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  color: rgba(255,218,140,0.80);
  white-space: nowrap;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-nav-logout {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,162,39,0.35);
  color: rgba(255,218,140,0.82);
  border-radius: 8px;
  padding: 6px 14px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-nav-logout:hover {
  background: rgba(201,162,39,0.18);
  color: var(--light-gold);
  border-color: rgba(201,162,39,0.60);
}

/* ── Booking action buttons (Reschedule / Cancel) ── */
.booking-action-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.70rem;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
  white-space: nowrap;
}
.booking-action-edit {
  background: rgba(201,162,39,0.15);
  color: var(--dark-maroon);
  border: 1px solid rgba(201,162,39,0.45);
}
.booking-action-edit:hover {
  background: rgba(201,162,39,0.28);
  color: var(--dark-maroon);
}
.booking-action-cancel {
  background: rgba(140,0,0,0.08);
  color: #7B0000;
  border: 1px solid rgba(140,0,0,0.25);
}
.booking-action-cancel:hover {
  background: rgba(140,0,0,0.16);
}

/* ── Cancelled booking card ── */
.booking-card-cancelled {
  opacity: 0.62;
  filter: grayscale(20%);
}

/* ── Edit booking form inputs ── */
.booking-edit-input {
  width: 100%;
  background: rgba(255,255,255,0.80);
  border: 1.5px solid rgba(201,162,39,0.55);
  border-radius: 10px;
  color: var(--text-dark);
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-edit-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}

/* ── Profile Dropdown ── */
.nav-profile-toggle {
  text-decoration: none !important;
  color: rgba(255,218,140,0.88) !important;
  font-family: 'Cinzel', serif;
  font-size: 0.76rem;
  letter-spacing: 0.5px;
  padding: 5px 10px !important;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.nav-profile-toggle:hover,
.nav-profile-toggle.show {
  background: rgba(201,162,39,0.12);
  border-color: rgba(201,162,39,0.35);
  color: var(--light-gold) !important;
}
.nav-profile-toggle::after { display: none; } /* hide default BS caret */

.nav-profile-pic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(201,162,39,0.55);
  object-fit: cover;
}

.nav-profile-initials {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A227, #F0C040);
  color: #3D0000;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(201,162,39,0.55);
  flex-shrink: 0;
}

.vedic-dropdown {
  background: linear-gradient(160deg, #2E0000 0%, #5C0000 80%, #400800 100%);
  border: 1px solid rgba(201,162,39,0.45);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  min-width: 180px;
  padding: 6px 0;
  margin-top: 6px !important;
}

.vedic-dropdown-item {
  font-family: 'Cinzel', serif;
  font-size: 0.74rem;
  letter-spacing: 0.6px;
  color: rgba(255,218,140,0.88) !important;
  padding: 9px 18px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.vedic-dropdown-item:hover {
  background: rgba(201,162,39,0.16) !important;
  color: var(--light-gold) !important;
}
.vedic-dropdown-item.logout-item {
  color: rgba(255,160,130,0.90) !important;
}
.vedic-dropdown-item.logout-item:hover {
  background: rgba(180,40,0,0.22) !important;
  color: #FFB0A0 !important;
}
.vedic-dropdown .dropdown-divider { border-color: rgba(201,162,39,0.22); margin: 4px 0; }

/* ============================================================
   ADMIN PAGES
   ============================================================ */
.admin-page-header {
  background: linear-gradient(135deg, #2E0000 0%, #5C0000 50%, #400800 100%);
  border-bottom: 2px solid var(--gold);
  padding: 28px 0 22px;
  color: white;
}

.admin-page-title {
  font-family: 'Cinzel', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--light-gold);
  margin-bottom: 4px;
}

.admin-page-subtitle {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,220,160,0.70);
}

/* ── Stat Cards ── */
.admin-stat-card {
  background: var(--light-cream);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 2px 12px rgba(80,30,0,0.07);
}

.admin-stat-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: white;
  flex-shrink: 0;
}

.admin-stat-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.admin-stat-value {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-maroon);
  line-height: 1;
}

/* ── Admin Card ── */
.admin-card {
  background: var(--light-cream);
  border: 1px solid rgba(201,162,39,0.30);
  border-radius: 14px;
  box-shadow: 0 3px 18px rgba(80,30,0,0.08);
  overflow: hidden;
}

.admin-card-header {
  background: linear-gradient(135deg, #3D0000, #700000);
  color: var(--light-gold);
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(201,162,39,0.30);
}

/* ── Admin Table ── */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Crimson Text', serif;
  font-size: 0.96rem;
}

.admin-table thead tr {
  background: linear-gradient(135deg, rgba(61,0,0,0.06), rgba(80,30,0,0.04));
  border-bottom: 2px solid rgba(201,162,39,0.25);
}

.admin-table th {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--dark-maroon);
  padding: 13px 16px;
  white-space: nowrap;
}

.admin-table td {
  padding: 12px 16px;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(201,162,39,0.14);
  vertical-align: middle;
}

.admin-table tbody tr:hover {
  background: rgba(201,162,39,0.05);
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-id-badge {
  display: inline-block;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.35);
  color: var(--dark-maroon);
  border-radius: 6px;
  padding: 2px 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ── Admin Action Buttons ── */
.btn-admin-primary {
  background: linear-gradient(135deg, #C9A227, #F0C040);
  color: #3D0000 !important;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.btn-admin-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #3D0000 !important;
}

.btn-admin-secondary {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(201,162,39,0.40);
  color: rgba(255,218,140,0.85) !important;
  border-radius: 8px;
  padding: 9px 18px;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.btn-admin-secondary:hover {
  background: rgba(201,162,39,0.18);
  color: var(--light-gold) !important;
}

.btn-admin-edit {
  background: linear-gradient(135deg, #1A5276, #2E86C1);
  color: #EBF5FB !important;
  border: none;
  border-radius: 7px;
  padding: 6px 14px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-admin-edit:hover { opacity: 0.85; color: white !important; }

.btn-admin-delete {
  background: linear-gradient(135deg, #6B0000, #A00000);
  color: #FFD0D0 !important;
  border: none;
  border-radius: 7px;
  padding: 6px 14px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-admin-delete:hover { opacity: 0.85; }

/* ── Add Service inline button (below section heading) ── */
.btn-add-service-inline {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #4A0000, #800000);
  color: #FFE090 !important;
  border: 1px solid rgba(201,162,39,0.45);
  border-radius: 8px;
  padding: 7px 18px;
  font-family: 'Cinzel', serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-add-service-inline:hover {
  background: linear-gradient(135deg, #700000, #C04000);
  color: #FFD700 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(120,0,0,0.28);
}
.btn-add-service-astro {
  background: linear-gradient(135deg, #0D2233, #1A5276);
  color: #C8E6F8 !important;
  border-color: rgba(93,173,226,0.40);
}
.btn-add-service-astro:hover {
  background: linear-gradient(135deg, #154360, #2E86C1);
  color: #EBF5FB !important;
}

/* ── Inline admin bar on service cards ── */
.admin-inline-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(61,0,0,0.06);
  border: 1px dashed rgba(201,162,39,0.35);
  border-radius: 8px;
  padding: 6px 8px;
}
.admin-inline-bar-astro {
  background: rgba(13,34,51,0.06);
  border-color: rgba(93,173,226,0.30);
}

.admin-inline-edit {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1A5276, #2E86C1);
  color: #EBF5FB !important;
  border-radius: 6px;
  padding: 5px 10px;
  font-family: 'Cinzel', serif;
  font-size: 0.70rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.admin-inline-edit:hover { opacity: 0.82; color: white !important; }

.admin-inline-edit-astro {
  background: linear-gradient(135deg, #1A5276, #2980B9);
}

.admin-inline-delete {
  background: linear-gradient(135deg, #6B0000, #A00000);
  color: #FFD0D0 !important;
  border: none;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
}
.admin-inline-delete:hover { opacity: 0.82; }

/* ── Admin Alert ── */
.admin-alert-success {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 1px solid #28a745;
  color: #155724;
  border-radius: 10px;
  padding: 14px 20px;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.vedic-breadcrumb .breadcrumb-item a {
  color: rgba(255,220,150,0.7);
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
}

.vedic-breadcrumb .breadcrumb-item.active {
  color: rgba(255,220,150,0.95);
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
}

/* ============================================================
   TEMPLE THEME — Dynamic & Traditional Enhancements
   ============================================================ */

/* ── Extra design tokens ── */
:root {
  --fire-orange:   #FF8C00;
  --deep-fire:     #CC5500;
  --stone:         #8B7355;
  --stone-light:   #C4A882;
}

/* ── Font upgrade — add Uncial Antiqua for decorative headers ── */
@import url('https://fonts.googleapis.com/css2?family=MedievalSharp&display=swap');

/* ══════════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ══════════════════════════════════════════════════════════ */

@keyframes sparkFloat {
  0%   { transform: translateY(0)    translateX(0)              scale(1);   opacity: 0.9; }
  60%  {                                                                     opacity: 0.4; }
  100% { transform: translateY(-240px) translateX(var(--dx, 20px)) scale(0); opacity: 0;   }
}

@keyframes mandalaSpin {
  from { transform: translate(-50%, -55%) rotate(0deg);   }
  to   { transform: translate(-50%, -55%) rotate(360deg); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-10px); }
}

@keyframes goldShimmerText {
  0%   { background-position: 0%   center; }
  100% { background-position: 200% center; }
}

@keyframes omPulse {
  0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 3px rgba(201,162,39,0.4));  }
  50%       { transform: scale(1.18); filter: drop-shadow(0 0 10px rgba(201,162,39,0.9)); }
}

@keyframes divaFlicker {
  0%,100% { filter: drop-shadow(0 0 4px rgba(255,150,0,0.6)); transform: scaleY(1);    }
  20%     { filter: drop-shadow(0 0 9px rgba(255,210,50,0.9)); transform: scaleY(1.06); }
  40%     { filter: drop-shadow(0 0 5px rgba(255,100,0,0.7)); transform: scaleY(0.96); }
  70%     { filter: drop-shadow(0 0 12px rgba(255,230,60,1)); transform: scaleY(1.08);  }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1);   opacity: 0.65; }
  50%       { transform: scale(1.7); opacity: 1;    }
}

@keyframes diamondPulse {
  0%, 100% { opacity: 0.6; transform: rotate(45deg) scale(1);    }
  50%       { opacity: 1;   transform: rotate(45deg) scale(1.28); }
}

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

@keyframes lightSweep {
  0%   { left: -100%; }
  100% { left:  160%; }
}

@keyframes borderGlow {
  0%, 100% { box-shadow: 0 2px 14px rgba(80,30,0,0.08), 0 0 0 0 rgba(201,162,39,0);      }
  50%       { box-shadow: 0 8px 32px rgba(80,30,0,0.14), 0 0 0 3px rgba(201,162,39,0.18); }
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 1px 6px rgba(180,130,0,0.15);  }
  50%       { box-shadow: 0 2px 18px rgba(201,162,39,0.40); }
}

@keyframes navbarShrink {
  to { padding-top: 3px; padding-bottom: 3px; }
}

@keyframes flameRise {
  0%   { transform: scaleX(1)    scaleY(1);    opacity: 1;   }
  25%  { transform: scaleX(0.92) scaleY(1.06); }
  50%  { transform: scaleX(1.06) scaleY(0.94); }
  75%  { transform: scaleX(0.94) scaleY(1.09); }
  100% { transform: scaleX(1)    scaleY(1);    opacity: 1;   }
}

/* ══════════════════════════════════════════════════════════
   HERO ENHANCEMENTS
   ══════════════════════════════════════════════════════════ */

/* Richer hero background */
.hero-banner {
  background:
    radial-gradient(ellipse at 50% 5%,  rgba(255,220,80,0.22)  0%, transparent 45%),
    radial-gradient(ellipse at 15% 90%, rgba(255,110,20,0.20)  0%, transparent 40%),
    radial-gradient(ellipse at 85% 90%, rgba(255,110,20,0.20)  0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(120,0,0,0.60)    0%, transparent 70%),
    linear-gradient(170deg, #1A0000 0%, #5C0000 25%, #8B1A00 55%, #4A0000 80%, #1A0000 100%);
}

/* Rotating mandala */
.hero-mandala-rotate {
  animation: mandalaSpin 80s linear infinite !important;
  opacity: 0.07 !important;
}

/* Floating hero logo — combine float + glow pulse */
.hero-logo-wrap {
  animation: heroFloat 6s ease-in-out infinite;
}
/* Override the standalone logoPulse so both run together on the img */
.hero-logo-wrap img {
  animation: logoPulse 3.5s ease-in-out infinite;
}

/* Hero brand — shimmering gold gradient text */
.hero-brand {
  background: linear-gradient(90deg, #E8A800, #FFE090, #FFC830, #FFE090, #E8A800);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmerText 5s linear infinite;
  text-shadow: none;
  filter: drop-shadow(0 2px 18px rgba(201,162,39,0.50));
}

/* Gold divider pulse */
.gold-divider {
  animation: badgeGlow 3.5s ease-in-out infinite;
}

/* Animated dot-row */
.dot-row span { animation: dotPulse 1.8s ease-in-out infinite; }
.dot-row span:nth-child(1) { animation-delay: 0.00s; }
.dot-row span:nth-child(2) { animation-delay: 0.18s; }
.dot-row span:nth-child(3) { animation-delay: 0.36s; }
.dot-row span:nth-child(4) { animation-delay: 0.54s; }
.dot-row span:nth-child(5) { animation-delay: 0.72s; }

/* Particle sparks */
.hero-spark {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #FFE580, #C9A227, transparent);
  pointer-events: none;
  z-index: 1;
  animation: sparkFloat linear infinite;
}

/* Decorative hero bottom band */
.hero-bottom-band {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold)       0px,  var(--gold)       12px,
    var(--light-gold) 12px, var(--light-gold) 16px,
    var(--gold)       16px, var(--gold)        28px,
    transparent       28px, transparent        38px
  );
  opacity: 0.85;
}

/* Glass CTA buttons in hero */
.hero-btn-glass {
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid rgba(255,255,255,0.32) !important;
  transition: background 0.3s, box-shadow 0.3s;
}
.hero-btn-glass:hover {
  background: rgba(255,255,255,0.18) !important;
  box-shadow: 0 0 24px rgba(255,255,255,0.12);
}

/* ══════════════════════════════════════════════════════════
   NAVBAR SCROLL SHRINK
   ══════════════════════════════════════════════════════════ */
.vedic-navbar {
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.vedic-navbar.navbar-scrolled {
  padding: 3px 0;
  box-shadow: 0 6px 28px rgba(0,0,0,0.45);
  border-bottom-color: var(--light-gold);
}
.vedic-navbar.navbar-scrolled .navbar-brand img {
  width: 40px; height: 40px;
  transition: width 0.3s, height 0.3s;
}

/* ══════════════════════════════════════════════════════════
   SERVICE CARDS — TEMPLE ORNATE
   ══════════════════════════════════════════════════════════ */

/* Light-sweep shimmer on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,230,120,0.09), transparent);
  pointer-events: none;
  z-index: 2;
  border-radius: 14px;
  transition: none;
}
.service-card:hover::before {
  animation: lightSweep 0.65s ease forwards;
}

/* Enhanced hover glow */
.service-card:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow:
    0 20px 50px rgba(100,0,0,0.20),
    0 0 0 1px rgba(201,162,39,0.45),
    inset 0 0 40px rgba(201,162,39,0.04);
}

/* Card border ambient animation */
.service-card {
  animation: borderGlow 5s ease-in-out infinite;
}

/* Ornate gold top-stripe accent above card header */
.puja-card-header::after,
.astro-card-header::after {
  content: '';
  display: block;
  height: 2px;
  margin-top: 12px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.6), rgba(240,192,64,0.9), rgba(201,162,39,0.6), transparent);
}

/* Price badge glow */
.price-badge { animation: badgeGlow 3.8s ease-in-out infinite; }

/* Scroll reveal */
.card-reveal {
  opacity: 0;
  transform: translateY(32px);
}
.card-reveal.in-view {
  animation: cardRevealUp 0.55s ease forwards;
}

/* ══════════════════════════════════════════════════════════
   SECTION HEADINGS — TEMPLE STYLE
   ══════════════════════════════════════════════════════════ */

/* Om symbol pulse */
.om-divider-symbol {
  animation: omPulse 3.2s ease-in-out infinite;
  display: inline-block;
}

/* Diya flame emoji */
.section-diya {
  font-size: 1.6rem;
  display: inline-block;
  animation: divaFlicker 2.2s ease-in-out infinite;
  vertical-align: middle;
  margin: 0 6px;
}

/* Section title text glow */
.section-title {
  text-shadow: 0 1px 12px rgba(92,0,0,0.12);
}

/* ══════════════════════════════════════════════════════════
   TEMPLE SEPARATOR
   ══════════════════════════════════════════════════════════ */
.temple-separator {
  text-align: center;
  margin: 16px 0;
}
.temple-sep-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
}
.temple-sep-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--light-gold), var(--gold), transparent);
}
.temple-sep-diamonds {
  display: flex;
  align-items: center;
  gap: 7px;
}
.temple-sep-diamond {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  animation: diamondPulse 2.2s ease-in-out infinite;
}
.temple-sep-diamond.large {
  width: 11px; height: 11px;
  background: var(--light-gold);
  animation-delay: 0.35s;
}
.temple-sep-diamond:last-child { animation-delay: 0.7s; }
.temple-sep-om {
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1;
  animation: omPulse 3s ease-in-out infinite;
  display: inline-block;
}

/* ══════════════════════════════════════════════════════════
   ASTROLOGY SECTION ENHANCED
   ══════════════════════════════════════════════════════════ */
.astro-section-bg {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(13,34,51,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(21,67,96,0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(13,34,51,0.05), rgba(21,67,96,0.09));
  border: 1px solid rgba(93,173,226,0.22);
  box-shadow: inset 0 0 60px rgba(13,34,51,0.04);
}

/* ══════════════════════════════════════════════════════════
   CONTACT SECTION — TEMPLE LAMP THEME
   ══════════════════════════════════════════════════════════ */
.contact-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,220,80,0.18) 0%, transparent 55%),
    linear-gradient(135deg, #FFF8DC, #FFF3C0, #FFF8DC);
  box-shadow: 0 6px 32px rgba(180,130,0,0.14), inset 0 0 60px rgba(201,162,39,0.06);
}
.pujari-avatar {
  animation: divaFlicker 3s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════
   BOOK NOW BUTTON — RIPPLE
   ══════════════════════════════════════════════════════════ */
.btn-book {
  position: relative;
  overflow: hidden;
}
.btn-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-book:hover::before { transform: translateX(100%); }

/* ══════════════════════════════════════════════════════════
   SEARCH BAR ENHANCEMENTS
   ══════════════════════════════════════════════════════════ */
.search-bar-wrap {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,180,40,0.10) 0%, transparent 50%),
    linear-gradient(135deg, #1E0000 0%, #4A0000 40%, #2E0800 100%);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.search-input:focus {
  box-shadow: 0 0 0 3px rgba(201,162,39,0.22), 0 0 20px rgba(201,162,39,0.08);
}

/* ══════════════════════════════════════════════════════════
   BOOK-NOW button flame animation for hero CTA
   ══════════════════════════════════════════════════════════ */
.hero-cta-fire {
  display: inline-block;
  animation: flameRise 1.8s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════
   ADMIN INLINE BAR — visible pop
   ══════════════════════════════════════════════════════════ */
.admin-inline-bar {
  border: 1px dashed rgba(201,162,39,0.50);
  background: rgba(61,0,0,0.04);
}

/* ══════════════════════════════════════════════════════════
   FOOTER ENHANCEMENTS
   ══════════════════════════════════════════════════════════ */
.vedic-footer {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,162,39,0.07) 0%, transparent 50%),
    linear-gradient(135deg, #1A0000 0%, #3D0000 40%, #300800 100%);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-brand { font-size: 2.2rem; }
  .hero-banner { padding: 60px 0 54px; }
}
@media (max-width: 576px) {
  .hero-brand { font-size: 1.8rem; }
  .admin-inline-bar { flex-wrap: wrap; }
}

/* ══════════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ══════════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--light-gold));
  z-index: 9999;
  transition: width 0.1s linear;
}

.vedic-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,220,150,0.45);
}

/* ============================================================
   DESIGN UPGRADE — Premium Temple Experience
   (All rules here are intentional last-cascade overrides)
   ============================================================ */

/* ── 1. Silence the three noisiest concurrent animations ── */
.service-card  { animation: none; }
.price-badge   { animation: none; }
.dot-row span  { animation: none; opacity: 0.65; }
.pujari-avatar {
  animation: none;
  box-shadow: 0 0 0 4px rgba(201,162,39,0.28), 0 0 0 10px rgba(201,162,39,0.10);
}

/* ── 2. Left-border type accent on cards ── */
[data-type="puja"]      .service-card { border-left: 4px solid var(--maroon)  !important; }
[data-type="astrology"] .service-card { border-left: 4px solid #1A5276        !important; }

/* ── 3. Typography — give every text element more room ── */
.card-service-name { font-size: 1.0rem;  line-height: 1.45; }
.section-title     { font-size: 2.1rem;  letter-spacing: 0.4px; }
.section-subtitle  { font-size: 1.14rem; }
.hero-tagline      { font-size: 1.32rem; line-height: 1.75; }
.price-badge       { font-size: 1.15rem; padding: 6px 22px; }

/* ── 4. Double-border card via outline trick ── */
.service-card {
  outline: 2px solid transparent;
  outline-offset: 3px;
  box-shadow: 0 0 0 1px rgba(201,162,39,0.18), 0 4px 18px rgba(80,30,0,0.09);
  transition: transform 0.28s ease, box-shadow 0.28s ease, outline-color 0.28s ease;
}
.service-card:hover {
  outline-color: rgba(201,162,39,0.42);
  box-shadow: 0 0 0 1px rgba(201,162,39,0.55), 0 20px 50px rgba(100,0,0,0.22);
  transform: translateY(-8px) scale(1.014);
}

/* ── 5. Logo: remove float, add sacred halo rings ── */
.hero-logo-wrap {
  animation: none !important;
  position: relative;
  display: inline-block;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px  rgba(201,162,39,0.35),
    0 0 0 8px  rgba(201,162,39,0.12),
    0 0 0 16px rgba(201,162,39,0.06),
    0 0 36px   rgba(201,162,39,0.18);
  animation: haloBreath 4.5s ease-in-out infinite;
  pointer-events: none;
}
.hero-logo-wrap img { animation: logoPulse 3.5s ease-in-out infinite; }

@keyframes haloBreath {
  0%, 100% { transform: scale(0.96); opacity: 0.55; }
  50%       { transform: scale(1.04); opacity: 1.00; }
}

/* ── 6. Kolam rule — CSS-only double-line with ॐ ── */
.kolam-rule {
  text-align: center;
  margin: 56px 0;
  position: relative;
}
.kolam-rule::before,
.kolam-rule::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 56px);
  border-top: 1px solid var(--gold);
  box-shadow: 0 4px 0 rgba(201,162,39,0.22);
}
.kolam-rule::before { left:  0; }
.kolam-rule::after  { right: 0; }
.kolam-inner {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.5rem;
  color: var(--gold);
  background: var(--cream);
  padding: 0 20px;
  position: relative;
  z-index: 1;
  animation: omPulse 3.5s ease-in-out infinite;
  display: inline-block;
  filter: drop-shadow(0 0 8px rgba(201,162,39,0.45));
}

/* ── 7. Hero top strip ── */
.hero-top-strip {
  background: linear-gradient(90deg, #080000, #260000, #080000);
  border-bottom: 1px solid rgba(201,162,39,0.60);
  padding: 10px 0;
  text-align: center;
  letter-spacing: 20px;
  font-size: 1.05rem;
  line-height: 1;
}

/* Hero full-height core */
.hero-core {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 52px;
}
.hero-banner {
  display: flex !important;
  flex-direction: column;
  min-height: 100vh;
}

/* Scroll-down cue */
.hero-scroll-cue {
  text-align: center;
  padding: 0 0 28px;
  z-index: 3;
  position: relative;
}
.scroll-mouse {
  width: 24px; height: 40px;
  border: 1.5px solid rgba(201,162,39,0.42);
  border-radius: 13px;
  margin: 0 auto 8px;
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: 6px;  opacity: 1;   }
  70%  { top: 23px; opacity: 0;   }
  100% { top: 6px;  opacity: 0;   }
}
.scroll-cue-label {
  font-family: 'Cinzel', serif;
  font-size: 0.60rem;
  letter-spacing: 3px;
  color: rgba(201,162,39,0.50);
  text-transform: uppercase;
}

/* ── 8. Contact section — stone-carved elevation ── */
.contact-section {
  border: 1px solid rgba(201,162,39,0.52) !important;
  box-shadow:
    0 8px 36px rgba(180,130,0,0.16),
    inset 0  1px 0 rgba(255,255,255,0.88),
    inset 0 -1px 0 rgba(180,130,0,0.14) !important;
}

/* Sanskrit pujari label */
.pujari-sanskrit {
  font-family: 'Cinzel', serif;
  font-size: 0.64rem;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.85;
}

/* ── Section pre-title (decorative cap above section headings) ── */
.section-pre-title {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.82;
  display: block;
}

/* ── Card header gold bottom stripe (upgraded) ── */
.puja-card-header,
.astro-card-header {
  position: relative;
}
.puja-card-header::after,
.astro-card-header::after {
  content: '';
  display: block;
  height: 2px;
  margin-top: 10px;
  border-radius: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201,162,39,0.5),
    rgba(240,192,64,1),
    rgba(201,162,39,0.5),
    transparent
  );
}

/* ── Search tabs — rounder pill style ── */
.search-tab { border-radius: 22px !important; }

/* ── Body pattern: slightly more visible ── */
body { background-size: 88px 88px; }

/* ── Astrology section: deeper cosmic feel ── */
.astro-section-bg {
  background:
    radial-gradient(ellipse at 10% 30%, rgba(13,34,51,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 70%, rgba(21,67,96,0.12) 0%, transparent 55%),
    linear-gradient(170deg, rgba(8,20,36,0.06) 0%, rgba(13,34,51,0.10) 100%);
  border-color: rgba(93,173,226,0.28) !important;
}

/* ── Responsive: hero on mobile ── */
@media (max-width: 768px) {
  .hero-banner { min-height: 100svh; }
  .section-title { font-size: 1.65rem; }
  .hero-top-strip { letter-spacing: 10px; }
}
