/* =========================================================
   Book Pandit Ji — Global Design System
   ========================================================= */

:root {
  --primary: #f36b0a;
  --primary-dark: #c94f00;
  --primary-soft: #fff1e6;
  --maroon: #650019;
  --maroon-dark: #3d0010;
  --maroon-soft: #f8ebea;
  --gold: #c9972b;
  --gold-soft: #f8efd8;
  --cream: #fffaf2;
  --cream-dark: #f5ebe0;
  --white: #ffffff;
  --text: #29221d;
  --text-soft: #4a413a;
  --muted: #756d66;
  --border: #eadfd4;
  --border-soft: #f2e8de;
  --success: #1f7a4d;
  --danger: #c0392b;
  --info: #2c5aa0;
  --shadow-sm: 0 4px 14px rgba(65, 35, 15, 0.06);
  --shadow-md: 0 10px 30px rgba(65, 35, 15, 0.1);
  --shadow-lg: 0 18px 48px rgba(65, 35, 15, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --header-height: 80px;
  --container: 1360px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--maroon);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary);
}

h1, h2, h3, h4, h5, h6,
.heading-font {
  font-family: var(--font-heading);
  color: var(--maroon);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-soft);
}

.text-muted-bp {
  color: var(--muted) !important;
}

.container-bp {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.section {
  padding: 70px 0;
}

.section-sm {
  padding: 48px 0;
}

.bg-cream {
  background: var(--cream);
}

.bg-white {
  background: var(--white);
}

.bg-maroon {
  background: var(--maroon);
}

.bg-primary-soft {
  background: var(--primary-soft);
}

.bg-gold-soft {
  background: var(--gold-soft);
}

/* ---------- Announcement ---------- */
.announcement-bar {
  background: linear-gradient(90deg, #4b0015 0%, #650018 50%, #4b0015 100%);
  color: #FFFDF8;
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
  font-family: var(--font-body);
  border-bottom: 1px solid rgba(212, 162, 39, 0.25);
}

.announcement-bar .sparkle {
  color: #D5A227;
  margin-right: 4px;
}

.announcement-bar a {
  color: #FFEAA7;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 6px;
  transition: color 0.2s ease;
}

.announcement-bar a:hover {
  color: #FFFFFF;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 162, 39, 0.18);
  box-shadow: 0 4px 20px rgba(80, 30, 20, 0.04);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F39C12 0%, #D4AF37 100%);
  display: grid;
  place-items: center;
  color: #380511;
  box-shadow: 0 4px 14px rgba(243, 156, 18, 0.35);
  flex-shrink: 0;
}

.brand-mark i {
  font-size: 22px;
}

.brand-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #650018;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
}

.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 9.5px;
  color: #B8860B;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-wrap: nowrap;
}

.main-nav a {
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #555555;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.main-nav a:hover {
  color: #650018;
  background: rgba(212, 162, 39, 0.12);
}

.main-nav a.active {
  color: #650018;
  background: #FFF2DF;
  border: 1px solid rgba(212, 162, 39, 0.45);
  font-weight: 600;
  padding: 6px 14px;
  box-shadow: 0 2px 8px rgba(212, 162, 39, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.city-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  border: 1.5px solid rgba(212, 162, 39, 0.35);
  background: #FFFFFF;
  color: #3E302C;
  border-radius: 50px;
  padding: 0 14px;
  font-size: 13.5px;
  font-weight: 500;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.city-btn:hover {
  border-color: #F56600;
  color: #F56600;
  background: #FFF9F0;
}

.btn-header-book {
  background: linear-gradient(135deg, #F56600 0%, #D45B00 100%);
  border: none;
  color: #FFFFFF !important;
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 14px rgba(245, 102, 0, 0.32);
  transition: all var(--transition);
}

.btn-header-book:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 102, 0, 0.42);
}
}

.city-btn:hover,
.icon-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}

.icon-btn {
  width: 42px;
  padding: 0;
  position: relative;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.mobile-toggler {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  color: var(--maroon);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border-soft);
  padding: 12px 0 18px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 10px 4px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text);
  font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.25rem;
  transition: all var(--transition);
}

.btn-primary,
.btn-bp-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--primary-dark);
  --bs-btn-hover-border-color: var(--primary-dark);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--primary-dark);
  --bs-btn-active-border-color: var(--primary-dark);
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(243, 107, 10, 0.28);
}

.btn-primary:hover,
.btn-bp-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-maroon,
.btn-bp-maroon {
  background: var(--maroon);
  border-color: var(--maroon);
  color: #fff;
}

.btn-maroon:hover,
.btn-bp-maroon:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
  color: #fff;
}

.btn-outline-maroon,
.btn-bp-outline {
  background: transparent;
  border: 1.5px solid var(--maroon);
  color: var(--maroon);
}

.btn-outline-maroon:hover,
.btn-bp-outline:hover {
  background: var(--maroon);
  color: #fff;
}

.btn-outline-primary-bp {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

.btn-outline-primary-bp:hover {
  background: var(--primary);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: #b07f16;
  border-color: #b07f16;
  color: #fff;
}

.btn-lg-bp {
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

.btn-sm-bp {
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
}

/* ---------- Badges ---------- */
.badge-bp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

.badge-gold {
  background: var(--gold-soft);
  color: #8a6a12;
}

.badge-primary {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.badge-maroon {
  background: var(--maroon-soft);
  color: var(--maroon);
}

.badge-success-bp {
  background: #e8f7ef;
  color: var(--success);
}

.badge-verified {
  background: #e8f7ef;
  color: var(--success);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
}

.badge-new {
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}

/* ---------- Forms ---------- */
.form-label {
  font-weight: 560;
  color: var(--text);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-control,
.form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  min-height: 48px;
  background: var(--white);
  color: var(--text);
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(243, 107, 10, 0.15);
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap .form-control,
.input-icon-wrap .form-select {
  padding-left: 42px;
}

.input-icon-wrap > i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  z-index: 2;
  pointer-events: none;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* ---------- Cards ---------- */
.card-bp {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.card-bp:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-bp-body {
  padding: 18px;
}

.card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #f3e2cf, #e8c9a4 45%, #d7a56a);
}

.card-media.ratio-4x3 {
  aspect-ratio: 4 / 3;
}

.card-media.ratio-16x10 {
  aspect-ratio: 16 / 10;
}

.card-media img,
.img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-placeholder {
  display: grid;
  place-items: center;
  color: rgba(101, 0, 25, 0.45);
  text-align: center;
  padding: 16px;
  font-size: 13px;
  font-weight: 500;
}

.img-placeholder i {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
  color: rgba(201, 151, 43, 0.8);
}

.img-placeholder.hero-ph {
  background:
    linear-gradient(120deg, rgba(101, 0, 25, 0.55), rgba(243, 107, 10, 0.35)),
    radial-gradient(circle at 70% 40%, #f4c27a, #8b4513 60%, #3d0010);
  color: #fff;
  min-height: 100%;
}

.img-placeholder.avatar-ph {
  border-radius: 50%;
  background: linear-gradient(145deg, #f8d9b0, #e0a55a);
}

.price-text {
  color: var(--maroon);
  font-weight: 700;
  font-size: 1.05rem;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.rating span {
  color: var(--muted);
  font-weight: 500;
}

/* Pandit / Astrologer card */
.expert-card .card-media {
  aspect-ratio: 1 / 1.05;
}

/* ---------- Popular Pandits Showcase Panel ---------- */
.pandits-showcase-panel {
  background: linear-gradient(135deg, #FFFAF2 0%, #FFF5E9 50%, #FFF8F1 100%);
  border: 1.5px solid #F1E0C6;
  border-radius: 24px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.07);
}

.pandits-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  position: relative;
  z-index: 3;
}

.spiritual-flourish-ornament {
  color: #D4AF37;
  font-size: 0.95rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.spiritual-flourish-ornament .line {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37);
}

.spiritual-flourish-ornament .line:last-child {
  background: linear-gradient(90deg, #D4AF37, transparent);
}

.pandits-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 2.3vw, 2.25rem);
  font-weight: 700;
  color: #4B0D1E;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.pandits-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: #6C584C;
  margin: 0;
}

.pandits-view-all {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #E08518;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pandits-view-all:hover {
  color: #B86505;
  gap: 10px;
}

/* 4 Pandits Grid */
.pandits-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 3;
}

.popular-pandit-card {
  background: #FFFFFF;
  border: 1.5px solid #F1E0C6;
  border-radius: 20px;
  padding: 24px 18px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.06);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Circular Avatar Wrap with Mandala Halo */
.pandit-avatar-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-mandala-halo {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.2px dashed rgba(212, 175, 55, 0.45);
  pointer-events: none;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.avatar-mandala-halo::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px dotted rgba(212, 175, 55, 0.25);
}

.pandit-avatar-circle {
  width: 114px;
  height: 114px;
  border-radius: 50%;
  border: 3px solid #D4AF37;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 2;
  background: #FFF5DC;
}

.pandit-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.35s ease;
}

/* Green Shield Verification Badge */
.pandit-verified-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 3;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #27AE60;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  box-shadow: 0 3px 8px rgba(39, 174, 96, 0.4);
}

/* Card Information */
.pandit-card-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.pandit-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #4B0D1E;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.pandit-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  margin-bottom: 10px;
  color: #333333;
}

.pandit-rating strong {
  font-weight: 600;
  color: #2D0A3E;
}

.pandit-rating .reviews-count {
  color: #6C584C;
  font-size: 0.8rem;
  font-weight: 400;
}

.pandit-divider-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #D4AF37;
  font-size: 0.45rem;
  margin: 0 auto 10px;
  width: 80px;
  opacity: 0.85;
}

.pandit-divider-line span {
  flex: 1;
  height: 1px;
  background: #D4AF37;
}

/* Experience & Languages */
.pandit-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  color: #555555;
  flex-wrap: wrap;
}

.pandit-meta-row .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.pandit-meta-row .meta-item i {
  color: #D4AF37;
  font-size: 0.9rem;
}

/* Actions Row: Book Now + Profile Button */
.pandit-actions-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
}

.pandit-btn-book {
  flex: 1;
  background: linear-gradient(135deg, #4B0D1E 0%, #380511 100%);
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(75, 13, 30, 0.25);
  transition: all 0.3s ease;
}

.pandit-btn-book:hover {
  background: linear-gradient(135deg, #6B132B 0%, #4B0D1E 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(75, 13, 30, 0.38);
}

.pandit-btn-profile {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid #D4AF37;
  background: #FFFDF9;
  color: #4B0D1E;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.pandit-btn-profile:hover {
  background: #FFF5E6;
  border-color: #F39C12;
  color: #D4AF37;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

/* Card Hover Interactions */
.popular-pandit-card:hover {
  transform: translateY(-5px);
  border-color: #F39C12;
  box-shadow: 0 14px 32px rgba(243, 156, 18, 0.18);
}

.popular-pandit-card:hover .avatar-mandala-halo {
  transform: scale(1.08) rotate(15deg);
  border-color: #F39C12;
}

.popular-pandit-card:hover .pandit-avatar-circle img {
  transform: scale(1.06);
}

.expert-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 13px;
  color: var(--muted);
  margin: 10px 0;
}

.expert-meta i {
  color: var(--gold);
  margin-right: 4px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 12px;
}

.tag {
  background: var(--cream-dark);
  color: var(--text-soft);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
}

/* Product card */
.product-card .card-media {
  aspect-ratio: 1 / 1;
}

.product-card .old-price {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.85rem;
  margin-left: 6px;
}

.discount-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--maroon);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 8px;
  z-index: 2;
}

/* Quick Services Section & Nav Grid Panel */
.quick-services-section {
  padding: 30px 0 34px;
  background-color: var(--cream);
  position: relative;
}

.services-panel {
  background: #ffffff;
  border-radius: 26px;
  border: 1.5px solid rgba(201, 151, 43, 0.22);
  padding: 22px 20px;
  box-shadow: 0 14px 36px rgba(101, 0, 25, 0.05);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.service-card {
  text-align: center;
  padding: 16px 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1.2px solid rgba(201, 151, 43, 0.16);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(101, 0, 25, 0.02);
  text-decoration: none;
  transition: all var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 10px 24px rgba(243, 107, 10, 0.14);
  background: #fffdfa;
}

.service-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(201, 151, 43, 0.20);
  box-shadow: 0 4px 14px rgba(65, 35, 15, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
  transition: all var(--transition);
}

.service-icon img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform var(--transition);
}

.service-card:hover .service-icon {
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(243, 107, 10, 0.22);
  transform: scale(1.05);
}

.service-card:hover .service-icon img {
  transform: scale(1.04);
}

.service-card span {
  display: block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: #2D211B;
  line-height: 1.2;
  transition: color var(--transition);
  margin-top: 2px;
  white-space: nowrap;
}

.service-card:hover span {
  color: var(--primary);
}

/* ---------- Popular Pujas Premium Section ---------- */
.popular-pujas-section {
  padding: 52px 0 58px;
  background-color: var(--cream);
  position: relative;
}

.popular-pujas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.puja-premium-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid rgba(201, 151, 43, 0.22);
  box-shadow: 0 10px 28px rgba(101, 0, 25, 0.05);
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  height: 100%;
}

.puja-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(243, 107, 10, 0.16);
  border-color: var(--primary);
}

.puja-card-media {
  position: relative;
  width: 100%;
  height: 184px;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  background: #fdf5ea;
}

.puja-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.puja-premium-card:hover .puja-card-media img {
  transform: scale(1.06);
}

.puja-badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(201, 151, 43, 0.35);
  box-shadow: 0 6px 16px rgba(65, 35, 15, 0.12);
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #c9972b;
  z-index: 3;
  transition: all var(--transition);
}

.puja-premium-card:hover .puja-badge-icon {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 6px 18px rgba(243, 107, 10, 0.25);
  transform: translateX(-50%) scale(1.08);
}

.puja-card-body {
  padding: 34px 16px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.puja-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 2px;
  line-height: 1.25;
}

.puja-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(201, 151, 43, 0.7);
  font-size: 11px;
  margin: 4px 0 8px;
}

.puja-divider::before,
.puja-divider::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 151, 43, 0.5), transparent);
}

.puja-card-desc {
  font-size: 12.5px;
  color: #6a5a50;
  line-height: 1.45;
  margin-bottom: 14px;
  flex-grow: 1;
}

.puja-price-tag {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 14px;
}

.puja-price-tag span {
  font-weight: 500;
  color: #7a6a60;
  margin-right: 4px;
  font-size: 13.5px;
}

.puja-book-btn {
  border: 1.5px solid rgba(243, 107, 10, 0.65);
  background: transparent;
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: all var(--transition);
  display: inline-block;
  width: 100%;
}

.puja-book-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(243, 107, 10, 0.3);
}

/* Package card */
.package-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--white);
  height: 100%;
  position: relative;
}

.package-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.package-card .pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

/* Testimonial */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.testimonial-card .quote {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-user .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

/* ---------- Section headings ---------- */
.section-head {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
}

.section-head.left {
  text-align: left;
}

.section-head h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: 8px;
}

.section-head p {
  max-width: 620px;
  margin: 0 auto;
}

.section-head.left p {
  margin-left: 0;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--gold);
}

.section-head.left .ornament {
  justify-content: flex-start;
}

.ornament::before,
.ornament::after {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-link {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumb-bp {
  background: transparent;
  padding: 16px 0 0;
  margin: 0;
}

.breadcrumb-bp .breadcrumb-item,
.breadcrumb-bp .breadcrumb-item a {
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb-bp .breadcrumb-item.active {
  color: var(--maroon);
  font-weight: 560;
}

.breadcrumb-bp .breadcrumb-item + .breadcrumb-item::before {
  color: var(--gold);
}

/* ---------- Page hero / banners ---------- */
.page-hero {
  padding: 36px 0 28px;
  background:
    linear-gradient(180deg, #fff6ea 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--border-soft);
}

.page-hero h1 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

/* ---------- Hero Section (Exact Reference Reproduction) ---------- */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #FFFDF8 0%, #FFF8ED 50%, #FFF3E1 100%);
  padding: 34px 0 28px;
  overflow: hidden;
}

/* Background Ambient Ornaments */
.hero-bg-ornament {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-ornament.left-bells {
  left: 12px;
  top: 0;
}

.hero-bg-ornament.left-mandala {
  left: -50px;
  bottom: 20px;
}

/* Hero Stage (Central Panoramic Visual Blend) */
.hero-stage {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
}

/* Panoramic Pandit Ji Visual positioned in center/overlap */
.hero-backdrop-visual {
  position: absolute;
  top: -10px;
  bottom: -5px;
  left: 33%;
  width: 44%;
  max-width: 580px;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-panoramic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  -webkit-mask-image: radial-gradient(ellipse 65% 65% at 50% 50%, black 42%, transparent 86%);
  mask-image: radial-gradient(ellipse 65% 65% at 50% 50%, black 42%, transparent 86%);
  filter: drop-shadow(0 10px 30px rgba(101, 0, 24, 0.08));
}

/* Hero Content Row */
.hero-content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 3;
}

/* Left Column */
.hero-left-column {
  max-width: 440px;
  width: 37%;
  position: relative;
  z-index: 4;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 166, 42, 0.4);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #650018;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(212, 166, 42, 0.1);
}

.badge-shield-icon {
  color: #D4A62A;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.hero-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.15rem, 2.7vw, 2.9rem);
  font-weight: 700;
  color: #650018;
  line-height: 1.12;
  margin: 0 0 6px;
  letter-spacing: -0.015em;
}

.text-orange-gradient {
  background: linear-gradient(135deg, #F56600 0%, #E65100 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-title-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #D4A62A;
  font-size: 0.72rem;
  margin: 8px 0 12px;
  width: 90px;
  opacity: 0.8;
}

.hero-title-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #D4A62A, transparent);
}

.hero-title-divider .line:first-child {
  background: linear-gradient(90deg, transparent, #D4A62A);
}

.hero-description {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: #40332D;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 400px;
}

/* 3 Trust Stats Row */
.hero-trust-stats-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-trust-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFF5E5;
  border: 1.5px solid #D4A62A;
  color: #650018;
  display: grid;
  place-items: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(212, 166, 42, 0.15);
  flex-shrink: 0;
}

.stat-info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.stat-info strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #650018;
}

.stat-info span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: #706054;
  white-space: nowrap;
}

/* Right Column: Floating Booking Card */
.hero-right-column {
  position: relative;
  z-index: 4;
  margin-left: auto;
  width: 31%;
  min-width: 320px;
  max-width: 360px;
}

.hero-booking-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 166, 42, 0.35);
  border-radius: 24px;
  padding: 20px 22px 18px;
  box-shadow: 0 16px 45px rgba(75, 0, 19, 0.08), 0 4px 14px rgba(212, 166, 42, 0.05);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-booking-card:hover {
  box-shadow: 0 24px 56px rgba(75, 0, 19, 0.12), 0 6px 20px rgba(212, 166, 42, 0.1);
}

.booking-card-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #650018;
  margin: 0 0 2px;
}

.booking-card-heading .sparkle {
  color: #D4A62A;
  font-size: 0.95rem;
}

.booking-header-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #D4A62A;
  font-size: 0.65rem;
  margin-bottom: 14px;
  opacity: 0.75;
  width: 60px;
  margin-left: auto;
  margin-right: auto;
}

.booking-header-divider .line {
  flex: 1;
  height: 1px;
  background: #D4A62A;
}

.booking-field-wrap {
  position: relative;
  margin-bottom: 10px;
}

.booking-field-wrap .field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  z-index: 2;
  pointer-events: none;
}

.booking-input,
.booking-select {
  width: 100%;
  height: 44px;
  min-height: 44px;
  border: 1.5px solid #E8DCCE;
  border-radius: 12px;
  padding: 0.45rem 0.85rem 0.45rem 38px;
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
  color: #333333;
  background-color: #FAFAFA;
  transition: all 0.25s ease;
}

.booking-input:focus,
.booking-select:focus {
  border-color: #F56600;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(245, 102, 0, 0.12);
  outline: none;
}

.hero-find-pandit-btn {
  background: linear-gradient(135deg, #F56600 0%, #D45B00 100%);
  color: #FFFFFF !important;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  margin-top: 4px;
  box-shadow: 0 6px 18px rgba(245, 102, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-find-pandit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 102, 0, 0.45);
}

.booking-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  color: #635347;
}

.customer-avatars-cluster {
  display: flex;
  align-items: center;
}

.customer-avatars-cluster img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #FFFFFF;
  object-fit: cover;
  margin-left: -7px;
}

.customer-avatars-cluster img:first-child {
  margin-left: 0;
}

.customer-proof-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Integrated Bottom Trust Strip */
.hero-bottom-trust-strip {
  background: linear-gradient(135deg, #4b0013 0%, #35000c 60%, #240008 100%);
  border: 1.5px solid rgba(212, 166, 42, 0.35);
  border-radius: 22px;
  padding: 18px 28px;
  margin-top: 30px;
  box-shadow: 0 12px 36px rgba(75, 0, 19, 0.18);
  position: relative;
  z-index: 4;
}

.hero-trust-strip-col {
  position: relative;
  padding: 6px 14px;
}

.hero-trust-strip-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: radial-gradient(circle, rgba(212, 162, 39, 0.45) 0%, transparent 100%);
}

.hero-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-strip-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #D5A227;
  background: rgba(212, 162, 39, 0.15);
  color: #FFEAA7;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(212, 162, 39, 0.2);
  transition: transform 0.3s ease;
}

.hero-strip-item:hover .hero-strip-icon {
  transform: scale(1.08) rotate(6deg);
}

.hero-strip-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-strip-text strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.hero-strip-text span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- Stats bar (Premium Maroon) ---------- */
.stats-bar {
  background: linear-gradient(90deg, #450010 0%, #5e0018 35%, #540015 65%, #3e000e 100%);
  color: #fff;
  padding: 42px 0 38px;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: center;
}

.stat-item {
  text-align: center;
  padding: 6px 12px;
}

.stat-item i {
  color: #e5b342;
  font-size: 1.65rem;
  display: inline-block;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.stat-item strong {
  display: block;
  font-size: clamp(1.85rem, 2.3vw, 2.35rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.stat-item strong sup {
  font-size: 1.25rem;
  font-weight: 600;
  top: -0.4em;
  margin-left: 1px;
}

.stat-item span {
  display: block;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 6px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* ---------- Special Festive Offer Banner ---------- */
.festive-offer-banner,
.offer-banner {
  background: radial-gradient(circle at 50% 50%, #5a0e20 0%, #430915 45%, #2c040d 85%, #1e0208 100%) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.45) !important;
  border-radius: 24px !important;
  color: #fff !important;
  padding: 36px 40px !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 16px 40px rgba(44, 4, 13, 0.35), inset 0 0 60px rgba(0, 0, 0, 0.4) !important;
}

/* Subtle corner filigree / mandala watermarks */
.offer-bg-mandala {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.12);
  pointer-events: none;
  z-index: 1;
}

.offer-bg-mandala::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dotted rgba(212, 175, 55, 0.15);
}

.offer-bg-mandala::after {
  content: "";
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.08);
}

.mandala-left {
  top: -80px;
  left: -80px;
}

.mandala-right {
  bottom: -80px;
  right: -80px;
}

/* Hanging diya decorations */
.offer-hang-deco {
  position: absolute;
  top: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.offer-hang-deco.hang-left {
  left: 20px;
}

.offer-hang-deco.hang-right {
  right: 20px;
  transform: scaleX(-1);
}

/* 3-Column Content Layout */
.offer-content-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 1.05fr;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 3;
}

/* Left Column */
.offer-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.offer-pill-badge {
  background: #E8C872;
  color: #3B050D;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(232, 200, 114, 0.25);
  margin-bottom: 8px;
}

.offer-pill-badge .badge-star {
  font-size: 0.95rem;
  color: #3B050D;
}

.offer-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.1rem, 2.7vw, 2.9rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 10px 0 6px;
  letter-spacing: -0.01em;
}

.offer-headline .highlight-gold {
  color: #D4AF37;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
}

/* Delicate Gold Ornament Line */
.offer-ornament-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 16px;
  width: 100%;
  max-width: 240px;
  opacity: 0.85;
}

.offer-ornament-line .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.85));
}

.offer-ornament-line .line:last-child {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.85), rgba(212, 175, 55, 0.1));
}

.offer-ornament-line .diamond {
  color: #D4AF37;
  font-size: 0.55rem;
}

.offer-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 22px;
  max-width: 330px;
}

.offer-cta-button {
  background: linear-gradient(135deg, #F4D06F 0%, #D4AF37 55%, #B8860B 100%);
  color: #3B050D;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 10px 8px 22px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-cta-button .offer-cta-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #3B050D;
  color: #F4D06F;
  display: inline-grid;
  place-items: center;
  font-size: 0.9rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.offer-cta-button:hover {
  transform: translateY(-2px);
  color: #240208;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #FFE28A 0%, #E5BE43 55%, #C79515 100%);
}

.offer-cta-button:hover .offer-cta-icon {
  transform: translateX(4px);
  background: #240208;
}

/* Center Column */
.offer-center-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.offer-center-visual {
  position: relative;
  width: 100%;
  max-width: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.diya-center-img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
  transition: transform 0.4s ease;
}

.festive-offer-banner:hover .diya-center-img {
  transform: scale(1.03);
}

/* Right Column: 3 Feature Cards */
.offer-right-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.offer-feature-card {
  background: rgba(36, 4, 12, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.2px solid rgba(212, 175, 55, 0.32);
  border-radius: 20px;
  padding: 18px 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Golden Circular Container for Line Icons */
.feature-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #D4AF37;
  display: grid;
  place-items: center;
  color: #D4AF37;
  font-size: 1.4rem;
  margin-bottom: 10px;
  background: rgba(212, 175, 55, 0.06);
  transition: all 0.3s ease;
}

.offer-feature-card .feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 4px;
  letter-spacing: 0.01em;
}

.offer-feature-card .feature-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* Wide bottom card for Verified Pandits */
.offer-feature-card.feature-card-wide {
  grid-column: 1 / -1;
  padding: 16px 20px;
  text-align: left;
}

.offer-feature-card.feature-card-wide .feature-card-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.offer-feature-card.feature-card-wide .feature-icon-circle {
  font-size: 1.45rem;
  margin-bottom: 0;
  flex-shrink: 0;
}

.offer-feature-card.feature-card-wide .feature-text {
  flex: 1;
}

.offer-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.75);
  background: rgba(54, 7, 18, 0.75);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35), 0 0 16px rgba(212, 175, 55, 0.18);
}

.offer-feature-card:hover .feature-icon-circle {
  transform: scale(1.08);
  border-color: #FFF275;
  color: #FFF275;
  background: rgba(212, 175, 55, 0.15);
}

/* ---------- Spiritual Consultations Section ---------- */
.spiritual-consultations-section {
  position: relative;
  background: radial-gradient(circle at 50% 15%, #FFFDF7 0%, #FFF9EF 60%, #FFF5E6 100%);
}

.consultations-header {
  margin-bottom: 40px;
}

.consult-sun-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
  color: #D4AF37;
  font-size: 1.1rem;
}

.consult-sun-ornament .line {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37);
}

.consult-sun-ornament .line:last-child {
  background: linear-gradient(90deg, #D4AF37, transparent);
}

.consult-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 2.6vw, 2.75rem);
  font-weight: 700;
  color: #4B0D1E;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.consult-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.96rem;
  color: #6C584C;
  margin: 0 0 10px;
}

.consult-header-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #D4AF37;
  font-size: 0.8rem;
  opacity: 0.85;
}

.consult-header-divider .line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37);
}

.consult-header-divider .line:last-child {
  background: linear-gradient(90deg, #D4AF37, transparent);
}

/* Base Spiritual Consult Card */
.spiritual-consult-card {
  border-radius: 24px;
  padding: 32px 28px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.08);
}

/* Card Medallion Badge */
.card-medallion {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease;
}

.card-medallion img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(184, 134, 11, 0.18));
}

/* Sparkle Accents */
.card-sparkle-decor {
  position: absolute;
  top: 36px;
  right: 28px;
  color: #D4AF37;
  font-size: 1.15rem;
  opacity: 0.85;
  pointer-events: none;
  z-index: 2;
}

.card-sparkle-decor.left {
  right: auto;
  left: 28px;
}

/* Card Content Body */
.card-content-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.consult-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.consult-divider-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #D4AF37;
  font-size: 0.45rem;
  margin: 0 auto 12px;
  width: 120px;
  opacity: 0.85;
}

.consult-divider-line span {
  flex: 1;
  height: 1px;
  background: #D4AF37;
}

.consult-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: center;
  margin: 0 0 20px;
  min-height: 42px;
}

/* Feature Bullet Points */
.consult-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consult-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
}

.consult-feature-list .feat-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Consult CTA Buttons */
.consult-btn {
  margin-top: auto;
  align-self: flex-start;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 14px 10px 22px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 3;
}

.consult-btn .btn-arrow-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #FFFFFF;
  display: inline-grid;
  place-items: center;
  font-size: 0.82rem;
  transition: transform 0.3s ease;
}

.consult-btn:hover {
  transform: translateY(-2px);
}

.consult-btn:hover .btn-arrow-circle {
  transform: translateX(3px);
}

/* Card 1: Astrology (Cream/Light Theme) */
.spiritual-consult-card.card-astrology {
  background: linear-gradient(175deg, #FFFDF9 0%, #FFF8EE 100%);
  border: 1.5px solid #F1E0C6;
}

.card-astrology .consult-card-title {
  color: #4B0D1E;
}

.card-astrology .consult-card-desc {
  color: #6C584C;
}

.card-astrology .consult-feature-list li {
  color: #3A0813;
}

.card-astrology .consult-feature-list .feat-icon {
  background: #5A0E20;
  color: #FFEAA7;
}

.btn-maroon-pill {
  background: linear-gradient(135deg, #5A0E20 0%, #3B050D 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(90, 14, 32, 0.3);
}

.btn-maroon-pill .btn-arrow-circle {
  color: #5A0E20;
}

.btn-maroon-pill:hover {
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(90, 14, 32, 0.45);
}

/* Card 2: Daily Horoscope (Featured Cosmic Dark Purple / Indigo) */
.spiritual-consult-card.card-horoscope.featured-cosmic {
  background: linear-gradient(175deg, #2D0A3E 0%, #1A0426 60%, #0E0117 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 16px 40px rgba(45, 10, 62, 0.45), 0 0 25px rgba(212, 175, 55, 0.12);
}

.card-horoscope .consult-card-title {
  color: #FFFFFF;
}

.card-horoscope .consult-card-desc {
  color: rgba(255, 255, 255, 0.85);
}

.card-horoscope .consult-feature-list li {
  color: rgba(255, 255, 255, 0.95);
}

.card-horoscope .consult-feature-list .feat-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #FFEAA7;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.btn-saffron-pill {
  background: linear-gradient(135deg, #FF7B00 0%, #E65100 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(230, 81, 0, 0.4);
}

.btn-saffron-pill .btn-arrow-circle {
  color: #E65100;
}

.btn-saffron-pill:hover {
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(255, 123, 0, 0.55);
}

/* Card 3: Tarot (Cream/Light Theme) */
.spiritual-consult-card.card-tarot {
  background: linear-gradient(175deg, #FFFDF9 0%, #FFF8EE 100%);
  border: 1.5px solid #F1E0C6;
}

.card-tarot .consult-card-title {
  color: #4B0D1E;
}

.card-tarot .consult-card-desc {
  color: #6C584C;
}

.card-tarot .consult-feature-list li {
  color: #3A0813;
}

.card-tarot .consult-feature-list .feat-icon {
  background: #FFF0DB;
  color: #9C5203;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.btn-orange-pill {
  background: linear-gradient(135deg, #FF7B00 0%, #E65100 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(230, 81, 0, 0.35);
}

.btn-orange-pill .btn-arrow-circle {
  color: #E65100;
}

.btn-orange-pill:hover {
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(255, 123, 0, 0.5);
}

/* Bottom Right Visual Elements */
.card-bottom-visual {
  position: absolute;
  right: -6px;
  bottom: -6px;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.4s ease;
}

.card-bottom-visual.astro-visual img {
  width: 142px;
  height: 142px;
  object-fit: contain;
}

.card-bottom-visual.horoscope-visual img {
  width: 168px;
  height: 168px;
  object-fit: contain;
}

.card-bottom-visual.tarot-visual img {
  width: 155px;
  height: 155px;
  object-fit: contain;
}

/* Card Hover Interactions */
.spiritual-consult-card:hover {
  transform: translateY(-6px);
}

.spiritual-consult-card.card-astrology:hover,
.spiritual-consult-card.card-tarot:hover {
  border-color: #F39C12;
  box-shadow: 0 16px 36px rgba(243, 156, 18, 0.2);
}

.spiritual-consult-card.card-horoscope:hover {
  border-color: rgba(255, 215, 0, 0.7);
  box-shadow: 0 20px 45px rgba(45, 10, 62, 0.6), 0 0 30px rgba(212, 175, 55, 0.25);
}

.spiritual-consult-card:hover .card-medallion {
  transform: scale(1.08) rotate(3deg);
}

.spiritual-consult-card:hover .card-bottom-visual {
  transform: scale(1.05);
}

.spiritual-consult-card:hover .consult-feature-list .feat-icon {
  transform: scale(1.1);
}

/* Backward compatibility for consult-card */
.consult-card {
  border-radius: var(--radius-md);
  padding: 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

/* ---------- Shop Religious Products Showcase Panel ---------- */
.products-showcase-panel {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFF5E9 50%, #FFF8F1 100%);
  border: 1.5px solid #F1E0C6;
  border-radius: 24px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.07);
}

/* Subtle corner mandala filigree watermark */
.panel-bg-mandala {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.15);
  pointer-events: none;
  z-index: 1;
}

.panel-bg-mandala::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dotted rgba(212, 175, 55, 0.18);
}

.panel-bg-mandala.mandala-tl {
  top: -80px;
  left: -80px;
}

.panel-bg-mandala.mandala-br {
  bottom: -80px;
  right: -80px;
}

/* Hanging brass diya decorations on panel borders */
.panel-hang-deco {
  position: absolute;
  top: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.65;
}

.panel-hang-deco.hang-left {
  left: 14px;
}

.panel-hang-deco.hang-right {
  right: 14px;
  transform: scaleX(-1);
}

/* Panel Header */
.products-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  position: relative;
  z-index: 3;
}

.spiritual-crown-ornament {
  color: #D4AF37;
  font-size: 0.85rem;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.spiritual-crown-ornament .crown {
  font-size: 0.95rem;
}

.products-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 2.3vw, 2.25rem);
  font-weight: 700;
  color: #4B0D1E;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.products-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: #6C584C;
  margin: 0;
}

.products-view-all {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #E08518;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.products-view-all:hover {
  color: #B86505;
  gap: 10px;
}

/* 8 Category Circular Cards Grid */
.products-cards-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  position: relative;
  z-index: 3;
}

.product-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 6px 4px;
}

.category-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #F1E0C6;
  box-shadow: 0 6px 16px rgba(184, 134, 11, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.category-circle img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.category-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #3A0813;
  margin-bottom: 4px;
  line-height: 1.25;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.category-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #D4AF37;
  font-size: 0.45rem;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
}

.category-flourish span {
  display: inline-block;
  width: 10px;
  height: 1px;
  background: #D4AF37;
}

/* Category Hover Effects */
.product-category-card:hover {
  transform: translateY(-4px);
}

.product-category-card:hover .category-circle {
  border-color: #F39C12;
  box-shadow: 0 10px 24px rgba(243, 156, 18, 0.25), 0 0 14px rgba(243, 156, 18, 0.15);
  background: #FFFDF9;
}

.product-category-card:hover .category-circle img {
  transform: scale(1.08);
}

.product-category-card:hover .category-name {
  color: #7A1226;
}

.product-category-card:hover .category-flourish {
  opacity: 0.95;
  transform: translateY(0);
}

/* Backward compatibility for product-circle */
.product-circle-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

/* ---------- Trust features ---------- */
.trust-features {
  padding: 36px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--white);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.feature-item .ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  color: var(--maroon);
  font-size: 0.95rem;
}

.feature-item span {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- FAQ / App CTA ---------- */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--maroon);
  box-shadow: none;
  background: var(--white);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--primary-soft);
  color: var(--maroon);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--border);
}

.app-cta {
  background: linear-gradient(120deg, #fff4e8, #ffe1c2);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 150px;
}

.app-badge small {
  display: block;
  font-size: 10px;
  opacity: 0.8;
}

.app-badge strong {
  font-size: 13px;
}

/* ---------- Filters / listing ---------- */
.filter-panel {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--header-height) + 16px);
}

.filter-panel h5 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.filter-group {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}

.filter-group:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.listing-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
}

/* ---------- Profile / detail ---------- */
.profile-hero {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.profile-avatar {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0 auto;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 8px;
}

.slot-btn {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 8px;
  padding: 10px 6px;
  font-size: 13px;
  color: var(--text);
  transition: all var(--transition);
}

.slot-btn:hover,
.slot-btn.active {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.slot-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-soft);
}

.benefit-list i {
  color: var(--success);
  margin-top: 3px;
}

/* ---------- Footer ---------- */
/* ---------- Site Footer (3-Zone Premium Layout) ---------- */
.site-footer {
  background: linear-gradient(180deg, #4b0015 0%, #35000f 60%, #200008 100%);
  color: #E8D7C3;
  padding: 68px 0 24px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(243, 107, 10, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.container-footer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ZONE 1: 6-Column Main Navigation Grid */
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.95fr 0.95fr 1.05fr 0.95fr 1.25fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 32px;
}

/* Column 1: Brand */
.footer-grid-col.brand-col {
  padding-right: 6px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-height: 52px;
}

.footer-brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F39C12 0%, #D4AF37 100%);
  color: #380511;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 14px rgba(243, 156, 18, 0.35);
  flex-shrink: 0;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-brand-text strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.footer-brand-text small {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  color: #D4AF37;
  letter-spacing: 0.02em;
  margin-top: 2px;
  white-space: nowrap;
}

.footer-brand-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #D4AF37;
  font-size: 0.78rem;
  margin: 10px 0 12px;
  opacity: 0.75;
  width: 140px;
}

.footer-brand-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37);
}

.footer-brand-divider .line:last-child {
  background: linear-gradient(90deg, #D4AF37, transparent);
}

.footer-brand-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin-bottom: 16px;
}

/* Circular Social Buttons */
.footer-social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.social-circle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #E8D7C3;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-circle-btn:hover {
  background: #D4AF37;
  color: #380511;
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.45);
}

/* Compact App Download Card */
.footer-app-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  padding: 12px 14px;
  position: relative;
  overflow: hidden;
}

.footer-app-watermark {
  position: absolute;
  right: -5px;
  bottom: -5px;
  pointer-events: none;
}

.footer-app-content {
  position: relative;
  z-index: 2;
}

.footer-app-header {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.92rem;
  color: #FFEAA7;
  margin-bottom: 1px;
}

.sparkle-ico {
  color: #D4AF37;
  margin-right: 4px;
  font-size: 0.78rem;
}

.footer-app-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.footer-app-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 8px;
  padding: 4px 8px;
  color: #FFFFFF !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-store-btn:hover {
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
}

.footer-store-btn small {
  font-size: 0.52rem;
  opacity: 0.75;
  display: block;
  line-height: 1;
}

.footer-store-btn strong {
  font-size: 0.72rem;
  display: block;
  line-height: 1.1;
  font-weight: 700;
}

/* Nav Columns (Services, Shop, Company, Support) */
.footer-grid-col.nav-col {
  padding-right: 2px;
}

.footer-col-header {
  margin-bottom: 12px;
  min-height: 52px;
}

.footer-col-icon {
  color: #D4AF37;
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.footer-col-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #FFEAA7;
  margin: 0 0 4px;
}

.footer-col-divider {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #D4AF37;
  font-size: 0.65rem;
  opacity: 0.7;
  width: 45px;
}

.footer-col-divider .line {
  flex: 1;
  height: 1px;
  background: #D4AF37;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.83rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.footer-links-list a i {
  color: #D4AF37;
  font-size: 0.72rem;
  transition: transform 0.25s ease;
}

.footer-links-list a:hover {
  color: #FFEAA7;
  transform: translateX(4px);
}

.footer-links-list a:hover i {
  transform: translateX(2px);
}

/* Column 6: We're Here to Help (Right) */
.footer-grid-col.help-col {
  padding-left: 0;
}

.footer-help-card {
  background: rgba(0, 0, 0, 0.32);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 16px;
  padding: 16px 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  width: 100%;
}

.help-card-watermark {
  position: absolute;
  right: -10px;
  bottom: -10px;
  pointer-events: none;
}

.help-card-inner {
  position: relative;
  z-index: 2;
}

.help-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFEAA7;
  margin: 0 0 4px;
  white-space: nowrap;
}

.help-card-divider {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #D4AF37;
  font-size: 0.65rem;
  margin-bottom: 12px;
  width: 50px;
  opacity: 0.75;
}

.help-card-divider .line {
  flex: 1;
  height: 1px;
  background: #D4AF37;
}

.help-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.help-contact-item:last-child {
  margin-bottom: 0;
}

.help-icon-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #FFEAA7;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.help-contact-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.help-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.help-val {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

a.help-val:hover {
  color: #FFEAA7;
}

/* Multi-Language Selector Box */
.help-lang-box {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(212, 175, 55, 0.35);
}

.lang-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.lang-select-wrap:hover,
.lang-select-wrap:focus-within {
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.lang-icon-prefix {
  position: absolute;
  left: 8px;
  color: #D4AF37;
  font-size: 0.88rem;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.lang-icon-suffix {
  position: absolute;
  right: 8px;
  color: #D4AF37;
  font-size: 0.68rem;
  pointer-events: none;
  display: flex;
  align-items: center;
  opacity: 0.85;
}

.footer-lang-select {
  width: 100%;
  appearance: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  padding: 6px 22px 6px 26px;
  cursor: pointer;
  outline: none;
}

.footer-lang-select option {
  background: #3D0010;
  color: #FFFFFF;
  padding: 8px;
}

/* ZONE 2: Trust & Benefits Strip ("Why Families Trust Book Pandit Ji") */
.footer-trust-strip {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(212, 162, 39, 0.35);
  border-radius: 20px;
  padding: 24px 28px;
  margin-top: 32px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.trust-strip-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFEAA7;
  margin-bottom: 4px;
}

.trust-strip-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: center;
}

.trust-strip-card {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 6px 12px;
  transition: transform 0.25s ease;
}

.trust-strip-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: radial-gradient(circle, rgba(212, 162, 39, 0.45) 0%, transparent 100%);
}

.trust-strip-card:hover {
  transform: translateY(-2px);
}

.trust-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.06) 100%);
  border: 1.5px solid #D4AF37;
  color: #FFEAA7;
  display: grid;
  place-items: center;
  font-size: 1.18rem;
  flex-shrink: 0;
}

.trust-card-text {
  display: flex;
  flex-direction: column;
}

.trust-card-text strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 2px;
}

.trust-card-text span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.35;
}

/* ZONE 3: Legal Links + Bottom Bar */
.footer-legal-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 0 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  flex-wrap: wrap;
}

.footer-legal-bar a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-bar a:hover {
  color: #FFEAA7;
}

.footer-legal-bar .dot {
  color: #D4AF37;
  font-size: 0.65rem;
  opacity: 0.6;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  flex-wrap: wrap;
}

.footer-lotus-ico {
  color: #D4AF37;
  margin-right: 6px;
  font-size: 0.95rem;
}

.payment-badges-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.04em;
}

.pay-badge.visa {
  color: #5C95FF;
}

.pay-badge.rupay {
  color: #00BFA5;
}

.pay-badge.upi {
  color: #27AE60;
}

.pay-badge.pci {
  color: #F1C40F;
  gap: 4px;
}

.pay-badge.mastercard {
  display: inline-flex;
  align-items: center;
  padding: 3px 6px;
}

.mc-c1 {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #EB001B;
  display: inline-block;
}

.mc-c2 {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #F79E1B;
  opacity: 0.85;
  margin-left: -5px;
  display: inline-block;
}

/* ---------- Modals / Toasts ---------- */
.modal-content {
  border: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.modal-header {
  border-bottom: 1px solid var(--border-soft);
  background: var(--cream);
}

.modal-title {
  font-family: var(--font-heading);
  color: var(--maroon);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.city-option {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: left;
  transition: all var(--transition);
}

.city-option:hover,
.city-option.active {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.toast-container {
  z-index: 1090;
}

.toast-bp {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
}

/* ---------- Utilities ---------- */
.divider-soft {
  height: 1px;
  background: var(--border-soft);
  margin: 18px 0;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  z-index: 20;
}

.fade-up {
  animation: fadeUp 0.55s ease both;
}

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

.hover-lift {
  transition: transform var(--transition), box-shadow var(--transition);
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Fix typo leftover safety */
.avatar-stack span {
  background: linear-gradient(145deg, #f0c48a, #d4a05a);
}

/* ---------- How It Works Section ---------- */
.how-it-works-section {
  position: relative;
  background: radial-gradient(circle at 50% 15%, #FFFDF9 0%, #FFF8EE 55%, #FFF2DD 100%);
}

.how-it-works-header {
  margin-bottom: 36px;
}

.how-lotus-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
  color: #D4AF37;
  font-size: 1.1rem;
}

.how-lotus-ornament .line {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37);
}

.how-lotus-ornament .line:last-child {
  background: linear-gradient(90deg, #D4AF37, transparent);
}

.how-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 2.7vw, 2.85rem);
  font-weight: 700;
  color: #4B0D1E;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.how-header-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #D4AF37;
  font-size: 0.75rem;
  margin: 0 auto 6px;
  opacity: 0.85;
}

.how-header-divider .line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37);
}

.how-header-divider .line:last-child {
  background: linear-gradient(90deg, #D4AF37, transparent);
}

.how-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  color: #555555;
  margin: 0 0 8px;
}

.how-dots-decor {
  color: #D4AF37;
  font-size: 0.85rem;
  letter-spacing: 5px;
  opacity: 0.85;
}

/* 4 Steps Timeline Grid */
.how-steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  padding: 24px 0 30px;
}

.how-step-col {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Flow Connector Arrow between cards */
.step-flow-arrow {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F39C12 0%, #D48B08 100%);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
  border: 2.5px solid #FFFDF7;
  transition: transform 0.3s ease;
}

/* Base Arch Card */
.how-arch-card {
  background: #FFFFFF;
  border: 1.5px solid #F1E0C6;
  border-radius: 28px 28px 20px 20px;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  padding: 30px 20px 36px;
  box-shadow: 0 12px 30px rgba(184, 134, 11, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

/* Top Arch Crown Crest Ornament */
.arch-crown-crest {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

/* Top Step Number Badge */
.step-num-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4B0D1E 0%, #380511 100%);
  color: #FFFFFF;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: -50px auto 16px;
  border: 2.5px solid #D4AF37;
  box-shadow: 0 6px 14px rgba(75, 13, 30, 0.35);
  position: relative;
  z-index: 3;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

/* Card Body Content */
.arch-card-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
  flex: 1;
}

.step-visual-wrap {
  width: 94px;
  height: 94px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.step-visual-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: #4B0D1E;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.step-divider-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #D4AF37;
  font-size: 0.45rem;
  margin: 0 auto 10px;
  width: 80px;
  opacity: 0.85;
}

.step-divider-line span {
  flex: 1;
  height: 1px;
  background: #D4AF37;
}

.step-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

/* Bottom Watermark Silhouette */
.card-bottom-watermark {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  pointer-events: none;
  opacity: 0.85;
  display: flex;
  justify-content: center;
  z-index: 1;
  transition: transform 0.35s ease;
}

.card-bottom-watermark img {
  width: 130px;
  height: auto;
  object-fit: contain;
}

/* Sculpted Golden Pedestal Base & Emblem */
.arch-bottom-pedestal {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 24px;
  background: linear-gradient(180deg, #FDE8B5 0%, #D4AF37 50%, #B8860B 100%);
  border-radius: 0 0 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(184, 134, 11, 0.2);
}

.pedestal-emblem {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4B0D1E 0%, #380511 100%);
  border: 2px solid #FFEAA7;
  color: #FFEAA7;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  margin-top: -6px;
  box-shadow: 0 3px 8px rgba(75, 13, 30, 0.4);
}

/* Card Hover Interactions */
.how-arch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(243, 156, 18, 0.2);
  border-color: #F39C12;
}

.how-arch-card:hover .step-num-badge {
  transform: scale(1.12);
  border-color: #F39C12;
}

.how-arch-card:hover .step-visual-wrap {
  transform: scale(1.08);
}

.how-arch-card:hover .card-bottom-watermark {
  transform: scale(1.05);
}

.how-step-col:hover .step-flow-arrow {
  transform: translateY(-50%) scale(1.1);
}

/* ---------- Devotees Testimonials Section ---------- */
.devotees-testimonials-section {
  position: relative;
  background: radial-gradient(circle at 50% 15%, #FFFDF9 0%, #FFF8EE 60%, #FFF3DF 100%);
}

.testimonials-header {
  margin-bottom: 36px;
}

.testi-diya-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}

.testi-diya-ornament .line {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37);
}

.testi-diya-ornament .line:last-child {
  background: linear-gradient(90deg, #D4AF37, transparent);
}

.testi-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 2.7vw, 2.85rem);
  font-weight: 700;
  color: #4B0D1E;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.testi-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.96rem;
  color: #555555;
  margin: 0 0 8px;
}

.testi-header-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #D4AF37;
  font-size: 0.75rem;
  margin: 0 auto;
  opacity: 0.85;
}

.testi-header-divider .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #D4AF37;
}

.testi-header-divider .line {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37);
}

.testi-header-divider .line:last-child {
  background: linear-gradient(90deg, #D4AF37, transparent);
}

/* Base Devotee Card */
.devotee-card {
  background: #FFFFFF;
  border: 1.5px solid #F1E0C6;
  border-radius: 24px;
  padding: 28px 24px 26px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.devotee-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.quote-mark-icon {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  line-height: 0.9;
  color: #D4AF37;
  display: flex;
  align-items: center;
}

.devotee-stars {
  color: #F39C12;
  font-size: 0.95rem;
  display: flex;
  gap: 3px;
}

.devotee-stars .bi-star {
  color: #DDD0B8;
}

.devotee-quote {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: #444444;
  line-height: 1.62;
  margin: 0 0 16px;
  font-style: normal;
  flex: 1;
}

/* Lotus Divider */
.quote-lotus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #D4AF37;
  font-size: 0.85rem;
  margin: 0 auto 16px;
  opacity: 0.75;
  width: 100px;
}

.quote-lotus-divider .line {
  flex: 1;
  height: 1px;
  background: #D4AF37;
}

/* User Footer Row */
.devotee-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}

.devotee-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.devotee-avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #D4AF37;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  background: #FFF5DC;
  position: relative;
}

.devotee-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.35s ease;
}

.devotee-details {
  display: flex;
  flex-direction: column;
}

.devotee-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.06rem;
  font-weight: 700;
  color: #4B0D1E;
  margin: 0 0 2px;
}

.devotee-location {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: #777777;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 3px;
}

.devotee-location i {
  color: #D4AF37;
  font-size: 0.78rem;
}

.verified-customer-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  color: #27AE60;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.verified-customer-tag i {
  font-size: 0.78rem;
}

/* Diya Visual on Bottom Right */
.devotee-diya-visual {
  position: relative;
  margin-right: -10px;
  margin-bottom: -10px;
  pointer-events: none;
  transition: transform 0.35s ease;
}

.devotee-diya-visual img {
  width: 115px;
  height: auto;
  object-fit: contain;
}

/* Bottom Puja Tag */
.devotee-puja-pill {
  background: #FFF8EE;
  border: 1px solid #F1E0C6;
  border-radius: 50px;
  padding: 6px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #782800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  align-self: flex-start;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(184, 134, 11, 0.08);
}

.devotee-puja-pill i {
  color: #D4AF37;
  font-size: 0.88rem;
}

/* Card Hover */
.devotee-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(243, 156, 18, 0.2);
  border-color: #F39C12;
}

.devotee-card:hover .devotee-avatar-circle img {
  transform: scale(1.08);
}

.devotee-card:hover .devotee-diya-visual {
  transform: scale(1.06);
}

/* ---------- Trust Stats Showcase Bar ---------- */
.trust-stats-showcase-bar {
  background: linear-gradient(135deg, #FFFAF2 0%, #FFF5E9 50%, #FFF8F1 100%);
  border: 1.5px solid #F1E0C6;
  border-radius: 20px;
  padding: 22px 28px;
  margin-top: 36px;
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.07);
  position: relative;
  overflow: hidden;
}

.stat-col {
  position: relative;
}

.stat-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: radial-gradient(circle, #D4AF37 0%, rgba(212, 175, 55, 0.2) 100%);
}

.trust-stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 12px;
}

.stat-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4B0D1E 0%, #380511 100%);
  border: 2px solid #D4AF37;
  color: #FFEAA7;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 12px rgba(75, 13, 30, 0.3);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.trust-stat-item:hover .stat-icon-circle {
  transform: scale(1.08) rotate(5deg);
  border-color: #FFD700;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #4B0D1E;
  line-height: 1.1;
  margin-bottom: 2px;
}

.stat-number .stat-plus {
  color: #D48B08;
  font-size: 1.25rem;
  margin-left: 2px;
}

.stat-number .stat-denom {
  color: #666666;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #555555;
  font-weight: 500;
  white-space: nowrap;
}

/* ---------- FAQ Section ---------- */
.faq-section {
  position: relative;
  background: #FFFFFF;
}

.faq-showcase-panel {
  background: radial-gradient(circle at 80% 20%, #FFFDF8 0%, #FFF9F0 50%, #FFF5E6 100%);
  border: 1.5px solid #F1E0C6;
  border-radius: 28px;
  padding: 44px 40px 32px;
  box-shadow: 0 12px 36px rgba(184, 134, 11, 0.07);
  position: relative;
  overflow: hidden;
}

.faq-left-content {
  padding-right: 15px;
}

.faq-lotus-ornament {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #D4AF37;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.faq-lotus-ornament .line {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37);
}

.faq-lotus-ornament .line:last-child {
  background: linear-gradient(90deg, #D4AF37, transparent);
}

.faq-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 2.7vw, 2.85rem);
  font-weight: 700;
  color: #4B0D1E;
  line-height: 1.18;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.faq-header-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #D4AF37;
  font-size: 0.75rem;
  margin: 0 0 12px;
  opacity: 0.85;
}

.faq-header-divider .line {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, #D4AF37, transparent);
}

.faq-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.5;
  margin: 0 0 20px;
}

.faq-diya-artwork-wrap {
  position: relative;
  max-width: 330px;
  margin: 0 auto;
  text-align: center;
}

.faq-sacred-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 12px 24px rgba(184, 134, 11, 0.15));
  border-radius: 20px;
}

/* Accordion Customization */
.custom-faq-accordion .accordion-item {
  border: 1.5px solid #F1E0C6;
  border-radius: 20px !important;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.04);
  transition: all 0.3s ease;
}

.custom-faq-accordion .accordion-button {
  padding: 16px 20px;
  background: #FFFFFF;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #4B0D1E;
  box-shadow: none !important;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px !important;
  transition: all 0.3s ease;
}

.custom-faq-accordion .accordion-button::after {
  display: none;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #4B0D1E 0%, #300511 100%);
  color: #FFFFFF;
  border-radius: 20px 20px 0 0 !important;
}

.custom-faq-accordion .accordion-button:not(.collapsed) .faq-q-text {
  color: #FFFFFF;
}

.custom-faq-accordion .accordion-button:not(.collapsed) .faq-toggle-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}

.faq-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-shield-medallion,
.faq-circle-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.faq-shield-medallion {
  background: linear-gradient(135deg, #FFF3D6 0%, #F5D28A 100%);
  color: #4B0D1E;
  border: 2px solid #D4AF37;
  box-shadow: 0 4px 10px rgba(184, 134, 11, 0.2);
}

.faq-circle-icon-badge {
  background: #FFF5E6;
  color: #D48B08;
  border: 1.5px solid #F1E0C6;
}

.faq-q-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #4B0D1E;
  transition: color 0.3s ease;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #D4AF37;
  display: grid;
  place-items: center;
  color: #4B0D1E;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.custom-faq-accordion .accordion-body {
  background: #FFFAF2;
  padding: 18px 24px 22px;
  color: #444444;
  font-family: 'Poppins', sans-serif;
  font-size: 0.94rem;
  line-height: 1.65;
  border-top: 1px dashed rgba(212, 175, 55, 0.3);
}

.faq-body-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #D4AF37;
  font-size: 0.85rem;
  margin: 0 auto 12px;
  width: 90px;
  opacity: 0.75;
}

.faq-body-flourish .line {
  flex: 1;
  height: 1px;
  background: #D4AF37;
}

/* Bottom Trust Badges Bar */
.faq-trust-features-bar {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1.5px solid #F1E0C6;
}

.feat-col {
  position: relative;
}

.feat-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: radial-gradient(circle, #D4AF37 0%, rgba(212, 175, 55, 0.2) 100%);
}

.faq-feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 12px;
}

.faq-feat-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4B0D1E 0%, #380511 100%);
  border: 2px solid #D4AF37;
  color: #FFEAA7;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(75, 13, 30, 0.3);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-feature-item:hover .faq-feat-icon-circle {
  transform: scale(1.08) rotate(5deg);
  border-color: #FFD700;
}

.faq-feat-content {
  display: flex;
  flex-direction: column;
}

.faq-feat-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #4B0D1E;
  margin: 0 0 2px;
}

.faq-feat-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: #666666;
  margin: 0;
  white-space: nowrap;
}

/* ---------- App CTA + Newsletter Section ---------- */
.app-newsletter-section {
  position: relative;
  background: #FFFFFF;
}

.app-newsletter-showcase-panel {
  background: radial-gradient(circle at 50% 20%, #FFFDF9 0%, #FFFAF3 50%, #FFF1DF 100%);
  border: 1px solid rgba(180, 130, 40, 0.20);
  border-radius: 30px;
  padding: 46px 54px;
  box-shadow: 0 15px 45px rgba(80, 30, 20, 0.08);
  position: relative;
  overflow: hidden;
}

/* Subtle Corner Watermarks (Never Overlapping Content) */
.app-corner-watermark {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.app-corner-watermark.temple-wm {
  left: 12px;
  bottom: 8px;
}

.app-corner-watermark.bell-wm {
  right: 18px;
  top: 12px;
}

.app-corner-watermark.diya-wm {
  right: 18px;
  bottom: 8px;
}

/* Row Spacing */
.app-showcase-row {
  position: relative;
  z-index: 2;
}

/* Left Column: App CTA */
.app-cta-col {
  padding: 8px 32px 8px 10px;
  text-align: center;
}

.app-col-crest {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #D5A227;
  font-size: 1.05rem;
  margin-bottom: 6px;
  opacity: 0.85;
}

.app-col-crest .line {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D5A227);
}

.app-col-crest .line:last-child {
  background: linear-gradient(90deg, #D5A227, transparent);
}

.app-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.85rem, 2.3vw, 2.45rem);
  font-weight: 700;
  color: #720018;
  line-height: 1.18;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.app-main-title .title-highlight {
  color: #F36B0A;
  background: linear-gradient(135deg, #F36B0A 0%, #D5A227 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-header-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #D5A227;
  font-size: 0.72rem;
  margin: 0 auto 10px;
  opacity: 0.85;
}

.app-header-divider .line {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D5A227);
}

.app-header-divider .line:last-child {
  background: linear-gradient(90deg, #D5A227, transparent);
}

.app-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.55;
  margin: 0 0 20px;
}

.app-store-badges-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.app-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #720018 0%, #4D0010 100%);
  border: 1px solid rgba(213, 162, 39, 0.65);
  border-radius: 12px;
  padding: 8px 16px;
  color: #FFFFFF !important;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(114, 0, 24, 0.22);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(243, 107, 10, 0.3);
  border-color: #D5A227;
  color: #FFFFFF !important;
}

.app-download-btn .badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.badge-text small {
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
  font-family: 'Poppins', sans-serif;
}

.badge-text strong {
  font-size: 0.92rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #FFFFFF;
}

/* Center Vertical Divider (Desktop) */
.app-center-divider-col {
  position: absolute;
  left: 50%;
  top: 10%;
  bottom: 10%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 3;
}

.app-center-divider-col .v-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(180deg, transparent, rgba(213, 162, 39, 0.4) 30%, rgba(213, 162, 39, 0.4) 70%, transparent);
}

.app-center-divider-col .v-flourish {
  color: #D5A227;
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Right Column: Newsletter */
.newsletter-col {
  padding: 8px 10px 8px 32px;
}

.newsletter-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 2.1vw, 2.15rem);
  font-weight: 700;
  color: #720018;
  margin: 0 0 6px;
}

.newsletter-lotus-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #D5A227;
  font-size: 0.72rem;
  margin: 0 auto 8px;
  width: 70px;
  opacity: 0.8;
}

.newsletter-lotus-flourish .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D5A227);
}

.newsletter-lotus-flourish .line:last-child {
  background: linear-gradient(90deg, #D5A227, transparent);
}

.newsletter-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.55;
  margin: 0 0 18px;
}

.newsletter-capsule-form {
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid rgba(213, 162, 39, 0.35);
  border-radius: 16px;
  padding: 5px 6px 5px 16px;
  box-shadow: 0 4px 18px rgba(80, 30, 20, 0.06);
  transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
  border-color: #D5A227;
  box-shadow: 0 6px 22px rgba(213, 162, 39, 0.18);
}

.input-mail-icon {
  color: #D5A227;
  font-size: 1.1rem;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.newsletter-input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: #333333;
  flex: 1;
  min-width: 0;
}

.newsletter-input::placeholder {
  color: #999999;
}

.newsletter-submit-btn {
  background: linear-gradient(135deg, #F36B0A 0%, #D45B00 100%);
  border: none;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(243, 107, 10, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(243, 107, 10, 0.4);
}

/* ---------- Bottom Guarantee Ribbon ---------- */
.app-guarantee-ribbon {
  background: linear-gradient(135deg, #FFFAF2 0%, #FFF6EA 50%, #FFF9F1 100%);
  border: 1.5px solid #F1E0C6;
  border-radius: 20px;
  padding: 22px 28px;
  margin-top: 24px;
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.07);
}

.guar-col {
  position: relative;
}

.guar-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: radial-gradient(circle, #D4AF37 0%, rgba(212, 175, 55, 0.2) 100%);
}

.guar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 4px 10px;
}

.guar-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF3D6 0%, #F5D28A 100%);
  border: 2px solid #D4AF37;
  color: #782800;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 10px rgba(184, 134, 11, 0.2);
  transition: transform 0.3s ease;
}

.guar-item:hover .guar-icon-badge {
  transform: scale(1.1) rotate(6deg);
  border-color: #FFD700;
}

.guar-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #4B0D1E;
  margin: 0 0 2px;
}

.guar-divider-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #D4AF37;
  font-size: 0.7rem;
  margin: 0 auto 3px;
  width: 60px;
  opacity: 0.75;
}

.guar-divider-flourish .line {
  flex: 1;
  height: 1px;
  background: #D4AF37;
}

.guar-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  color: #666666;
  margin: 0;
}
