/* ============================================================
   PANDIT JI EXPRESS - EXACT BRAND & APP DESIGN SYSTEM
   Matches the official Desktop & Mobile App Design Screenshots
   ============================================================ */

:root {
  /* Brand Colors sampled directly from template */
  --color-maroon-deep: #430C0F;
  --color-maroon-primary: #541419;
  --color-maroon-rich: #6E1A22;
  --color-orange-primary: #F17600;
  --color-orange-deep: #D96200;
  --color-orange-light: #FFF2E8;
  --color-gold: #C59A45;
  --color-gold-light: #F7E7C4;
  --color-cream-bg: #FFFDF9;
  --color-cream-card: #FFFFFF;
  --color-card-border: #EFE6D8;
  --color-text-dark: #22150E;
  --color-text-muted: #66554B;
  --color-text-light: #948074;
  --color-rating: #FF9800;
  --color-green: #2E7D32;

  /* Typography */
  --font-heading: 'Eczar', Georgia, 'Times New Roman', serif;
  --font-body: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevation */
  --shadow-subtle: 0 2px 8px rgba(84, 20, 25, 0.06);
  --shadow-card: 0 4px 14px rgba(84, 20, 25, 0.08);
  --shadow-hover: 0 8px 24px rgba(84, 20, 25, 0.14);
  --shadow-glow: 0 0 24px rgba(241, 118, 0, 0.25);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-cream-bg);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  background: var(--color-maroon-deep);
  color: #FFFFFF;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  z-index: 99999;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--color-orange-primary);
  outline-offset: 2px;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Prevent layout shifts: images declare their own width/height in HTML */
}

.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ============================================================
   PROFESSIONAL CUSTOM VECTOR ICONS SYSTEM
   ============================================================ */
.pj-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
  flex-shrink: 0;
  line-height: 1;
}

.pj-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pj-icon-gold {
  color: var(--color-gold, #D4AF37) !important;
}

.pj-icon-maroon {
  color: var(--color-maroon, #7C2430) !important;
}

.pj-icon-orange {
  color: var(--color-orange-primary, #FF6F00) !important;
}

.pj-icon-green {
  color: #25D366 !important;
}

.pj-icon-white {
  color: #FFFFFF !important;
}

.assistance-icon-circle .pj-icon {
  width: 20px;
  height: 20px;
  color: var(--color-maroon, #7C2430);
}

.footer-contact-icon .pj-icon {
  width: 18px;
  height: 18px;
  color: var(--color-gold, #D4AF37);
}

.location-icon-box .pj-icon {
  width: 20px;
  height: 20px;
  color: #FFFFFF;
}

.category-icon-box .pj-icon {
  width: 26px;
  height: 26px;
  color: var(--color-maroon, #7C2430);
}

.mob-nav-icon .pj-icon {
  width: 22px;
  height: 22px;
}

.feature-list-item > span:first-child .pj-icon {
  width: 20px;
  height: 20px;
}

.trust-card-icon .pj-icon,
.benefit-item-icon .pj-icon {
  width: 28px;
  height: 28px;
  color: var(--color-gold, #D4AF37);
}

/* ============================================================
   TOP APP / DESKTOP HEADER (EXACT REPLICA)
   ============================================================ */
.site-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #F0E6D8;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-gold);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-maroon-primary);
  letter-spacing: 0.5px;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Center Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.desktop-nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  padding: 0.35rem 0;
}

.desktop-nav-link.active,
.desktop-nav-link:hover {
  color: var(--color-orange-primary);
}

.desktop-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-orange-primary);
  border-radius: 2px;
}

/* Right Header Assistance & CTA */
.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.assistance-box {
  display: none;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.assistance-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-orange-light);
  color: var(--color-orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.assistance-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.assistance-phone {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--color-text-dark);
}

.assistance-sub {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.btn-header-book {
  display: none;
  background-color: var(--color-maroon-primary);
  color: #FFFFFF;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(84, 20, 25, 0.2);
  transition: all 0.2s ease;
}

.btn-header-book:hover {
  background-color: var(--color-maroon-deep);
  transform: translateY(-1px);
}

/* Mobile Header Controls */
.mobile-menu-btn, .mobile-bell-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--color-text-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
  line-height: 1;
}

.bell-badge {
  position: absolute;
  top: 1px;
  right: -2px;
  background-color: var(--color-orange-primary);
  color: #FFFFFF;
  font-size: 0.6rem;
  font-weight: 800;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Off-canvas Mobile Drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: #FFFDF9;
  z-index: 10001;
  box-shadow: 4px 0 25px rgba(0, 0, 0, 0.25);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  visibility: hidden;
}

.mobile-drawer.open {
  left: 0;
  visibility: visible;
}

.mobile-drawer-header {
  padding: 1.25rem 1.25rem;
  background: #FFFFFF;
  border-bottom: 1px solid #F0E6D8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-maroon-primary);
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  padding: 0.75rem 0;
  margin: 0;
  flex: 1;
}

.mobile-nav-item a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  border-bottom: 1px solid #FAF4EC;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a:active {
  background-color: var(--color-orange-light);
  color: var(--color-orange-primary);
}

.mobile-drawer-footer {
  padding: 1.25rem;
  background: #FAF4EC;
  border-top: 1px solid #F0E6D8;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (min-width: 992px) {
  .mobile-drawer,
  .drawer-backdrop {
    display: none !important;
  }
}


/* ============================================================
   HERO SECTION (PIXEL PERFECT REPLICA OF DESKTOP SCREENSHOT)
   ============================================================ */
.hero-wrapper {
  background-color: #FFF8F0;
  background-image:
    linear-gradient(
      to right,
      rgba(255, 248, 240, 0.92) 0%,
      rgba(255, 248, 240, 0.82) 38%,
      rgba(255, 248, 240, 0.45) 55%,
      rgba(255, 248, 240, 0.08) 70%,
      transparent 82%
    ),
    url('../images/hero-bg-master.jpg');
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2.25rem 0 0;
  border-bottom: 1px solid var(--color-card-border);
  position: relative;
  overflow: hidden;
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

/* Left Hero Column */
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background-color: #FFF2E8;
  border: 1px solid #FFD9BC;
  color: #D96200;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-main-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.18;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-main-title .highlight-orange {
  color: var(--color-orange-primary);
  position: relative;
}

.hero-sub-copy {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

/* Action Buttons */
.hero-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-pill-orange {
  background: linear-gradient(135deg, #F17600, #E06500);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 1.85rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(241, 118, 0, 0.35);
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-pill-orange:hover {
  background: linear-gradient(135deg, #FF820C, #F17600);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(241, 118, 0, 0.45);
}

.btn-pill-outline {
  background-color: #FFFFFF;
  color: var(--color-text-dark);
  border: 1.5px solid var(--color-card-border);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-subtle);
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-pill-outline:hover {
  border-color: var(--color-orange-primary);
  color: var(--color-orange-primary);
}

.play-circle-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-orange-light);
  color: var(--color-orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* 3 Trust points below hero buttons (from desktop screenshot) */
.hero-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.hero-trust-item .trust-icon-dot {
  color: var(--color-orange-primary);
  font-size: 0.9rem;
}

/* Right Hero Visual Column */
.hero-top-split-row {
  display: block;
}

/* Hero left column — no background card needed, gradient overlay handles readability */
.hero-left-col {
  position: relative;
  z-index: 3;
}

.hero-mobile-pandit-thumb {
  display: none !important;
}

.desktop-only-hero-visual {
  display: flex !important;
}

.hero-visual-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-pandit-frame {
  position: relative;
  width: 100%;
  max-width: 580px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(84, 20, 25, 0.16);
  border: 4px solid #FFFFFF;
  background: #FFF8F0;
}

.hero-pandit-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Hero Values Pillars (Top Right) - Round Shaped Badges for High Visibility */
.hero-values-top-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: flex-end;
  margin-bottom: 1rem;
  position: relative;
  z-index: 5;
}

.hero-value-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-value-pill:hover {
  transform: translateY(-3px);
}

.hero-value-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid var(--color-gold);
  box-shadow: 0 2px 8px rgba(84, 20, 25, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-maroon-primary);
  flex-shrink: 0;
}

.hero-value-icon svg {
  width: 15px;
  height: 15px;
}

.hero-value-text {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-maroon-primary);
  background: rgba(255, 255, 255, 0.95);
  padding: 2px 8px;
  border-radius: 50px;
  border: 1px solid var(--color-gold);
  box-shadow: 0 1px 5px rgba(84, 20, 25, 0.1);
  white-space: nowrap;
}

/* Hero Stats Bottom Ribbon (Dark Maroon) */
.hero-stats-ribbon {
  background: linear-gradient(135deg, #38080C 0%, #200406 100%);
  border-top: 2px solid var(--color-gold);
  padding: 1.15rem 0;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}

.hero-stats-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.5fr;
  gap: 1.25rem;
  align-items: center;
}

.hero-stat-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-stat-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.hero-stat-number {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: #F8D8BF;
  margin-top: 0.15rem;
}

.hero-stat-quote {
  font-size: 0.78rem;
  font-style: italic;
  color: #FFDFCA;
  line-height: 1.35;
  border-left: 1.5px solid rgba(212, 175, 55, 0.4);
  padding-left: 1.25rem;
}

@media (max-width: 991px) {
  .hero-values-top-bar {
    display: none !important;
  }
  .hero-stats-ribbon {
    display: none !important;
  }
}

/* Floating Rating Badge is baked into hero-pandit.jpg */
.floating-rating-badge {
  display: none !important;
}

.rating-score {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.rating-score .star-icon {
  color: var(--color-rating);
}

.rating-sub {
  font-size: 0.68rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* Mobile Quick Action Cards (2 Cards from mobile screenshot) */
.mobile-action-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.m-action-card-orange {
  background: linear-gradient(135deg, #F17600, #E06500);
  color: #FFFFFF;
  padding: 1rem;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(241, 118, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-decoration: none;
}

.m-action-card-orange .card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.m-action-card-orange .card-title {
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.1;
  color: #FFFFFF;
}

.m-action-card-orange .card-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
}

.m-action-card-white {
  background-color: #FFFFFF;
  border: 1px solid var(--color-card-border);
  padding: 1rem;
  border-radius: 14px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-decoration: none;
}

.m-action-card-white .card-icon {
  color: var(--color-orange-primary);
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.m-action-card-white .card-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.1;
}

.m-action-card-white .card-sub {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

/* 4 Trust Badges (Matching mobile screenshot) */
.mobile-trust-badges-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1.25rem;
  background-color: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: 14px;
  padding: 0.75rem 0.5rem;
  box-shadow: var(--shadow-subtle);
}

.m-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
}

.m-trust-badge .badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-orange-light);
  color: var(--color-orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.m-trust-badge .badge-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.15;
}

/* ============================================================
   CATEGORY ICON RIBBON (FROM DESKTOP SCREENSHOT)
   ============================================================ */
.category-ribbon-section {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--color-card-border);
  padding: 1.25rem 0;
}

.category-ribbon-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
}

.category-ribbon-grid::-webkit-scrollbar {
  display: none;
}

.category-pill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  flex-shrink: 0;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: transform 0.15s ease;
}

.category-pill-item:hover {
  transform: translateY(-2px);
}

.category-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #FAF4EB;
  border: 1px solid #EFE4D2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-maroon-primary);
  transition: all 0.2s ease;
}

.category-pill-item:hover .category-icon-box {
  background-color: var(--color-orange-light);
  border-color: var(--color-orange-primary);
  color: var(--color-orange-primary);
}

.category-pill-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
  white-space: nowrap;
}

/* ============================================================
   POPULAR POOJAS & OCCASIONS (CARDS MATCHING SCREENSHOT)
   ============================================================ */
.popular-poojas-section {
  padding: 3rem 0;
}

.section-title-ornate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.section-title-ornate .ornament {
  color: var(--color-orange-primary);
  font-size: 1.2rem;
}

.section-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.view-all-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-orange-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.view-all-link:hover {
  text-decoration: underline;
}

/* Cards Grid */
.pooja-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1.25rem;
}

.pooja-card-template {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.pooja-card-template:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-gold);
}

.pooja-card-img-wrap {
  width: 100%;
  height: 120px;
  background-color: #F8EFE4;
  overflow: hidden;
  position: relative;
}

.pooja-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
}

.pooja-card-template:hover .pooja-card-img {
  transform: scale(1.05);
}

.pooja-card-content {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pooja-card-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
}

.pooja-card-desc-brief {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.35;
  margin-bottom: 0.6rem;
  flex-grow: 1;
}

.pooja-card-pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
}

.starting-price {
  font-weight: 800;
  color: var(--color-text-dark);
  font-size: 0.88rem;
}

.pooja-card-rating {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.pooja-card-rating .star {
  color: var(--color-rating);
}

.btn-card-book {
  width: 100%;
  background-color: #FFFFFF;
  color: var(--color-orange-primary);
  border: 1px solid var(--color-orange-primary);
  padding: 0.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}

.btn-card-book:hover {
  background-color: var(--color-orange-primary);
  color: #FFFFFF;
}

/* ============================================================
   DARK MAROON "WHY CHOOSE" SECTION (FROM SCREENSHOT)
   ============================================================ */
.why-choose-banner-section {
  background: linear-gradient(135deg, #38070A, #4E0E13);
  color: #FFFFFF;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}

.why-choose-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.why-left-title {
  color: var(--color-gold-light);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.25;
}

.why-icons-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  text-align: center;
}

.why-circle-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem;
  font-size: 1.35rem;
  color: var(--color-gold-light);
}

.why-item-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #EBDCCE;
  line-height: 1.3;
}

/* Floating White Lead Card on the Right of Maroon Banner */
.quick-lead-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: var(--color-text-dark);
}

.quick-lead-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-maroon-primary);
  margin-bottom: 0.25rem;
}

.quick-lead-sub {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.lead-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.lead-phone-input {
  flex: 1;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.lead-phone-input:focus {
  border-color: var(--color-orange-primary);
  outline: none;
}

.btn-lead-start {
  background: linear-gradient(135deg, #F17600, #E06500);
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
}

.lead-trust-avatars {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

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

.avatar-mini {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #FFFFFF;
  margin-left: -6px;
  background-color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}
.avatar-mini:first-child { margin-left: 0; }

/* ============================================================
   HOW IT WORKS (5 STEPS FROM SCREENSHOT)
   ============================================================ */
.how-it-works-section {
  padding: 3.5rem 0;
  background-color: var(--color-cream-bg);
}

.steps-5-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  position: relative;
  margin-top: 2.5rem;
}

.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-num-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--color-orange-primary);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -10px;
  z-index: 2;
}

.step-circle-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid #EEDFCE;
  box-shadow: var(--shadow-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-orange-primary);
  margin-bottom: 0.75rem;
}

.step-heading {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 0.35rem;
}

.step-subtext {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ============================================================
   CUSTOMER REVIEWS (CAROUSEL / GRID FROM SCREENSHOT)
   ============================================================ */
.reviews-section {
  padding: 3.5rem 0;
  background-color: #FFFFFF;
  border-top: 1px solid var(--color-card-border);
  border-bottom: 1px solid var(--color-card-border);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.review-cards-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.review-card-template {
  background: #FFFDF9;
  border: 1px solid var(--color-card-border);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--color-rating);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.review-quote {
  font-size: 0.85rem;
  color: var(--color-text-dark);
  line-height: 1.45;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.review-author-pic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-maroon-primary);
}

.review-author-name {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-text-dark);
}

.review-author-city {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.reviews-visual-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.thali-img-frame {
  max-width: 380px;
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

/* ============================================================
   STAT COUNTERS BAR (FROM DESKTOP SCREENSHOT)
   ============================================================ */
.stats-banner-bar {
  background-color: #FFFDF9;
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-card-border);
}

.stats-grid-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.stat-icon {
  font-size: 1.75rem;
  color: var(--color-orange-primary);
}

.stat-text-block {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-maroon-primary);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* ============================================================
   APP PROMO BANNER (FROM SCREENSHOT)
   ============================================================ */
.app-promo-section {
  padding: 2.5rem 0;
  background-color: #FAF4EB;
  border-bottom: 1px solid var(--color-card-border);
}

.app-promo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: center;
}

.app-promo-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-maroon-primary);
  margin-bottom: 0.25rem;
}

.app-promo-sub {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.app-store-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.store-badge-btn {
  background-color: #000000;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

/* ============================================================
   MOBILE BOTTOM NAVIGATION BAR (MATCHING SCREENSHOT 100%)
   ============================================================ */
.mobile-bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 1px solid #ECE3D4;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 0.4rem 0.2rem;
  justify-content: space-around;
}

.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #8C7B70;
  font-size: 0.7rem;
  font-weight: 600;
  gap: 0.2rem;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  transition: color 0.15s ease;
}

.mob-nav-item.active,
.mob-nav-item:hover {
  color: var(--color-orange-primary);
}

.mob-nav-icon {
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 60px;
  }
}

/* ============================================================
   BOOKING MODAL / SCREEN SIMULATOR (MATCHING SCREENS 2, 3, 4, 5)
   ============================================================ */
.app-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  overflow-y: auto;
}

.app-modal-overlay.open,
.app-modal-overlay.active {
  display: flex !important;
}

.app-modal-window {
  background-color: #FFFFFF;
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  position: relative;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}

.modal-screen-header {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--color-card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFDF9;
}

.modal-screen-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-dark);
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--color-text-muted);
  line-height: 1;
}

.modal-screen-body {
  padding: 1.25rem;
  overflow-y: auto;
}

/* Pandit Card in Modal (Screen 2 Replica) */
.pandit-modal-card {
  border: 1px solid var(--color-card-border);
  border-radius: 14px;
  padding: 0.9rem;
  margin-bottom: 0.85rem;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  background: #FFFFFF;
  box-shadow: var(--shadow-subtle);
}

.pandit-avatar-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-gold);
}

.pandit-details-block {
  flex: 1;
}

.pandit-available-tag {
  color: #2E7D32;
  background-color: #E8F5E9;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 0.2rem;
}

.pandit-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--color-text-dark);
}

.pandit-exp {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.pandit-specialty {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-top: 0.15rem;
}

/* Forms & Inputs in Modals & Lead Sections */
.form-group {
  margin-bottom: 0.85rem;
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  color: #4A3E39;
  margin-bottom: 0.3rem;
}

.form-control {
  width: 100%;
  display: block;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-sm);
  background-color: #FFFFFF;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--color-text-dark);
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-orange-primary);
  box-shadow: 0 0 0 3px rgba(241, 118, 0, 0.15);
}

.btn-pandit-book {
  background: linear-gradient(135deg, #F17600, #E06500);
  color: #FFFFFF;
  border: none;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(241, 118, 0, 0.25);
  transition: all 0.15s ease;
}

.btn-pandit-book:hover {
  background: #D96200;
  transform: translateY(-1px);
}

/* Multi-Step Indicator (Screen 4 Replica) */
.step-indicator-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  position: relative;
}

.step-indicator-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #E2DBD4;
  color: #776E65;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.step-indicator-dot.active {
  background-color: var(--color-orange-primary);
  color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(241, 118, 0, 0.25);
}

.step-indicator-dot.completed {
  background-color: #2E7D32;
  color: #FFFFFF;
}

.step-indicator-dot.inactive {
  background-color: #EFE9E2;
  color: #8C827A;
}

.step-indicator-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #8C827A;
  margin-top: 0.25rem;
  display: block;
  transition: color 0.25s ease;
}

.step-indicator-label.active {
  color: var(--color-orange-primary);
  font-weight: 800;
}

.step-indicator-label.completed {
  color: #2E7D32;
  font-weight: 700;
}

.step-connector-line {
  flex: 1;
  height: 2px;
  background-color: #E5DDD5;
  margin: 0 6px 1rem;
  transition: background-color 0.3s ease;
}

.step-connector-line.active {
  background-color: var(--color-orange-primary);
}

.step-connector-line.completed {
  background-color: #2E7D32;
}

.booking-step-panel {
  display: none;
}

.booking-step-panel.active {
  display: block;
  animation: fadeInBookingStep 0.25s ease-out;
}

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

/* ============================================================
   RESPONSIVE LAYOUT (MATCHING EXACT DESKTOP & MOBILE TEMPLATES)
   ============================================================ */

/* Mobile view (< 992px) */
@media (max-width: 991px) {
  body {
    padding-bottom: 65px;
  }

  /* Header on mobile */
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
  }

  .mobile-menu-btn {
    order: 1;
    display: flex !important;
  }

  .brand-wrapper {
    order: 2;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
  }

  .brand-logo-img {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-tagline {
    font-size: 0.6rem;
  }

  .header-right {
    order: 3;
    display: flex !important;
    gap: 0;
  }

  .assistance-box,
  .btn-header-book,
  .desktop-nav-container {
    display: none !important;
  }

  .mobile-bell-btn {
    display: flex !important;
  }

  /* Hero on mobile */
  .hero-wrapper {
    padding: 0.85rem 0 1.25rem;
    background: radial-gradient(circle at 85% 20%, #FFF0D6 0%, #FFFDF9 50%, #FFF8F0 100%);
  }

  .hero-grid-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .desktop-only-hero-visual {
    display: none !important;
  }

  .hero-top-split-row {
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
  }

  .hero-text-content-box {
    flex: 1 1 60%;
    max-width: 62%;
  }

  .hero-mobile-pandit-thumb {
    display: block !important;
    flex: 0 0 38%;
    max-width: 38%;
    text-align: right;
    margin-top: -0.25rem;
  }

  .mobile-pandit-thumb-img {
    width: 100%;
    max-width: 135px;
    height: auto;
    object-fit: contain;
    border-radius: 50% 50% 16px 16px;
    filter: drop-shadow(0 6px 14px rgba(180, 110, 40, 0.15));
  }

  .hero-pill-badge {
    display: none !important;
  }

  .hero-mobile-greeting {
    display: block !important;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.25rem;
  }

  .hero-main-title {
    font-size: 1.4rem;
    line-height: 1.15;
    margin-bottom: 0.45rem;
    letter-spacing: -0.01em;
  }

  .hero-sub-copy {
    font-size: 0.72rem;
    line-height: 1.35;
    color: var(--color-text-muted);
    margin-bottom: 0;
  }

  .hero-cta-row,
  .hero-trust-row {
    display: none !important;
  }

  .mobile-action-cards {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
  }

  .mobile-trust-badges-bar {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid var(--color-card-border);
    border-radius: 12px;
    padding: 0.75rem 0.5rem;
    box-shadow: var(--shadow-subtle);
  }

  .m-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
    flex: 1;
  }

  .m-trust-badge .badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--color-orange-light);
    color: var(--color-orange-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
  }

  .m-trust-badge .badge-label {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.15;
  }

  /* Mobile Popular Poojas */
  .mobile-popular-section {
    display: block !important;
    padding: 1.5rem 0 0.5rem;
  }

  .mobile-popular-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }

  .mobile-popular-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-text-dark);
  }

  .mobile-popular-view-all {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-orange-primary);
    text-decoration: none;
  }

  .mobile-poojas-scroll {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .mobile-poojas-scroll::-webkit-scrollbar {
    display: none;
  }

  .m-pooja-card {
    flex: 0 0 150px;
    scroll-snap-align: start;
    background: #FFFFFF;
    border: 1px solid var(--color-card-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .m-pooja-card:hover {
    transform: translateY(-2px);
  }

  .m-pooja-card-img {
    width: 100%;
    height: 95px;
    object-fit: cover;
  }

  .m-pooja-card-info {
    padding: 0.65rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .m-pooja-name {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--color-text-dark);
  }

  .m-pooja-price {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    margin-bottom: 0.35rem;
  }

  .m-pooja-rating {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }

  .m-pooja-rating .star {
    color: var(--color-rating);
  }

  /* Need Pooja Samagri Banner (Mobile) */
  .mobile-samagri-card {
    display: flex !important;
    background: linear-gradient(135deg, #3E0A0D, #551217);
    color: #FFFFFF;
    border-radius: 16px;
    padding: 1.15rem;
    margin: 1.25rem 0 2rem;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    box-shadow: 0 6px 18px rgba(62, 10, 13, 0.25);
  }

  .samagri-left {
    flex: 1;
  }

  .samagri-heading {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
  }

  .samagri-text {
    font-size: 0.75rem;
    color: #EBDCCE;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }

  .samagri-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, #F17600, #E06500);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(241, 118, 0, 0.3);
  }

  .samagri-right-img {
    width: 95px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
  }

  /* Hide Desktop-only sections on mobile */
  .desktop-only-section {
    display: none !important;
  }

  /* Show mobile bottom nav */
  .mobile-bottom-nav {
    display: flex !important;
  }
}

/* Desktop view (>= 992px) */
@media (min-width: 992px) {
  .mobile-menu-btn,
  .mobile-bell-btn,
  .hero-mobile-greeting,
  .mobile-action-cards,
  .mobile-trust-badges-bar,
  .mobile-popular-section,
  .mobile-samagri-card,
  .mobile-bottom-nav {
    display: none !important;
  }

  .desktop-nav {
    display: flex !important;
  }

  .assistance-box {
    display: flex !important;
  }

  .btn-header-book {
    display: inline-block !important;
  }

  .hero-grid-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
  }

  .hero-visual-col.desktop-only-hero-visual {
    min-height: 480px;
  }

  .hero-visual-col.desktop-only-hero-visual .hero-pandit-frame {
    display: none !important;
  }

  .hero-main-title {
    font-size: 2.85rem;
  }

  .why-choose-inner {
    grid-template-columns: 1.3fr 0.9fr;
  }

  .reviews-layout {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .stats-grid-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .app-promo-inner {
    flex-direction: row;
    text-align: left;
  }

  .desktop-only-section {
    display: block !important;
  }
}

/* ============================================================
   INNER PAGE NAVIGATION & COMMON BUTTON UTILITIES
   ============================================================ */
.brand-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.brand-text-block {
  display: flex;
  flex-direction: column;
}
.brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-maroon-primary);
  line-height: 1.05;
}
.brand-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.site-nav {
  display: none;
}
@media (min-width: 992px) {
  .site-nav {
    display: block;
  }
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}
.nav-link.active, .nav-link:hover {
  color: var(--color-orange-primary);
}
.header-cta-group {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 992px) {
  .header-cta-group {
    display: flex;
  }
}
.mobile-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-dark);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .mobile-toggle-btn {
    display: none !important;
  }
}

/* Button & Announcement Utilities */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

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

.btn-primary {
  background-color: var(--color-orange-primary);
  color: #FFFFFF;
  border-color: var(--color-orange-primary);
}
.btn-primary:hover {
  background-color: var(--color-orange-deep);
  border-color: var(--color-orange-deep);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-maroon-primary);
  border-color: var(--color-maroon-primary);
}
.btn-outline:hover {
  background-color: var(--color-maroon-primary);
  color: #FFFFFF;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background-color: #1EBE5D;
}

.announcement-bar {
  background-color: var(--color-maroon-deep);
  color: #FFFFFF;
  font-size: 0.78rem;
  padding: 0.4rem 0;
}
.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.announcement-actions {
  display: flex;
  gap: 1rem;
}
.announcement-link {
  color: var(--color-gold-light);
  text-decoration: none;
}

/* ============================================================
   ROYAL VEDIC SITE FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, #3A0A0E 0%, #200406 100%);
  color: #F5EBE1;
  border-top: 4px solid var(--color-gold);
  padding: 4rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-col-brand .footer-brand-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  background: #FFF;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.footer-brand-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.footer-brand-tagline {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  color: var(--color-gold-light);
  font-weight: 700;
}

.footer-brand-desc {
  font-size: 0.86rem;
  line-height: 1.65;
  color: #D6C2B4;
  margin-bottom: 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-icon {
  font-size: 1.15rem;
}

.footer-contact-label {
  display: block;
  font-size: 0.68rem;
  color: #B8A396;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-contact-value {
  color: #F8B268;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-value:hover {
  color: #FFFFFF;
}

.footer-col-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #F5D0A9;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.55rem;
}

.footer-col-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--color-gold);
  border-radius: 2px;
}

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

.footer-links li a {
  color: #D6C2B4;
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.footer-links li a .link-arrow {
  color: var(--color-gold);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

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

.footer-links li a:hover .link-arrow {
  color: var(--color-orange-primary);
  transform: translateX(2px);
}

.footer-location-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem;
  border-radius: 12px;
  margin-bottom: 0.85rem;
}

.location-icon-box {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #D6C2B4;
  margin: 0;
}

.location-text strong {
  color: #FFFFFF;
  font-size: 0.88rem;
}

.footer-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #FAD4B2;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(231, 163, 62, 0.15);
  border: 1px solid var(--color-gold);
  color: #F5D0A9;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-maps-btn:hover {
  background: var(--color-gold);
  color: #2B080B;
  box-shadow: 0 4px 14px rgba(184, 134, 43, 0.35);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #A69286;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom-links a {
  color: #C0ADA1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

.footer-bottom-links .sep {
  color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .site-footer {
    padding: 2.5rem 0 6rem;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}




/* ============================================================
   SUBPAGES COMPONENT SYSTEM - MATCHING 8-PAGE MOCKUP
   ============================================================ */

/* Subpage Hero Banner */
.subpage-hero {
  background: linear-gradient(135deg, #430C0F 0%, #200406 100%);
  color: #FFFFFF;
  padding: 3rem 0 2.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--color-gold);
}

.subpage-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 50%, rgba(241, 118, 0, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.subpage-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.subpage-hero-content {
  flex: 1;
  max-width: 650px;
}

.subpage-hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.subpage-hero-sub {
  font-size: 1.1rem;
  color: #F7E7C4;
  line-height: 1.5;
}

.subpage-hero-graphic {
  flex-shrink: 0;
}

.subpage-hero-graphic img {
  max-height: 140px;
  width: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  border: 1px solid rgba(197, 154, 69, 0.4);
}

/* Breadcrumb Bar */
.breadcrumb-nav {
  padding: 1rem 0;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.breadcrumb-nav a {
  color: var(--color-maroon-rich);
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb-nav .sep {
  margin: 0 0.5rem;
  color: var(--color-text-light);
}

.breadcrumb-nav .current {
  color: var(--color-text-dark);
  font-weight: 600;
}

/* Page 2: About Us Styles */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 0 3rem;
}

.about-story-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-maroon-deep);
  margin-bottom: 1.25rem;
}

.about-story-text p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-kalash-box {
  text-align: center;
}

.about-kalash-box img {
  max-width: 100%;
  max-height: 280px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(84, 20, 25, 0.12);
}

.about-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: #FFF9F3;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-card-border);
  text-align: center;
}

.about-stat-item .stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-orange-primary);
  font-family: var(--font-heading);
  display: block;
}

.about-stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* Mission & Vision Cards */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.mission-card {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-subtle);
  border-top: 4px solid var(--color-orange-primary);
}

.mission-card.vision-card {
  border-top-color: var(--color-gold);
}

.mission-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.mission-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-maroon-deep);
  margin-bottom: 0.75rem;
}

.mission-card p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Why Families Trust Us Banner */
.trust-maroon-section {
  background: linear-gradient(135deg, #430C0F 0%, #200406 100%);
  color: #FFFFFF;
  padding: 3rem 0;
  margin-bottom: 3.5rem;
  border-top: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}

.trust-maroon-section h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 2.5rem;
}

.trust-icons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.trust-icon-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #F7E7C4;
}

/* Values Grid */
.values-section {
  text-align: center;
  margin-bottom: 3.5rem;
}

.values-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-maroon-deep);
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.value-card {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-orange-primary);
}

.value-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFF2E8;
  color: var(--color-orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 0.75rem;
}

.value-card h4 {
  font-size: 1rem;
  color: var(--color-maroon-deep);
  font-weight: 700;
}

/* Quote Banner */
.spiritual-quote-box {
  background: #FFFDF8;
  border: 2px solid var(--color-gold-light);
  border-radius: var(--radius-lg);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-subtle);
}

.quote-pandit-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
  flex-shrink: 0;
}

.quote-center-content {
  text-align: center;
  flex: 1;
}

.quote-center-content blockquote {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-maroon-deep);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.quote-author {
  font-size: 0.95rem;
  color: var(--color-orange-primary);
  font-weight: 700;
}

.quote-symbol {
  font-size: 2.5rem;
  opacity: 0.8;
  flex-shrink: 0;
}

/* Page 3: Poojas Layout */
.poojas-page-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  padding: 2rem 0 4rem;
}

.pooja-category-sidebar {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  height: fit-content;
}

.pooja-category-sidebar h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-maroon-deep);
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}

.category-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.category-nav-link {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.category-nav-link:hover {
  background: var(--color-orange-light);
  color: var(--color-orange-deep);
}

.category-nav-link.active {
  background: var(--color-maroon-deep);
  color: #FFFFFF;
  font-weight: 700;
}

/* Poojas Right Column */
.poojas-main-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pooja-search-wrapper {
  position: relative;
}

.pooja-search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.8rem;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background: #FFFFFF;
}

.pooja-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-light);
  font-size: 1.1rem;
}

.poojas-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pooja-item-card {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.pooja-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-gold);
}

.pooja-item-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.pooja-item-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pooja-item-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-maroon-deep);
  margin-bottom: 0.5rem;
}

.pooja-item-price {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.pooja-item-price strong {
  color: var(--color-orange-primary);
  font-size: 1.05rem;
}

.pooja-item-btn {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 0.55rem;
  border: 1px solid var(--color-orange-primary);
  color: var(--color-orange-primary);
  background: transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pooja-item-btn:hover {
  background: var(--color-orange-primary);
  color: #FFFFFF;
}

/* Dual Bottom Promos */
.pooja-bottom-promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.pooja-promo-card {
  background: #FFF9F3;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.pooja-promo-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-maroon-deep);
  margin-bottom: 0.25rem;
}

.pooja-promo-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.pooja-promo-btn {
  display: inline-block;
  background: var(--color-orange-primary);
  color: #FFFFFF;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.pooja-promo-btn:hover {
  background: var(--color-orange-deep);
}

.pooja-promo-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

/* Page 4: Pandits Listing */
.pandits-listing-container {
  padding: 2rem 0 4rem;
}

.pandits-filter-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.pandits-search-box {
  flex: 1;
  min-width: 250px;
  position: relative;
}

.pandits-search-box input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  background: #FFFFFF;
}

.pandits-select-filter {
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  background: #FFFFFF;
  font-size: 0.92rem;
  color: var(--color-text-dark);
  cursor: pointer;
}

.pandits-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pandit-row-card {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pandit-row-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-hover);
}

.pandit-row-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.pandit-row-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
  flex-shrink: 0;
}

.pandit-row-info h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-maroon-deep);
  margin-bottom: 0.25rem;
}

.pandit-row-meta {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.pandit-row-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.pandit-row-rating {
  color: var(--color-orange-primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.pandit-row-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.pandit-row-price {
  text-align: right;
}

.pandit-row-price-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  display: block;
}

.pandit-row-price-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-maroon-deep);
  font-family: var(--font-heading);
}

.pandit-row-book-btn {
  background: var(--color-orange-primary);
  color: #FFFFFF;
  border: none;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
}

.pandit-row-book-btn:hover {
  background: var(--color-orange-deep);
}

.pandits-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: #FFF9F3;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-card-border);
  margin-top: 3rem;
  text-align: center;
}

.pandits-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-maroon-deep);
}

/* Page 5: Pandit Details */
.pandit-detail-container {
  padding: 2rem 0 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pandit-profile-top-card {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  gap: 2.5rem;
  box-shadow: var(--shadow-subtle);
  margin-bottom: 2.5rem;
  align-items: center;
}

.pandit-profile-big-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-gold);
  box-shadow: 0 8px 20px rgba(84, 20, 25, 0.15);
  flex-shrink: 0;
}

.pandit-profile-main-info {
  flex: 1;
}

.pandit-profile-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.pandit-profile-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-maroon-deep);
}

.pandit-profile-price-box {
  text-align: right;
}

.pandit-profile-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-orange-primary);
  font-family: var(--font-heading);
  display: block;
}

.pandit-detail-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.detail-table-row {
  display: flex;
  gap: 0.5rem;
}

.detail-table-label {
  color: var(--color-text-light);
  font-weight: 600;
  min-width: 110px;
}

.detail-table-val {
  color: var(--color-text-dark);
  font-weight: 500;
}

.pandit-detail-section {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
}

.pandit-detail-section h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-maroon-deep);
  margin-bottom: 1rem;
}

.poojas-performed-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.pooja-thumb-card {
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-align: center;
  background: #FFFDF8;
}

.pooja-thumb-card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}

.pooja-thumb-card span {
  display: block;
  padding: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-maroon-deep);
}

.review-item-box {
  background: #FFF9F3;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1rem;
}

.review-item-stars {
  color: var(--color-rating);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.review-item-quote {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.review-item-meta {
  font-size: 0.82rem;
  color: var(--color-text-light);
  display: flex;
  justify-content: space-between;
}

/* Page 6: Booking / Checkout */
.checkout-page-container {
  padding: 2rem 0 4rem;
  max-width: 1050px;
  margin: 0 auto;
}

.checkout-page-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-maroon-deep);
  margin-bottom: 1.5rem;
}

.checkout-stepper-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.checkout-stepper-bar::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--color-card-border);
  z-index: 1;
}

.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 0.4rem;
}

.stepper-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--color-card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.stepper-step.active .stepper-circle {
  background: var(--color-orange-primary);
  border-color: var(--color-orange-primary);
  color: #FFFFFF;
}

.stepper-step.completed .stepper-circle {
  background: var(--color-green);
  border-color: var(--color-green);
  color: #FFFFFF;
}

.stepper-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.stepper-step.active .stepper-label {
  color: var(--color-orange-primary);
  font-weight: 700;
}

.checkout-grid-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.checkout-form-card {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.checkout-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.checkout-card-header h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-maroon-deep);
}

.checkout-card-header a {
  color: var(--color-orange-primary);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.checkout-summary-card {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-subtle);
  position: sticky;
  top: 90px;
}

.summary-heading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-maroon-deep);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-card-border);
}

.summary-line-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.summary-total-line {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px dashed var(--color-card-border);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-maroon-deep);
  font-family: var(--font-heading);
}

.checkout-pay-btn {
  width: 100%;
  background: var(--color-orange-primary);
  color: #FFFFFF;
  border: none;
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.checkout-pay-btn:hover {
  background: var(--color-orange-deep);
}

.payment-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* Page 7: Blog Layout */
.blog-page-container {
  padding: 2rem 0 4rem;
}

.blog-tabs-bar {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.blog-tab-btn {
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  color: var(--color-text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-tab-btn:hover, .blog-tab-btn.active {
  background: var(--color-orange-primary);
  color: #FFFFFF;
  border-color: var(--color-orange-primary);
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.blog-post-card {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-gold);
}

.blog-card-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-maroon-deep);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card-link {
  margin-top: auto;
  color: var(--color-orange-primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card-link:hover {
  color: var(--color-orange-deep);
}

.newsletter-subscribe-box {
  background: #FFF9F3;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.newsletter-subscribe-box h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-maroon-deep);
  margin-bottom: 0.5rem;
}

.newsletter-form-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.newsletter-submit-btn {
  background: var(--color-orange-primary);
  color: #FFFFFF;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
}

/* Page 8: Contact Us Layout */
.contact-page-container {
  padding: 2rem 0 4rem;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.contact-cards-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow-subtle);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFF2E8;
  color: var(--color-orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-card-details h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-maroon-deep);
  margin-bottom: 0.25rem;
}

.contact-card-details p, .contact-card-details a {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-decoration: none;
  line-height: 1.5;
}

.contact-card-details a:hover {
  color: var(--color-orange-primary);
}

.contact-form-card {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-subtle);
}

.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-maroon-deep);
  margin-bottom: 1.5rem;
}

.form-group-field {
  margin-bottom: 1.25rem;
}

.form-group-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.4rem;
}

.form-control-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
}

.contact-map-card {
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.contact-map-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Responsive adjustments for Subpages */
@media (max-width: 991px) {
  .about-story-grid,
  .mission-vision-grid,
  .poojas-page-container,
  .pooja-bottom-promos,
  .checkout-grid-layout,
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-stats-bar,
  .trust-icons-grid,
  .values-grid,
  .poojas-grid-3col,
  .blog-cards-grid,
  .pandits-trust-bar,
  .poojas-performed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .subpage-hero-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .pandit-profile-top-card {
    flex-direction: column;
    text-align: center;
  }
  
  .detail-table-row {
    justify-content: center;
  }
  
  .pandit-row-card {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .pandit-row-right {
    width: 100%;
    justify-content: space-between;
    margin-top: 1rem;
  }
}

@media (max-width: 600px) {
  .about-stats-bar,
  .trust-icons-grid,
  .values-grid,
  .poojas-grid-3col,
  .blog-cards-grid,
  .pandits-trust-bar,
  .poojas-performed-grid {
    grid-template-columns: 1fr;
  }
  
  .spiritual-quote-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

/* ============================================================
   FIX: SVG Icon Bounds & Breadcrumb Styling for Detail Pages
   ============================================================ */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.feature-list-item svg,
.feature-list svg,
.highlight-list svg,
.check-list svg,
li > svg {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  flex-shrink: 0;
  color: var(--color-orange-primary);
  margin-top: 2px;
}

.breadcrumb-nav ol,
.breadcrumb-list,
nav[aria-label="Breadcrumb"] ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
}

.breadcrumb-nav li,
.breadcrumb-list li,
nav[aria-label="Breadcrumb"] li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============================================================
   CEREMONY & DETAIL PAGES SYSTEM - ROYAL VEDIC EXPERIENCE
   ============================================================ */
.breadcrumbs-nav,
.breadcrumb-nav {
  padding: 1rem 0;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.breadcrumbs-list,
.breadcrumb-nav ol,
.breadcrumbs-nav ol {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 0.5rem !important;
}

.breadcrumbs-item,
.breadcrumb-nav li,
.breadcrumbs-list li {
  display: inline-flex !important;
  align-items: center !important;
  list-style-type: none !important;
  gap: 0.5rem !important;
  color: var(--color-text-dark);
}

.breadcrumbs-item a,
.breadcrumb-nav a {
  color: var(--color-maroon-rich);
  text-decoration: none;
}

.breadcrumbs-item a:hover,
.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumbs-separator,
.breadcrumb-nav .sep {
  color: var(--color-text-light);
}

.ceremony-page-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  padding: 1.5rem 0 4rem;
  align-items: flex-start;
}

.ceremony-main-card {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-subtle);
}

.ceremony-main-card h2,
.ceremony-main-card h3 {
  font-family: var(--font-heading);
  color: var(--color-maroon-deep);
  margin-bottom: 1rem;
}

.ceremony-main-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.ceremony-hero-img-box {
  width: 100%;
  height: 360px;
  max-height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-card-border);
}

.ceremony-hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}

.ceremony-sidebar-card {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-subtle);
  position: sticky;
  top: 90px;
}

.ceremony-priest-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #FFF9F3;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin: 1.25rem 0;
}

.ceremony-priest-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
  flex-shrink: 0;
}

.ceremony-trust-pills {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--color-text-dark);
}

.ceremony-trust-pills li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-card-item {
  background: #FFFDF8;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.faq-card-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-maroon-deep);
  margin-bottom: 0.5rem;
}

.faq-card-item p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .ceremony-page-layout {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   NATIVE MOBILE APP EXPERIENCE SYSTEM (MOBILE VIEW ONLY)
   Matches exact screens 1, 2, 3, 4, 5 on Mobile Devices
   Desktop (>= 769px) is 100% Protected and Untouched
   ============================================================ */

/* Universal Mobile App Overrides (< 768px) */
@media (max-width: 768px) {
  /* iOS / Android touch smoothness & font rendering */
  html {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)) !important;
    background-color: #FAF6F0;
    -webkit-font-smoothing: antialiased;
  }

  body.has-sticky-cta {
    padding-bottom: calc(134px + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* Native Mobile App Header */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid #ECE3D6 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04) !important;
    padding: 0.6rem 0.85rem !important;
  }

  .header-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  /* Mobile App Header Action Buttons */
  .mobile-menu-btn,
  .mobile-back-btn,
  .mobile-bell-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFF9F2;
    border: 1px solid #EADBCC;
    color: var(--color-maroon-deep);
    cursor: pointer;
    transition: transform 0.12s ease, background-color 0.12s ease;
    padding: 0;
    flex-shrink: 0;
  }

  .mobile-menu-btn:active,
  .mobile-back-btn:active,
  .mobile-bell-btn:active {
    transform: scale(0.92);
    background-color: #F5E9DC;
  }

  /* Mobile Logo Sizing */
  .header-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
  }

  .header-avatar-img {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    object-fit: cover;
  }

  .header-brand-name {
    font-size: 1.05rem !important;
    font-weight: 900;
    color: var(--color-maroon-deep);
    line-height: 1.1;
    letter-spacing: -0.2px;
  }

  .header-brand-tagline {
    font-size: 0.6rem !important;
    color: var(--color-orange-primary);
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
  }

  /* Mobile Bottom 5-Tab Navigation Bar */
  .mobile-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(60px + env(safe-area-inset-bottom, 0px));
    padding: 0.35rem 0.25rem calc(0.35rem + env(safe-area-inset-bottom, 0px)) 0.25rem;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid #ECE3D4 !important;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.07) !important;
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
  }

  .mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #8C7B70;
    font-size: 0.68rem;
    font-weight: 600;
    gap: 0.2rem;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex: 1;
    max-width: 72px;
  }

  .mob-nav-item:active {
    transform: scale(0.92);
  }

  .mob-nav-item.active {
    color: #E65100 !important;
  }

  .mob-nav-item.active .mob-nav-label {
    font-weight: 800;
    color: #E65100;
  }

  .mob-nav-item.active svg {
    color: #E65100;
    stroke: #E65100;
  }

  .mob-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    width: 16px;
    height: 3px;
    background: #E65100;
    border-radius: 2px;
  }

  /* Mobile Sticky Bottom Booking Bar for Ceremony Pages */
  .mobile-sticky-action-bar {
    display: flex !important;
    position: fixed;
    bottom: calc(60px + env(safe-area-inset-bottom, 0px));
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid #ECE3D4;
    padding: 0.65rem 1rem;
    z-index: 998;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  }

  .sticky-bar-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .sticky-bar-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-maroon-deep);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sticky-bar-sub {
    font-size: 0.72rem;
    color: #10B981;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .sticky-bar-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFFFFF !important;
    font-size: 0.88rem;
    font-weight: 800;
    padding: 0.65rem 1.15rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.12s ease;
  }

  .sticky-bar-cta-btn:active {
    transform: scale(0.96);
  }

  /* Native App Bottom Sheet Modals */
  .app-modal-overlay {
    align-items: flex-end !important;
    padding: 0 !important;
  }

  .app-modal-window {
    border-radius: 24px 24px 0 0 !important;
    max-height: 86vh !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    animation: slideUpModal 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes slideUpModal {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

  .modal-screen-header {
    position: relative;
    padding: 1.1rem 1.25rem 0.85rem !important;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }

  .modal-screen-header::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 4px;
    background: #D8CCC0;
    border-radius: 3px;
  }

  /* Native Mobile App Card Enhancements */
  .card,
  .pooja-category-card,
  .service-detail-card,
  .ceremony-hero-card,
  .trust-card-item,
  .faq-card-item {
    border-radius: 18px !important;
    border: 1px solid #ECE3D4 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04) !important;
    overflow: hidden;
  }

  /* Fast responsive tapping */
  .btn-primary:active,
  .btn-secondary:active,
  .action-pill-btn:active,
  .mobile-action-card:active {
    transform: scale(0.97) !important;
  }

  /* Native Horizontal Category Snapping Rows */
  .categories-ribbon-scroll,
  .mobile-poojas-scroll {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 0.75rem !important;
    padding-bottom: 0.5rem !important;
    scrollbar-width: none !important;
  }

  .categories-ribbon-scroll::-webkit-scrollbar,
  .mobile-poojas-scroll::-webkit-scrollbar {
    display: none !important;
  }

  .category-pill,
  .mobile-pooja-card {
    scroll-snap-align: start !important;
    flex-shrink: 0 !important;
  }

  /* Mobile App Subpage Hero Card */
  .mobile-app-subhero {
    margin: 0.75rem 0.85rem 1.25rem;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .mobile-app-subhero img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  .mobile-app-subhero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
  }

  .mobile-app-subhero-badge {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    color: var(--color-maroon-deep);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
  }

  .mobile-app-subhero-title {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 0.25rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  }

  .mobile-app-subhero-sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    margin: 0;
  }

  /* Mobile Quick Spec Chips Row (Screen 3 Replica) */
  .mobile-quick-chips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 0.85rem;
    background: #FFFFFF;
    border: 1px solid #ECE3D4;
    border-radius: 16px;
    margin: 0.85rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    text-align: center;
  }

  .mobile-spec-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  .mobile-spec-chip-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #FFF8EE;
    border: 1px solid #F0DFCC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange-primary);
  }

  .mobile-spec-chip-label {
    font-size: 0.65rem;
    color: #8C7B70;
    font-weight: 600;
  }

  .mobile-spec-chip-val {
    font-size: 0.72rem;
    color: var(--color-maroon-deep);
    font-weight: 800;
    line-height: 1.1;
  }

  /* Mobile Horizontal Category Pills for Services Page (Screen 2 Replica) */
  .pooja-category-sidebar {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 0.85rem !important;
    box-shadow: none !important;
  }

  .pooja-category-sidebar h3 {
    display: none !important;
  }

  .category-nav-list {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 0.5rem !important;
    padding: 0.2rem 0.25rem 0.6rem !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .category-nav-list::-webkit-scrollbar {
    display: none !important;
  }

  .category-nav-list li {
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
  }

  .category-nav-link {
    background: #FFFFFF !important;
    border: 1px solid #ECE3D4 !important;
    padding: 0.4rem 0.95rem !important;
    border-radius: 999px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: #555 !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
    display: inline-block !important;
  }

  .category-nav-link.active {
    background: var(--color-orange-primary) !important;
    color: #FFFFFF !important;
    border-color: var(--color-orange-primary) !important;
  }
}

/* ============================================================
   DESKTOP VIEW GUARANTEE (>= 769px)
   Strictly hides all mobile app-only UI elements
   Desktop remains 100% untouched and pristine
   ============================================================ */
@media (min-width: 769px) {
  .mobile-bottom-nav,
  .mobile-sticky-action-bar,
  .mobile-back-btn,
  .mobile-app-subhero,
  .mobile-quick-chips-grid {
    display: none !important;
  }
}

/* ============================================================
   PREMIUM MOBILE & TABLET APP EXPERIENCE
   All rules scoped to max-width: 768px (mobile) 
   and max-width: 991px (tablet) only.
   Desktop (>= 992px) is completely untouched.
   ============================================================ */

/* ── SHARED MOBILE TOKEN UPGRADES ──────────────────────────── */
@media (max-width: 991px) {

  /* Safe area & smooth scroll */
  html {
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
  }

  /* ── HEADER ── */
  .site-header {
    background: rgba(255, 253, 249, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 500;
  }

  .header-inner {
    padding: 0.55rem 1rem;
  }

  .brand-wrapper {
    gap: 0.5rem;
  }

  .brand-logo-img {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 1.15rem;
    letter-spacing: -0.3px;
  }

  .brand-tagline {
    font-size: 0.58rem;
    letter-spacing: 0.2px;
  }

  /* Hamburger touch target */
  .mobile-menu-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(241, 118, 0, 0.08);
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    color: var(--color-maroon-primary);
  }

  /* Bell button */
  .mobile-bell-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(241, 118, 0, 0.08);
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    color: var(--color-maroon-primary);
  }

  /* ── HERO SECTION ── */
  .hero-wrapper {
    padding: 1rem 0 0;
    min-height: unset;
    background-image:
      linear-gradient(
        to right,
        rgba(255, 248, 240, 0.94) 0%,
        rgba(255, 248, 240, 0.84) 38%,
        rgba(255, 248, 240, 0.45) 55%,
        rgba(255, 248, 240, 0.08) 70%,
        transparent 82%
      ),
      url('../images/hero-bg-master.jpg');
    background-position: right center;
    background-size: cover;
  }

  /* ── HERO: values top bar SHOW on mobile too, smaller ── */
  .hero-values-top-bar {
    display: flex !important;
    gap: 0.55rem;
    justify-content: center;
    margin-bottom: 0.65rem;
  }

  /* ── HERO: GRID ── */
  .hero-grid-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-left-col {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  /* Show the thumb, hide desktop frame */
  .desktop-only-hero-visual {
    display: none !important;
  }

  .hero-top-split-row {
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .hero-text-content-box {
    flex: 1 1 58%;
    max-width: 60%;
  }

  /* Greeting */
  .hero-mobile-greeting {
    display: block !important;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-maroon-primary);
    margin-bottom: 0.2rem;
  }

  .hero-pill-badge {
    display: none !important;
  }

  .hero-main-title {
    font-size: 1.35rem;
    line-height: 1.18;
    margin-bottom: 0.4rem;
    color: var(--color-text-dark);
    text-shadow: none;
  }

  .hero-main-title .highlight-orange {
    color: var(--color-orange-primary);
  }

  .hero-sub-copy {
    font-size: 0.73rem;
    line-height: 1.4;
    color: var(--color-text-muted);
    margin-bottom: 0;
    text-shadow: none;
  }

  .hero-cta-row,
  .hero-trust-row {
    display: none !important;
  }

  /* Thumb */
  .hero-mobile-pandit-thumb {
    display: block !important;
    flex: 0 0 40%;
    max-width: 40%;
    text-align: right;
  }

  .mobile-pandit-thumb-img {
    width: 100%;
    max-width: 140px;
    height: auto;
    object-fit: contain;
    border-radius: 50% 50% 18px 18px;
    filter: drop-shadow(0 6px 18px rgba(180,110,40,0.18));
  }

  /* Action Cards */
  .mobile-action-cards {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
  }

  .m-action-card-orange,
  .m-action-card-white {
    border-radius: 16px;
    padding: 1rem 0.9rem;
  }

  .m-action-card-orange .card-title,
  .m-action-card-white .card-title {
    font-size: 0.88rem;
  }

  /* Trust Badges Bar */
  .mobile-trust-badges-bar {
    display: flex !important;
    justify-content: space-between;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 16px;
    padding: 0.75rem 0.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }

  .m-trust-badge .badge-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFF0DC, #FFE4C0);
    border: 1px solid rgba(212,175,55,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .m-trust-badge .badge-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.2;
    text-align: center;
  }

  /* Hero Stats Ribbon — show on mobile as scroll strip */
  .hero-stats-ribbon {
    display: flex !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.75rem 1rem;
    gap: 1.5rem;
    background: linear-gradient(135deg, #38080C 0%, #200406 100%);
    border-top: 1.5px solid var(--color-gold);
  }

  .hero-stats-ribbon::-webkit-scrollbar { display: none; }

  .hero-stats-ribbon-grid {
    display: flex;
    gap: 1.5rem;
    width: max-content;
  }

  .hero-stat-box {
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
  }

  .hero-stat-icon-circle {
    width: 30px;
    height: 30px;
    margin: 0 auto 0.2rem;
  }

  .hero-stat-number {
    font-size: 0.95rem;
  }

  .hero-stat-label {
    font-size: 0.6rem;
  }

  /* ── CATEGORY RIBBON ── */
  .category-ribbon-section {
    padding: 0.85rem 0;
  }

  .category-icon-box {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #FFF4E6, #FFEAD0);
    border: 1px solid rgba(212,175,55,0.35);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }

  .category-pill-name {
    font-size: 0.7rem;
    font-weight: 700;
  }

  /* ── MOBILE POPULAR SECTION ── */
  .mobile-popular-section {
    display: block !important;
    padding: 1.25rem 0 0.5rem;
  }

  .mobile-popular-title {
    font-size: 1.25rem;
    font-weight: 800;
  }

  .mobile-poojas-scroll {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .mobile-poojas-scroll::-webkit-scrollbar { display: none; }

  .m-pooja-card {
    flex: 0 0 148px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    border: 1px solid rgba(212,175,55,0.2);
    scroll-snap-align: start;
    background: #fff;
  }

  .m-pooja-card-img {
    height: 100px;
  }

  .m-pooja-card-info {
    padding: 0.6rem 0.65rem;
  }

  .m-pooja-name {
    font-size: 0.88rem;
    font-weight: 700;
  }

  /* ── WHY CHOOSE SECTION ── */
  .why-choose-banner-section {
    padding: 2rem 0;
    border-radius: 0;
  }

  .why-choose-inner {
    gap: 1.5rem;
  }

  .why-left-title {
    font-size: 1.45rem;
    text-align: center;
  }

  .why-icons-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .why-circle-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.4rem;
  }

  .why-feature-name {
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
  }

  .why-feature-desc {
    font-size: 0.72rem;
    text-align: center;
  }

  /* ── HOW IT WORKS ── */
  .how-it-works-section {
    padding: 2rem 0;
  }

  .section-title-ornate {
    font-size: 1.45rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .step-card-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #FFFFFF;
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 18px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    text-align: left;
  }

  .step-number-circle {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
    border-radius: 50%;
  }

  .step-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
  }

  .step-desc {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  /* ── REVIEWS ── */
  .reviews-section {
    padding: 2rem 0;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .reviews-visual-box {
    display: none;
  }

  .review-cards-stack {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .review-cards-stack::-webkit-scrollbar { display: none; }

  .review-card {
    flex: 0 0 calc(85vw - 2rem);
    scroll-snap-align: start;
    border-radius: 18px;
    padding: 1.1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    border: 1px solid rgba(212,175,55,0.2);
  }

  /* ── STATS BANNER ── */
  .stats-banner-bar {
    padding: 1.5rem 0;
    overflow-x: auto;
  }

  .stats-grid {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    padding: 0 1rem;
  }

  .stat-item {
    flex-shrink: 0;
    text-align: center;
    min-width: 100px;
  }

  .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  /* ── APP PROMO ── */
  .app-promo-section {
    padding: 2rem 0;
    border-radius: 0;
  }

  .app-promo-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    align-items: center;
  }

  .app-promo-title {
    font-size: 1.5rem;
  }

  .app-promo-sub {
    font-size: 0.85rem;
  }

  .app-badge-row {
    justify-content: center;
  }

  /* ── SAMAGRI CARD ── */
  .mobile-samagri-card {
    display: flex !important;
    border-radius: 20px;
    margin: 1.25rem 0 1.5rem;
    box-shadow: 0 8px 24px rgba(62,10,13,0.22);
  }

  .samagri-heading {
    font-size: 1.05rem;
  }

  .samagri-text {
    font-size: 0.73rem;
  }

  /* ── FOOTER ── */
  .site-footer {
    padding: 2rem 0 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-col-brand {
    text-align: center;
  }

  .footer-col-brand .footer-brand-header {
    justify-content: center;
  }

  .footer-brand-desc {
    font-size: 0.82rem;
    max-width: 90%;
    margin: 0 auto;
  }

  .footer-contact-item {
    justify-content: center;
    text-align: center;
  }

  .footer-col-heading {
    font-size: 0.88rem;
    text-align: center;
  }

  .footer-col-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links {
    text-align: center;
  }

  .footer-links li a {
    justify-content: center;
  }

  .footer-location-card {
    border-radius: 16px;
    padding: 1rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding: 1rem 0;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ── BOTTOM NAV — PREMIUM UPGRADE ── */
  .mobile-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,253,249,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(212,175,55,0.3);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
    padding: 0.35rem 0.5rem calc(0.35rem + env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: stretch;
  }

  .mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #9E8C80;
    font-size: 0.62rem;
    font-weight: 600;
    gap: 0.18rem;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    min-width: 52px;
  }

  .mob-nav-item.active {
    color: var(--color-orange-primary);
    background: rgba(241,118,0,0.09);
  }

  .mob-nav-item:hover {
    color: var(--color-orange-primary);
  }

  .mob-nav-icon {
    font-size: 1.3rem;
    line-height: 1;
  }

  /* Active dot indicator */
  .mob-nav-item.active::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-orange-primary);
    margin: 0 auto;
    margin-top: 1px;
  }

  /* ── SECTION PADDING CONSISTENCY ── */
  .popular-poojas-section,
  .how-it-works-section,
  .reviews-section,
  .why-choose-banner-section {
    padding-left: 0;
    padding-right: 0;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* ── CARD TOUCH IMPROVEMENTS ── */
  .pooja-card-template,
  .m-pooja-card,
  .review-card,
  .step-card-item {
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
  }

  .btn-pill-orange,
  .btn-pill-outline,
  .btn-card-book,
  .samagri-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* ── SECTION TITLES ON MOBILE ── */
  .section-title-ornate {
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
  }

  .section-subtitle {
    font-size: 0.82rem;
  }

  /* ── MOBILE DRAWER UPGRADE ── */
  .mobile-drawer {
    width: 85vw;
    max-width: 320px;
    border-radius: 0 24px 24px 0;
    box-shadow: 4px 0 32px rgba(0,0,0,0.18);
  }

  .mobile-drawer-header {
    padding: 1rem 1.25rem 0.75rem;
    border-bottom: 1px solid rgba(212,175,55,0.25);
    background: linear-gradient(135deg, #FFFDF9, #FFF4E6);
  }

  .mobile-drawer-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(212,175,55,0.2);
    background: #FFFDF9;
  }

  /* Smooth transitions on interactive items */
  a, button {
    transition: opacity 0.15s ease;
  }

  a:active, button:active {
    opacity: 0.75;
  }
}

/* ── PHONE-SPECIFIC (max-width: 480px) ── */
@media (max-width: 480px) {

  .hero-main-title {
    font-size: 1.2rem;
  }

  .hero-sub-copy {
    font-size: 0.7rem;
  }

  .m-action-card-orange .card-title,
  .m-action-card-white .card-title {
    font-size: 0.82rem;
  }

  .m-action-card-orange .card-sub,
  .m-action-card-white .card-sub {
    font-size: 0.68rem;
  }

  .mobile-popular-title {
    font-size: 1.1rem;
  }

  .why-left-title {
    font-size: 1.25rem;
  }

  .section-title-ornate {
    font-size: 1.2rem;
  }

  .app-promo-title {
    font-size: 1.25rem;
  }

  .hero-values-top-bar {
    gap: 0.4rem;
  }

  .hero-value-icon {
    width: 26px;
    height: 26px;
  }

  .hero-value-icon svg {
    width: 13px;
    height: 13px;
  }

  .hero-value-text {
    font-size: 0.5rem;
    padding: 2px 6px;
  }

  .why-icons-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .footer-grid {
    gap: 1.25rem;
  }
}

/* ── TABLET-SPECIFIC (481px – 991px) ── */
@media (min-width: 481px) and (max-width: 991px) {

  .hero-main-title {
    font-size: 1.7rem;
  }

  .hero-sub-copy {
    font-size: 0.85rem;
  }

  .why-icons-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .step-card-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-number-circle {
    margin: 0 auto 0.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-col-brand .footer-brand-header {
    justify-content: center;
  }

  .m-pooja-card {
    flex: 0 0 175px;
  }

  .review-card {
    flex: 0 0 calc(50vw - 2rem);
  }

  .hero-stats-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: auto;
  }

  .hero-stat-box {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
}

/* ==========================================================================
   CEREMONY PHOTO GALLERY & PINTEREST-STYLE EXPANDING UI
   ========================================================================== */

.gallery-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #FAF7F2 0%, #FFFFFF 40%, #FAF7F2 100%);
  position: relative;
  overflow: hidden;
}

.gallery-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.gallery-header-text {
  max-width: 680px;
}

.gallery-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-maroon-primary);
  background: rgba(212, 160, 23, 0.15);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 0.6rem;
  border: 1px solid rgba(212, 160, 23, 0.3);
}

.gallery-subtitle {
  color: #665249;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0.4rem;
}

.gallery-view-all-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.35rem;
  border-radius: 50px;
  border: 1.5px solid var(--color-gold);
  color: var(--color-maroon-primary);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s ease;
  background: #FFF;
  text-decoration: none;
  white-space: nowrap;
}

.gallery-view-all-btn:hover {
  background: var(--color-maroon-primary);
  color: #FFF;
  border-color: var(--color-maroon-primary);
  box-shadow: 0 4px 15px rgba(114, 21, 23, 0.25);
}

/* ── 1. Pinterest Interactive Expanding Showcase ── */
.pinterest-showcase-container {
  background: #181110;
  border: 1.5px solid rgba(212, 160, 23, 0.35);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 0 40px rgba(212, 160, 23, 0.08);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.pinterest-showcase-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 12px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  margin-bottom: 14px;
}

.showcase-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.showcase-title {
  color: #E8D8CC;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-left: 6px;
}

.showcase-badge {
  margin-left: auto;
  background: rgba(212, 160, 23, 0.2);
  color: #F8D376;
  border: 1px solid rgba(212, 160, 23, 0.4);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 2px 10px;
  border-radius: 20px;
}

.pinterest-showcase {
  display: flex;
  gap: 12px;
  height: 520px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.pinterest-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
  transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Sibling columns shrink when any column is hovered */
.pinterest-showcase:hover .pinterest-col {
  flex: 0.75;
}

/* Hovered column expands dynamically */
.pinterest-showcase .pinterest-col:hover {
  flex: 3.5;
}

.pinterest-item {
  position: relative;
  flex: 1;
  min-height: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #251B18;
  transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
  user-select: none;
}

/* Inside hovered column, the hovered item expands vertically */
.pinterest-col:hover .pinterest-item {
  flex: 1;
}

.pinterest-col:hover .pinterest-item:hover {
  flex: 2.6;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55);
}

.pinterest-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.35s ease;
}

.pinterest-item:hover img {
  transform: scale(1.08);
}

.pinterest-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(14, 8, 7, 0.95) 0%, rgba(14, 8, 7, 0.6) 65%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: auto;
  z-index: 5;
}

.pinterest-item:hover .pinterest-item-overlay,
.pinterest-item.touch-active .pinterest-item-overlay {
  opacity: 1;
  transform: translateY(0);
}

.pinterest-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.pinterest-tag {
  display: inline-block;
  background: var(--color-gold);
  color: #191210;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 9px;
  border-radius: 50px;
  align-self: flex-start;
}

.pinterest-book-btn {
  background: #FFF;
  color: var(--color-maroon-primary);
  border: none;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.pinterest-book-btn:hover {
  background: var(--color-gold);
  color: #191210;
}

.pinterest-sub {
  color: #FFF;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
}

/* ── 2. Filter Pills ── */
.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 1.5rem 0 2rem;
}

.filter-pill {
  background: #FFF;
  color: var(--color-maroon-primary);
  border: 1.5px solid rgba(114, 21, 23, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--color-maroon-primary);
  color: #FFF;
  border-color: var(--color-maroon-primary);
  box-shadow: 0 4px 14px rgba(114, 21, 23, 0.25);
  transform: translateY(-1px);
}

/* ── 3. Pinterest Masonry Grid with Hover Enlarge ── */
.pinterest-masonry-grid {
  column-count: 4;
  column-gap: 18px;
}

.masonry-card {
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #FFF;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              z-index 0s;
  z-index: 1;
}

/* Pinterest style hover enlarge */
.masonry-card:hover {
  transform: scale(1.09) translateY(-6px);
  z-index: 40;
  box-shadow: 0 25px 50px rgba(114, 21, 23, 0.26), 0 10px 20px rgba(0, 0, 0, 0.12);
}

.masonry-card-img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.masonry-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.masonry-card:hover img {
  transform: scale(1.06);
}

/* Card details overlay */
.masonry-card-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(16, 10, 9, 0.92) 0%, rgba(16, 10, 9, 0.55) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.masonry-card:hover .masonry-card-details {
  opacity: 1;
  transform: translateY(0);
}

.masonry-badge {
  background: var(--color-gold);
  color: #191210;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 20px;
  align-self: flex-start;
}

.masonry-title {
  color: #FFF;
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.masonry-location {
  color: #E8D8CC;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.masonry-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.masonry-btn-book {
  background: #FFF;
  color: var(--color-maroon-primary);
  border: none;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 5;
  transition: all 0.2s ease;
}

.masonry-btn-book:hover {
  background: var(--color-gold);
  color: #191210;
  transform: scale(1.05);
}

/* Lightbox Modal */
.gallery-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(12, 7, 6, 0.94);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.gallery-lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-card {
  background: #1F1715;
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: 24px;
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  position: relative;
  display: flex;
  flex-direction: column;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-lightbox-modal.active .gallery-lightbox-card {
  transform: scale(1);
}

.gallery-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.65);
  color: #FFF;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox-close:hover {
  background: var(--color-maroon-primary);
  transform: rotate(90deg);
}

.gallery-lightbox-img-wrap {
  width: 100%;
  max-height: 60vh;
  background: #0E0807;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-lightbox-img-wrap img {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
}

.gallery-lightbox-body {
  padding: 18px 24px;
  background: #1F1715;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.gallery-lightbox-meta h3 {
  color: #FFF;
  font-size: 1.15rem;
  margin: 0 0 4px 0;
}

.gallery-lightbox-meta span {
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 600;
}

.gallery-lightbox-actions {
  display: flex;
  gap: 10px;
}

/* Mobile & Responsive tweaks */
@media (max-width: 991px) {
  .pinterest-showcase {
    height: 440px;
  }
  .pinterest-masonry-grid {
    column-count: 3;
    column-gap: 14px;
  }
}

@media (max-width: 767px) {
  .gallery-section {
    padding: 3rem 0;
  }
  .pinterest-showcase-container {
    padding: 12px;
    border-radius: 20px;
    margin-bottom: 2rem;
  }
  .pinterest-showcase {
    height: 360px;
    gap: 8px;
  }
  .pinterest-col {
    gap: 8px;
  }
  .pinterest-showcase:hover .pinterest-col {
    flex: 0.8;
  }
  .pinterest-showcase .pinterest-col:hover {
    flex: 2.8;
  }
  .pinterest-masonry-grid {
    column-count: 2;
    column-gap: 12px;
  }
  .masonry-card {
    margin-bottom: 12px;
    border-radius: 14px;
  }
  .masonry-card:hover {
    transform: scale(1.04) translateY(-3px);
  }
  .masonry-card-details {
    opacity: 1;
    transform: translateY(0);
    padding: 10px;
    background: linear-gradient(to top, rgba(16, 10, 9, 0.9) 0%, transparent 100%);
  }
  .masonry-title {
    font-size: 0.8rem;
  }
  .masonry-btn-book {
    padding: 3px 8px;
    font-size: 0.7rem;
  }
  .gallery-lightbox-card {
    border-radius: 18px;
  }
  .gallery-lightbox-body {
    padding: 14px;
  }
}

/* ============================================================
   NATIVE MOBILE & TABLET APP UI (MOCKUP SCREENS 1 - 8)
   Strictly scoped to max-width: 991px. Desktop (>=992px) 100% UNTOUCHED
   ============================================================ */
@media (min-width: 992px) {
  .mobile-app-view,
  .app-detail-modal-overlay {
    display: none !important;
  }
}

@media (max-width: 991px) {
  /* Hide upper desktop/bell header and desktop-only sections on mobile */
  .site-header,
  .hero-wrapper,
  .desktop-only-section,
  .mobile-popular-section {
    display: none !important;
  }

  body {
    background-color: #FBF8F3 !important;
  }

  .mobile-app-view {
    display: block !important;
    background-color: #FBF8F3;
    padding-bottom: 75px;
    color: #2E1E19;
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  /* SCREEN 1: Mobile App Header */
  .app-mobile-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    background: #2D0B0E;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }

  .app-header-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
  }

  .app-header-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #D4AF37;
  }

  .app-header-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #FDFBF7;
    letter-spacing: 0.5px;
    line-height: 1.1;
  }

  .app-header-tagline {
    font-size: 0.62rem;
    color: #DFB967;
    letter-spacing: 0.8px;
    font-weight: 600;
  }

  .app-hamburger-btn {
    background: none;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    padding: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .app-hamburger-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.2;
  }

  /* SCREEN 1: Hero Section (Longer & spacious layout) */
  .app-hero {
    position: relative;
    width: 100%;
    min-height: clamp(570px, 74vh, 680px);
    background: url('../images/hero-bg-master.jpg') no-repeat center 20%;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3.5rem 1.25rem 2.25rem 1.25rem;
    box-sizing: border-box;
    overflow: hidden;
  }

  .app-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(35, 10, 13, 0.22) 0%, rgba(20, 6, 8, 0.1) 32%, rgba(18, 5, 7, 0.84) 76%, rgba(18, 5, 7, 0.98) 100%);
    z-index: 1;
  }

  .app-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .app-hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.65rem, 6.2vw, 2.15rem);
    font-weight: 800;
    color: #FFF8EE;
    line-height: 1.18;
    margin: 0 0 0.6rem 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  }

  .app-hero-subtext {
    font-size: 0.88rem;
    color: #F3E7DC;
    line-height: 1.4;
    max-width: 320px;
    margin: 0 0 1.1rem 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }

  .app-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFFFFF;
    color: #2E1E19;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.18);
    margin-bottom: 0.85rem;
    border: none;
    cursor: pointer;
  }

  .app-location-badge .loc-icon {
    font-size: 0.95rem;
  }

  .app-location-badge .caret {
    font-size: 0.7rem;
    color: #666;
    margin-left: 2px;
  }

  .app-hero-cta {
    width: 100%;
    background: linear-gradient(135deg, #541419, #7A1C23);
    color: #FFFFFF;
    font-size: 0.98rem;
    font-weight: 800;
    padding: 0.88rem 1.5rem;
    border-radius: 999px;
    border: none;
    box-shadow: 0 4px 18px rgba(84, 20, 25, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease;
  }

  .app-hero-cta:active {
    transform: scale(0.98);
  }

  /* SCREEN 1: Trust Badges Ribbon (4 in a row) */
  .app-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #FBF8F3;
    padding: 1.25rem 0.65rem;
    border-bottom: 1px solid #ECE3D5;
    gap: 4px;
    text-align: center;
  }

  .app-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .app-trust-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #FFF5E6;
    border: 1.5px solid #DFB967;
    color: #B8860B;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(223, 185, 103, 0.2);
  }

  .app-trust-icon svg {
    width: 18px;
    height: 18px;
  }

  .app-trust-text {
    font-size: 0.65rem;
    font-weight: 700;
    color: #4A3E38;
    line-height: 1.22;
    text-align: center;
  }

  /* SCREEN 2: Choose Your Pooja */
  .app-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.6rem 1rem 0.85rem 1rem;
  }

  .app-section-title-group h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #4A1519;
    margin: 0 0 2px 0;
  }

  .app-section-title-group p {
    font-size: 0.78rem;
    color: #8C7D73;
    margin: 0;
  }

  .app-search-trigger {
    background: none;
    border: none;
    color: #4A1519;
    cursor: pointer;
    padding: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .app-search-trigger svg {
    width: 20px;
    height: 20px;
  }

  .app-poojas-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 1rem 1.15rem 1rem;
  }

  .app-pooja-card-item {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    border: 1px solid #ECE3D5;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.15s ease;
  }

  .app-pooja-card-item:active {
    transform: scale(0.98);
  }

  .app-pooja-img-wrap {
    width: 100%;
    height: 110px;
    overflow: hidden;
    position: relative;
    background: #EFE6D8;
  }

  .app-pooja-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .app-pooja-card-label {
    padding: 0.65rem 0.4rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #2E1E19;
  }

  .app-view-all-row {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
  }

  .app-btn-pill-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFFFFF;
    border: 1.5px solid #541419;
    color: #541419;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }

  .app-wa-help-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #541419, #6E1A21);
    color: #FFFFFF;
    border-radius: 16px;
    padding: 0.95rem 1.15rem;
    margin: 0 1rem 1.75rem 1rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(84, 20, 25, 0.25);
    cursor: pointer;
  }

  .app-wa-help-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #25D366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
  }

  .app-wa-help-icon svg {
    width: 24px;
    height: 24px;
  }

  .app-wa-help-text h3 {
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0 0 2px 0;
    color: #FFFFFF;
  }

  .app-wa-help-text p {
    font-size: 0.78rem;
    color: #F8DBC2;
    margin: 0;
  }

  /* SCREEN 5: Our Pandits */
  .app-pandits-section {
    padding: 0 1rem 1.75rem 1rem;
  }

  .app-pandits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .app-pandit-card-item {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #ECE3D5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    padding: 0.85rem;
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .app-single-pandit-card {
    border: 1.5px solid rgba(212,175,55,0.45) !important;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF9 100%) !important;
    box-shadow: 0 6px 20px rgba(84,20,25,0.07) !important;
  }

  .app-view-all-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: #541419;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }
  .app-view-all-link:hover {
    opacity: 0.8;
  }

  .app-pandit-photo {
    width: 76px;
    height: 76px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .app-pandit-info {
    flex: 1;
    min-width: 0;
  }

  .app-pandit-title {
    font-size: 0.96rem;
    font-weight: 800;
    color: #2E1E19;
    margin: 0 0 2px 0;
  }

  .app-pandit-rating-row {
    font-size: 0.78rem;
    font-weight: 700;
    color: #443630;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 2px;
  }

  .app-pandit-rating-row .star {
    color: #E6A117;
  }

  .app-pandit-lineage-text {
    font-size: 0.72rem;
    color: #7D6F66;
    margin-bottom: 6px;
  }

  .app-pandit-badges-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .app-badge-pill {
    background: #EBF6EE;
    color: #2E7D32;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
  }

  /* SCREEN 6: Ceremony Gallery */
  .app-gallery-section {
    padding: 0 1rem 1.75rem 1rem;
  }

  .app-gallery-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 0.65rem;
    margin-bottom: 0.75rem;
  }

  .app-gal-pill {
    background: #FFFFFF;
    border: 1px solid #E2D7CC;
    color: #554842;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.38rem 1.1rem;
    border-radius: 999px;
    white-space: nowrap;
    cursor: pointer;
  }

  .app-gal-pill.active {
    background: #541419;
    border-color: #541419;
    color: #FFFFFF;
  }

  .app-gallery-masonry-2col {
    column-count: 2;
    column-gap: 10px;
  }

  .app-masonry-item {
    break-inside: avoid;
    margin-bottom: 10px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    background: #FFFFFF;
    border: 1px solid #ECE3D5;
    cursor: pointer;
  }

  .app-masonry-item img {
    width: 100%;
    display: block;
    border-radius: 14px;
    object-fit: cover;
  }

  /* SCREEN 7: Customer Reviews */
  .app-reviews-section {
    padding: 0 1rem 1.75rem 1rem;
  }

  .app-reviews-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 1.25rem;
  }

  .app-review-card-item {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #ECE3D5;
    box-shadow: 0 3px 12px rgba(0,0,0,0.04);
    padding: 1.1rem;
  }

  .app-review-stars-row {
    color: #E6A117;
    font-size: 0.95rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .app-review-stars-row .score {
    font-weight: 800;
    font-size: 0.85rem;
    color: #2E1E19;
    margin-left: 4px;
  }

  .app-review-quote {
    font-size: 0.84rem;
    line-height: 1.45;
    color: #4A3C35;
    font-style: italic;
    margin: 0 0 0.85rem 0;
  }

  .app-review-profile {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .app-review-avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #EDE3D5;
    color: #541419;
    font-weight: 800;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .app-review-name-block strong {
    display: block;
    font-size: 0.86rem;
    font-weight: 800;
    color: #2E1E19;
  }

  .app-review-name-block span {
    font-size: 0.72rem;
    color: #8A7B72;
  }

  /* SCREEN 8: Why Choose Pandit Ji Express? */
  .app-why-section {
    padding: 0 1rem 1.5rem 1rem;
  }

  .app-why-list-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 1.5rem;
  }

  .app-why-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .app-why-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #FFF5E6;
    border: 1.5px solid #DFB967;
    color: #B8860B;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .app-why-circle svg {
    width: 20px;
    height: 20px;
  }

  .app-why-text-box h3 {
    font-size: 0.92rem;
    font-weight: 800;
    color: #2E1E19;
    margin: 0 0 2px 0;
  }

  .app-why-text-box p {
    font-size: 0.78rem;
    color: #7D6F66;
    margin: 0;
    line-height: 1.35;
  }

  .app-ready-card-banner {
    background: linear-gradient(135deg, #541419, #6E1A21);
    border-radius: 20px;
    padding: 1.35rem 1rem;
    color: #FFFFFF;
    text-align: center;
    box-shadow: 0 6px 20px rgba(84, 20, 25, 0.3);
  }

  .app-ready-card-banner h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 1rem 0;
  }

  .app-ready-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .app-ready-call-btn {
    background: #FFFFFF;
    color: #541419;
    border-radius: 999px;
    padding: 0.7rem 0.5rem;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  .app-ready-wa-btn {
    background: #25D366;
    color: #FFFFFF;
    border-radius: 999px;
    padding: 0.7rem 0.5rem;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  }

  /* BOTTOM NAVIGATION BAR (5 TABS) */
  .mobile-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid #ECE3D5;
    box-shadow: 0 -3px 20px rgba(0,0,0,0.08);
    padding: 0.35rem 0.5rem calc(0.35rem + env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: center;
    height: 60px;
  }

  .mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #8A7B72;
    font-size: 0.65rem;
    font-weight: 600;
    gap: 2px;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    min-width: 48px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .mob-nav-item.active {
    color: #541419;
    font-weight: 800;
  }

  .mob-nav-item svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
  }

  .mob-nav-item.active svg {
    stroke: #541419;
  }

  /* SCREEN 3: POOJA DETAIL MODAL */
  .app-detail-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 2000;
    display: none;
    align-items: flex-end;
    justify-content: center;
    backdrop-filter: blur(4px);
  }

  .app-detail-modal-overlay.active {
    display: flex;
  }

  .app-detail-modal-window {
    background: #FFFDF9;
    width: 100%;
    max-width: 480px;
    max-height: 92vh;
    border-radius: 24px 24px 0 0;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
    padding-bottom: 75px;
  }

  .app-detail-top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 10;
  }

  .app-detail-circle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
  }

  .app-detail-hero-banner {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
  }

  .app-detail-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .app-detail-content {
    padding: 1.1rem 1rem;
  }

  .app-detail-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #2E1E19;
    margin: 0 0 3px 0;
  }

  .app-detail-sub {
    font-size: 0.82rem;
    color: #7D6F66;
    margin: 0 0 6px 0;
  }

  .app-detail-rating-row {
    font-size: 0.8rem;
    font-weight: 700;
    color: #443630;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 1rem;
  }

  .app-detail-pill-badges {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }

  .app-detail-pill-tag {
    background: #F4ECE1;
    color: #541419;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
    border: 1px solid #E5DACB;
  }

  .app-detail-tabs-bar {
    display: flex;
    border-bottom: 1px solid #EFE6D8;
    margin-bottom: 1rem;
  }

  .app-detail-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 0.6rem 0.2rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #8C7D73;
    text-align: center;
    border-bottom: 2.5px solid transparent;
    cursor: pointer;
  }

  .app-detail-tab-btn.active {
    color: #541419;
    border-bottom-color: #541419;
  }

  .app-detail-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 0.75rem;
  }

  .app-detail-bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #3E3029;
    font-weight: 600;
  }

  .app-detail-bullet-item .check {
    color: #2E7D32;
    font-weight: 800;
  }

  .app-detail-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-top: 1px solid #EFE6D8;
    padding: 0.75rem 1.25rem calc(0.75rem + env(safe-area-inset-bottom));
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2010;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  }

  .app-detail-price-box {
    display: flex;
    flex-direction: column;
  }

  .app-detail-price-sub {
    font-size: 0.68rem;
    color: #8C7D73;
    font-weight: 600;
  }

  .app-detail-price-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: #2E1E19;
  }

  .app-detail-book-btn {
    background: linear-gradient(135deg, #541419, #7A1C23);
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.8rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(84,20,25,0.3);
  }

  /* SCREEN 4: BOOKING DATE & TIME WIZARD */
  .app-calendar-box {
    background: #FFFFFF;
    border: 1px solid #EFE6D8;
    border-radius: 16px;
    padding: 0.85rem;
    margin-bottom: 1.15rem;
  }

  .app-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 0.92rem;
    color: #2E1E19;
    margin-bottom: 0.75rem;
  }

  .app-cal-arrow {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #541419;
    cursor: pointer;
    padding: 0 0.5rem;
  }

  .app-cal-days-head {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #8C7D73;
    margin-bottom: 6px;
  }

  .app-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
  }

  .app-cal-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: #2E1E19;
    border-radius: 50%;
    cursor: pointer;
  }

  .app-cal-date.active {
    background: #541419;
    color: #FFFFFF;
    font-weight: 800;
  }

  .app-time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 1.25rem;
  }

  .app-time-pill {
    background: #FFFFFF;
    border: 1px solid #E2D7CC;
    border-radius: 999px;
    padding: 0.55rem 0.3rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4A3C35;
    cursor: pointer;
  }

  .app-time-pill.active {
    background: #541419;
    border-color: #541419;
    color: #FFFFFF;
  }

  .app-input-icon-wrap {
    position: relative;
    margin-bottom: 0.75rem;
  }

  .app-input-icon-wrap .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: #8C7D73;
  }

  .app-input-icon-wrap input,
  .app-input-icon-wrap textarea {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E2D7CC;
    border-radius: 12px;
    padding: 0.75rem 0.85rem 0.75rem 2.4rem;
    font-size: 0.85rem;
    color: #2E1E19;
    box-sizing: border-box;
    font-family: inherit;
  }

  .app-continue-btn {
    width: 100%;
    background: linear-gradient(135deg, #541419, #7A1C23);
    color: #FFFFFF;
    border: none;
    border-radius: 999px;
    padding: 0.88rem;
    font-size: 0.98rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(84,20,25,0.4);
    margin-top: 0.5rem;
  }

  /* ============================================================
     SERVICES.HTML (POOJAS PAGE) MOBILE APPLICATION OPTIMIZATION
     ============================================================ */
  /* Hide clunky desktop subpage hero and breadcrumbs on mobile */
  .subpage-hero,
  .breadcrumb-nav {
    display: none !important;
  }

  /* Mobile App Poojas Page Header */
  .mobile-services-app-header {
    display: block !important;
    padding: 1.1rem 0.25rem 0.4rem;
  }
  .mobile-services-app-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: #2E1E19;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
  }
  .mobile-services-app-sub {
    font-size: 0.82rem;
    color: #7A6A60;
    margin: 0;
  }

  /* Mobile Search Bar */
  .mobile-search-bar {
    display: block !important;
    margin: 0.75rem 0 0.85rem !important;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E2D7CC;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .desktop-search-bar {
    display: none !important;
  }

  /* Layout container on mobile */
  .poojas-page-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 0.5rem !important;
  }

  /* Category horizontal scrolling ribbon */
  .pooja-category-sidebar {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 0.85rem !important;
    box-shadow: none !important;
    width: 100% !important;
  }
  .pooja-category-sidebar h3 {
    display: none !important;
  }
  .category-nav-list {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 0.5rem !important;
    padding: 0.2rem 0.25rem 0.5rem !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    margin: 0 !important;
    list-style: none !important;
  }
  .category-nav-list::-webkit-scrollbar {
    display: none !important;
  }
  .category-nav-list li {
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
  }
  .category-nav-link {
    display: inline-block !important;
    background: #FFFFFF !important;
    border: 1px solid #E2D7CC !important;
    padding: 0.45rem 1rem !important;
    border-radius: 999px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: #555 !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
  }
  .category-nav-link.active {
    background: #541419 !important;
    color: #FFFFFF !important;
    border-color: #541419 !important;
    box-shadow: 0 3px 10px rgba(84,20,25,0.3) !important;
  }

  .poojas-main-content {
    width: 100% !important;
    padding: 0 !important;
  }

  /* 2-Column Mobile Pooja Cards Grid */
  .poojas-grid-3col {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin-bottom: 1.25rem !important;
  }
  .pooja-item-card {
    border-radius: 16px !important;
    overflow: hidden !important;
    border: 1px solid #ECE3D5 !important;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05) !important;
    background: #FFFFFF !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.2s ease !important;
  }
  .pooja-item-img {
    height: 110px !important;
    width: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
  .pooja-item-body {
    padding: 0.75rem 0.65rem 0.85rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
  }
  .pooja-item-title {
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.25rem !important;
    line-height: 1.25 !important;
    color: #2E1E19 !important;
  }
  .pooja-item-price {
    font-size: 0.72rem !important;
    color: #7A6A60 !important;
    margin-bottom: 0.65rem !important;
    line-height: 1.3 !important;
    flex: 1 !important;
  }
  .pooja-item-btn {
    width: 100% !important;
    padding: 0.45rem 0.5rem !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    text-align: center !important;
    background: linear-gradient(135deg, #541419, #7A1C23) !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(84,20,25,0.25) !important;
    margin-top: auto !important;
  }

  /* WhatsApp Help Banner on Mobile */
  .mobile-services-whatsapp-banner {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #2E0B0E 0%, #541419 100%);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 20px;
    padding: 1.25rem 1rem;
    margin: 0.5rem 0 1.5rem;
    box-shadow: 0 6px 20px rgba(84,20,25,0.2);
  }
  .mobile-services-wa-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.65rem;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  }
  .mobile-services-wa-icon svg {
    width: 24px;
    height: 24px;
    fill: #FFFFFF;
  }
  .mobile-services-wa-title {
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 0.35rem 0;
    font-family: var(--font-heading);
  }
  .mobile-services-wa-desc {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0 0 0.85rem 0;
  }
  .mobile-services-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #FFFFFF !important;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  }

  /* Hide bulky desktop promos and footer on mobile services page */
  .pooja-bottom-promos {
    display: none !important;
  }
  .site-footer {
    display: none !important;
  }

  /* Mobile App Simple Brand Footer */
  .mobile-app-simple-footer {
    display: block !important;
    background: #2E0B0E;
    color: #FFFFFF;
    padding: 1.5rem 1rem 5.5rem;
    text-align: center;
    border-top: 2px solid #D4AF37;
  }
  .mobile-app-sf-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
  }
  .mobile-app-sf-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #FFF5E6;
    letter-spacing: 0.04em;
  }
  .mobile-app-sf-tag {
    display: block;
    font-size: 0.62rem;
    color: #D4AF37;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
  .mobile-app-simple-footer p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.45;
    margin: 0 0 0.75rem 0;
  }
  .mobile-app-sf-copy {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
  }
}

/* Tiny Floating Call & WhatsApp Action Buttons (Above bottom nav bar) */
.app-floating-contact-pills {
  position: fixed;
  bottom: 80px; /* Elevated cleanly above 60px bottom nav bar */
  right: 14px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.app-float-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.app-float-btn:hover,
.app-float-btn:active {
  transform: scale(1.15);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
}

.app-float-wa {
  background: #25D366;
  color: #FFFFFF;
}

.app-float-wa svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
}

.app-float-call {
  background: linear-gradient(135deg, #541419, #7A1C23);
  color: #FFFFFF;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
}

.app-float-call svg {
  width: 17px;
  height: 17px;
  stroke: #FFFFFF;
}

@media (min-width: 992px) {
  .app-floating-contact-pills,
  .app-mobile-header,
  .mobile-services-app-header,
  .mobile-search-bar,
  .mobile-services-whatsapp-banner,
  .mobile-app-simple-footer {
    display: none !important;
  }
}




