/*
Theme Name:  Trimbakeshwar Puja Services
Theme URI:   https://trimbakeshwarpujaservices.com
Author:      Ashutosh Dubey Guruji Shastri
Author URI:  https://trimbakeshwarpujaservices.com
Description: Custom WordPress theme for Trimbakeshwar Puja Services by Ashutosh Dubey Guruji. Saffron, gold, deep red spiritual palette. Optimised for conversions (WhatsApp + phone) and local SEO.
Version:     1.0.0
License:     Private
Text Domain: trimbakeshwar
Tags:        spiritual, puja, temple, saffron, one-page, SEO

/* ─── DESIGN TOKENS ─────────────────────────────────────────────────────── */
:root {
  --saffron:       #B8460B;
  --saffron-light: #D4551A;
  --saffron-pale:  #FFF3EB;
  --gold:          #B8860B;
  --gold-light:    #D4A017;
  --gold-pale:     #FFF8DC;
  --deep-red:      #7B2D00;
  --ivory:         #FAF3E0;
  --ivory-dark:    #F5E6C8;
  --cream:         #FFFDF5;
  --text-dark:     #1A0800;
  --text-mid:      #4A2800;
  --text-light:    #7A5230;
  --white:         #FFFFFF;
  --wa-green:      #25D366;
  --wa-dark:       #128C7E;
  --shadow-sm:     0 2px 8px rgba(184,70,11,0.12);
  --shadow-md:     0 4px 20px rgba(184,70,11,0.18);
  --shadow-lg:     0 8px 40px rgba(184,70,11,0.25);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
  --font-heading:  'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
  --font-body:     'Lato', 'Segoe UI', sans-serif;
  --font-devanagari: 'Noto Serif Devanagari', serif;
  --max-width:     1200px;
}

/* ─── RESET & BASE ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--saffron); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--deep-red); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  color: var(--deep-red);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(1.8rem,4vw,3rem); }
h2 { font-size: clamp(1.4rem,3vw,2.2rem); }
h3 { font-size: clamp(1.1rem,2vw,1.5rem); }
p  { margin-bottom: 1rem; color: var(--text-mid); }

/* ─── LAYOUT ─────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--ivory); }
.section--dark { background: var(--deep-red); color: var(--ivory); }
.section--dark h1,.section--dark h2,.section--dark h3 { color: var(--gold-light); }
.section--dark p { color: var(--ivory-dark); }
.section--saffron { background: var(--saffron); color: var(--white); }
.section--saffron h2 { color: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ─── STICKY TOP BAR ─────────────────────────────────────────────────────── */
#top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--deep-red);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
#top-bar a {
  color: var(--gold-light);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
}
#top-bar a:hover { color: var(--white); }
.top-bar__available { color: var(--ivory-dark); font-size: 0.8rem; }

/* ─── NAVIGATION ─────────────────────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 9990;
  background: rgba(255,253,245,0.97);
  border-bottom: 3px solid var(--gold);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
}
#main-nav.scrolled {
  top: 0;
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1.2;
}
.nav-logo span { display: block; font-size: 0.75rem; color: var(--text-light); font-family: var(--font-body); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.03em;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--saffron); border-bottom-color: var(--saffron); }
.nav-cta {
  background: var(--saffron);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--deep-red) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--saffron); transition: all var(--transition); }
body { padding-top: 100px; }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--deep-red) 0%, #4A1200 40%, #2D0A00 100%);
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(184,134,11,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184,70,11,0.2) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8860B' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184,134,11,0.2);
  border: 1px solid rgba(184,134,11,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem,5vw,3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title span { color: var(--gold-light); display: block; }
.hero-subtitle {
  font-size: clamp(1rem,2vw,1.2rem);
  color: rgba(255,248,220,0.85);
  margin-bottom: 2rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero-mantra {
  font-family: var(--font-devanagari);
  font-size: clamp(1rem,2.2vw,1.4rem);
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.hero-mantra-translation {
  font-size: 0.85rem;
  color: rgba(255,248,220,0.6);
  font-style: italic;
  margin-bottom: 2.5rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.hero-trust-item strong {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--gold-light);
}
.hero-trust-item span {
  font-size: 0.75rem;
  color: rgba(255,248,220,0.7);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,248,220,0.5);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(6px)} }

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-wa:hover { background: var(--wa-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.btn-call {
  background: var(--saffron);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(184,70,11,0.3);
}
.btn-call:hover { background: var(--deep-red); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--saffron);
  color: var(--saffron);
}
.btn-outline:hover { background: var(--saffron); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--deep-red); color: var(--white); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

/* ─── SECTION HEADERS ────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.75rem;
  padding: 0.3rem 1rem;
  border: 1px solid rgba(184,70,11,0.25);
  border-radius: 50px;
  background: var(--saffron-pale);
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto 0;
  max-width: 300px;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.section-divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
}
.section-divider span { color: var(--gold); font-size: 1.2rem; }

/* ─── PUJA CARDS (Services Grid) ─────────────────────────────────────────── */
.puja-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.puja-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--ivory-dark);
  position: relative;
}
.puja-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.puja-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--deep-red), var(--saffron));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.puja-card__body { padding: 1.4rem; }
.puja-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--deep-red);
  margin-bottom: 0.5rem;
}
.puja-card__desc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0.75rem; line-height: 1.5; }
.puja-card__price {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--saffron);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.puja-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--saffron);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
}

/* ─── ABOUT GURUJI ───────────────────────────────────────────────────────── */
.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo img { width: 100%; }
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 3px solid var(--gold);
  pointer-events: none;
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--deep-red), var(--saffron));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,248,220,0.6);
  font-size: 0.85rem;
  text-align: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
}
.about-photo-placeholder::before { content: '📷'; font-size: 3rem; }
.about-content { display: flex; flex-direction: column; gap: 1.5rem; }
.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.credential-item {
  background: var(--ivory);
  border-radius: var(--radius-sm);
  padding: 1rem;
  border-left: 4px solid var(--gold);
}
.credential-item .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.credential-item .value {
  font-weight: 700;
  color: var(--deep-red);
  font-size: 0.95rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  padding: 1.5rem;
  background: var(--deep-red);
  border-radius: var(--radius-md);
}
.stat-item { text-align: center; }
.stat-item .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1;
  display: block;
}
.stat-item .label {
  font-size: 0.72rem;
  color: rgba(255,248,220,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── WHY CHOOSE ─────────────────────────────────────────────────────────── */
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.trust-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--saffron);
  transition: all var(--transition);
}
.trust-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.trust-item h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.trust-item p { font-size: 0.87rem; margin: 0; }

/* ─── PROCESS STEPS ──────────────────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--saffron), var(--gold), var(--saffron));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 5rem;
  height: 5rem;
  background: var(--saffron);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(184,70,11,0.3);
  border: 3px solid var(--white);
  transition: all var(--transition);
}
.process-step:hover .process-step__num { background: var(--deep-red); transform: scale(1.1); }
.process-step h3 { font-size: 0.9rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.8rem; margin: 0; }

/* ─── TESTIMONIALS ───────────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ivory-dark);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-size: 5rem;
  font-family: var(--font-heading);
  color: var(--gold-pale);
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.9rem; font-style: italic; color: var(--text-mid); margin-bottom: 1.5rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--deep-red); font-size: 0.9rem; }
.testimonial-city { font-size: 0.78rem; color: var(--text-light); }

/* ─── NRI SECTION ────────────────────────────────────────────────────────── */
.nri-features { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.nri-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,248,220,0.15);
}
.nri-feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}
.nri-feature h4 {
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.nri-feature p { font-size: 0.82rem; color: rgba(255,248,220,0.75); margin: 0; }
.nri-flags {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.nri-flag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--ivory);
  border: 1px solid rgba(255,255,255,0.15);
}

/* ─── BLOG CARDS ─────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--ivory-dark);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--ivory-dark), var(--ivory));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-card__body { padding: 1.5rem; }
.blog-card__category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--saffron);
  margin-bottom: 0.5rem;
}
.blog-card__title {
  font-size: 1rem;
  font-family: var(--font-heading);
  color: var(--deep-red);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.blog-card__excerpt { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1rem; }

/* ─── CONTACT SECTION ────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--ivory);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--saffron);
}
.contact-item-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); font-weight: 700; margin-bottom: 0.2rem; }
.contact-item-value { font-weight: 700; color: var(--deep-red); font-size: 1rem; }
.contact-item-value a { color: var(--saffron); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 2px solid var(--ivory-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(184,70,11,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── MAP SECTION ────────────────────────────────────────────────────────── */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--gold);
}
.map-container iframe { display: block; }

/* ─── FINAL CTA ──────────────────────────────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, var(--deep-red) 0%, #4A1200 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23B8860B' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E") center/80px;
}
.final-cta h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.final-cta p { color: rgba(255,248,220,0.8); max-width: 600px; margin: 0 auto 2rem; position: relative; }
.final-cta .buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.final-cta .phone-display {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
}

/* ─── FLOATING BUTTONS ───────────────────────────────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9980;
  background: var(--wa-green);
  color: var(--white);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--transition);
  text-decoration: none;
}
.float-wa:hover { transform: scale(1.1); background: var(--wa-dark); color: var(--white); }
.float-call {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 9980;
  background: var(--saffron);
  color: var(--white);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(184,70,11,0.4);
  transition: all var(--transition);
  text-decoration: none;
}
.float-call:hover { transform: scale(1.1); background: var(--deep-red); color: var(--white); }
.float-pulse {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: pulse-ring 2s cubic-bezier(0.215,0.61,0.355,1) infinite;
  opacity: 0.5;
}
@keyframes pulse-ring { 0%{transform:scale(1);opacity:0.5}80%,100%{transform:scale(1.7);opacity:0} }

/* ─── PUJA SINGLE PAGE ───────────────────────────────────────────────────── */
.puja-header {
  background: linear-gradient(135deg, var(--deep-red) 0%, #4A1200 100%);
  padding: 5rem 0 3rem;
  text-align: center;
}
.puja-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.puja-header .puja-meta { color: rgba(255,248,220,0.75); font-size: 0.9rem; }
.puja-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; padding: 4rem 0; }
.puja-content { background: var(--white); border-radius: var(--radius-md); padding: 3rem; box-shadow: var(--shadow-sm); }
.puja-content h2 {
  color: var(--deep-red);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ivory-dark);
  font-size: 1.4rem;
}
.puja-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.puja-content h3 { color: var(--gold); margin: 1.5rem 0 0.5rem; font-size: 1.1rem; }
.puja-content ul,
.puja-content ol { margin: 0.75rem 0 1rem 1.5rem; }
.puja-content li { margin-bottom: 0.5rem; color: var(--text-mid); font-size: 0.95rem; }
.process-step-block {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--ivory);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--saffron);
}
.process-step-num {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--saffron);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.process-step-content h4 { color: var(--deep-red); margin-bottom: 0.4rem; font-size: 1rem; }
.process-step-content p { margin: 0; font-size: 0.9rem; }
.faq-item { border: 1px solid var(--ivory-dark); border-radius: var(--radius-sm); margin-bottom: 0.75rem; overflow: hidden; }
.faq-question {
  padding: 1rem 1.25rem;
  background: var(--ivory);
  font-weight: 700;
  color: var(--deep-red);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--ivory-dark); }
.faq-question::after { content: '+'; font-size: 1.2rem; color: var(--saffron); }
.faq-answer { padding: 1rem 1.25rem; display: none; font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }
.faq-item.open .faq-question::after { content: '–'; }
.faq-item.open .faq-answer { display: block; }
.puja-sidebar { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ivory-dark);
}
.sidebar-card.highlighted {
  background: var(--deep-red);
  border-color: var(--deep-red);
}
.sidebar-card.highlighted h3 { color: var(--gold-light); }
.sidebar-card.highlighted p { color: rgba(255,248,220,0.8); }
.sidebar-card h3 { font-size: 1rem; margin-bottom: 1rem; color: var(--deep-red); }
.sidebar-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--saffron);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.sidebar-price span { font-size: 0.85rem; font-family: var(--font-body); color: var(--text-light); font-weight: 400; }
.sidebar-features { list-style: none; margin: 1rem 0; padding: 0; }
.sidebar-features li {
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--ivory-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.sidebar-features li::before { content: '✓'; color: var(--saffron); font-weight: 700; flex-shrink: 0; }
.related-pujas { list-style: none; padding: 0; }
.related-pujas li { padding: 0.5rem 0; border-bottom: 1px solid var(--ivory-dark); }
.related-pujas li:last-child { border-bottom: none; }
.related-pujas a { font-size: 0.88rem; display: flex; align-items: center; gap: 0.4rem; }
.related-pujas a::before { content: '→'; color: var(--saffron); }

/* ─── TOC COMPONENT ──────────────────────────────────────────────────────── */
.toc {
  background: var(--ivory);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
  margin-bottom: 2rem;
}
.toc h4 { color: var(--deep-red); margin-bottom: 1rem; font-size: 0.95rem; }
.toc ol { margin-left: 1.2rem; }
.toc li { margin-bottom: 0.35rem; }
.toc a { font-size: 0.88rem; color: var(--saffron); }
.toc a:hover { color: var(--deep-red); }

/* ─── IMAGE PLACEHOLDER (replace with real photos) ───────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, var(--ivory-dark), var(--ivory));
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.82rem;
  text-align: center;
  gap: 0.5rem;
  border: 2px dashed var(--gold);
  min-height: 250px;
}
.img-placeholder::before { content: attr(data-icon); font-size: 2.5rem; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--text-dark);
  color: rgba(255,248,220,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 { color: var(--gold-light); font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-heading { color: var(--gold); font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,248,220,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.75rem; font-size: 0.85rem; }
.footer-contact-item a { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,248,220,0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--gold-light); }
.footer-mantra {
  text-align: center;
  font-family: var(--font-devanagari);
  color: var(--gold);
  font-size: 1rem;
  padding: 1rem;
  border-top: 1px solid rgba(184,134,11,0.2);
  margin-top: 1rem;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .puja-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3,1fr); }
  .process-steps::before { display: none; }
  .puja-layout { grid-template-columns: 1fr; }
  .puja-sidebar { position: static; }
}
@media (max-width: 768px) {
  body { padding-top: 80px; }
  #top-bar { font-size: 0.75rem; padding: 0.4rem 1rem; }
  #top-bar .top-bar__available { display: none; }
  #main-nav { top: 32px; }
  #main-nav.scrolled { top: 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1rem 1.5rem; box-shadow: var(--shadow-md); border-bottom: 3px solid var(--gold); }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-credentials { grid-template-columns: 1fr; }
  .nri-features { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
  .puja-content { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .puja-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 1rem; }
  .about-stats { grid-template-columns: 1fr; gap: 0.75rem; }
  .process-steps { grid-template-columns: 1fr; }
}
