/* =====================================================
   Sangeeta's Astro Manntra — Main Stylesheet
   Mobile-first · Pure CSS · No framework
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* 1. Reset & Custom Properties
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Logo-synced brand palette — green + gold */
  --background:        #fdf8f0;
  --foreground:        #0a1f0d;
  --primary:           #1A6B35;   /* forest green (from logo) */
  --primary-dark:      #145228;
  --primary-light:     #2E8B45;
  --accent-saffron:    #E8B830;   /* warm gold (from logo) */
  --accent-saffron-lt: #F5D060;
  --accent-crimson:    #1A6B35;   /* alias kept, now green */
  --accent-mystic:     #4A1A6B;
  --card:              #f4faf5;   /* very light green tint */
  --cream:             #fdf8f0;
  --cream-dark:        #eef7f0;   /* faint green-cream */
  --muted:             #e0f0e4;
  --text-dark:         #0a1f0d;
  --text-body:         #2d4a35;
  --text-muted:        #5a7a62;
  --border:            #c4d9c8;

  /* Legacy aliases so inner pages don't break */
  --maroon:            #1A6B35;
  --maroon-dark:       #145228;
  --maroon-light:      #2E8B45;
  --saffron:           #E8B830;
  --saffron-light:     #F5D060;
  --gold:              #E8B830;
  --gold-light:        #F5D060;
  --white:             #FFFFFF;

  --shadow-sm: 0 2px 8px rgba(26,107,53,.08);
  --shadow-md: 0 4px 20px rgba(26,107,53,.14);
  --shadow-lg: 0 8px 40px rgba(26,107,53,.20);

  --font-h:     'Playfair Display', Georgia, serif;
  --font-bagel: 'Playfair Display', Georgia, serif;
  --font-b:     'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --sec-py:  2.5rem;
  --max-w:   1200px;
  --px:      1.25rem;
  --ease:       .25s ease;
  --ease-slow:  .4s ease;
  --ease-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-full: 9999px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-b);
  color: var(--text-body);
  background: var(--background);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent-saffron); }
ul { list-style: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* 2. Typography
   ===================================================== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-h);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.font-bagel { font-family: var(--font-bagel); letter-spacing: .01em; }
.font-cinzel { font-family: var(--font-h); }

/* Section eyebrow — dual pulsing dots */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: 1rem;
}
.section-eyebrow .dot {
  width: .625rem; height: .625rem;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseDot 2.5s ease-in-out infinite;
}
.section-eyebrow .dot-saffron { background: var(--accent-saffron); }
.section-eyebrow .dot-crimson { background: var(--accent-crimson); animation-delay: .6s; }
.section-eyebrow .eyebrow-text {
  font-size: .8125rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-muted);
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.65); }
}

/* Legacy label — inner pages */
.section-label {
  display: inline-block;
  font-size: .8125rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-saffron); margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-subtitle { font-size: 1.0625rem; color: var(--text-muted); max-width: 600px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }

/* 3. Layout
   ===================================================== */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--px); }
section { padding-block: var(--sec-py); }
.section-header { margin-bottom: 2.5rem; }

/* 4. Utility / Effects
   ===================================================== */
.glass-effect {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(25px) saturate(1.5);
  -webkit-backdrop-filter: blur(25px) saturate(1.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.glass-navbar {
  background: rgba(15,10,6,.72);
  backdrop-filter: blur(30px) saturate(1.8);
  -webkit-backdrop-filter: blur(30px) saturate(1.8);
}
.gentle-animation { transition: all .3s cubic-bezier(.4,0,.2,1); }

/* 5. Buttons
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--r-full);
  font-family: var(--font-b); font-weight: 700; font-size: .9375rem;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--ease); text-decoration: none; white-space: nowrap;
}
.btn-primary   { background: var(--primary); color: #fdf8f0; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fdf8f0; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-saffron   { background: var(--accent-saffron); color: #0f0a06; border-color: var(--accent-saffron); font-weight: 700; }
.btn-saffron:hover { background: var(--accent-saffron-lt); border-color: var(--accent-saffron-lt); color: #0f0a06; transform: translateY(-2px); }
.btn-whatsapp  { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp:hover { background: #128C7E; border-color: #128C7E; color: var(--white); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(37,211,102,.35); }
.btn-outline   { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-outline-saffron { background: transparent; color: var(--accent-saffron); border-color: var(--accent-saffron); }
.btn-outline-saffron:hover { background: var(--accent-saffron); color: #0f0a06; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* 6. Navigation — dark bar so logo (black bg) blends naturally
   ===================================================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #0f0a06;
  border-bottom: 1px solid rgba(232,184,48,.18);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding-block: .5rem; }
.nav-logo { display: flex; align-items: center; gap: .375rem; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; display: block; border-radius: 4px; }
.nav-logo-text { display: none; }
.nav-logo-text strong { display: block; font-family: var(--font-h); font-size: 1rem; color: var(--accent-saffron); line-height: 1.2; }
.nav-logo-text span { font-size: .75rem; color: rgba(255,255,255,.5); }
.nav-wordmark {
  display: none;
  flex-direction: column;
  line-height: 1;
}
.nav-wordmark-main {
  font-family: var(--font-bagel);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: none;
  color: var(--accent-saffron);
}
/* Subtitle hidden in nav — shown only in footer / hero context */
.nav-wordmark-sub { display: none; }
.nav-menu { display: none; gap: .25rem; align-items: center; }
.nav-link { font-size: .9375rem; font-weight: 600; color: rgba(255,255,255,.82); padding: .5rem .75rem; border-radius: var(--r-sm); transition: all var(--ease); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--accent-saffron); background: rgba(255,255,255,.07); }

.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { display: inline-flex; align-items: center; gap: .25rem; }
.nav-dropdown > .nav-link::after { content: '▾'; font-size: .7rem; line-height: 1; margin-top: .05em; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + .5rem); left: 0;
  background: #1a1008; border: 1px solid rgba(232,184,48,.2); border-radius: var(--r-md);
  box-shadow: 0 8px 40px rgba(0,0,0,.5); min-width: 230px; padding: .5rem; z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: .5rem .875rem; font-size: .9rem; color: rgba(255,255,255,.75); border-radius: var(--r-sm); transition: all var(--ease); }
.dropdown-menu a:hover { background: rgba(255,255,255,.08); color: var(--accent-saffron); }

.nav-cta { display: none; gap: .75rem; }
.nav-toggle { background: none; border: none; cursor: pointer; padding: .5rem; display: flex; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,.8); border-radius: 2px; transition: all var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav { display: none; flex-direction: column; background: #0f0a06; border-top: 1px solid rgba(232,184,48,.15); padding: 1rem var(--px) 1.5rem; overflow-y: auto; max-height: calc(100dvh - 64px); }
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: .75rem .5rem; border-bottom: 1px solid rgba(255,255,255,.1); border-radius: 0; font-size: 1rem; }
.mobile-nav .nav-link:last-of-type { border-bottom: none; }
.mobile-nav-cta { margin-top: 1rem; display: flex; gap: .75rem; flex-wrap: wrap; }

/* 7. Hero — dark cosmic
   ===================================================== */
/* ── TWO-PANEL HERO — seamlessly fused ──────────────────────────────
   Panel 1: brand image at 100% width, natural aspect ratio (<img>).
            ::after gradient fades its bottom edge to #080504.
   Panel 2: CTA text on the same #080504 background — no visible join.
   ─────────────────────────────────────────────────────────────────── */
.hero {
  background: #080504;  /* matches gradient endpoint → zero seam */
  padding-block: 0;     /* override the global section padding — no dead space above/below */
}

/* Image panel: full-width <img>, position:relative for the ::after overlay */
.hero-image-panel {
  position: relative;
  width: 100%;
  line-height: 0;       /* kills the phantom gap browsers add below inline images */
}
.hero-image-panel img {
  width: 100%;
  height: auto;
  display: block;
}

/* Bottom-fade: image fire effects dissolve into #080504
   so the image and CTA panel share one continuous dark surface */
.hero-image-panel::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to bottom, transparent, rgba(8,5,4,1));
  pointer-events: none;
}

/* CTA panel: same dark background, centred text, tight breathing room */
.hero-cta-panel {
  background: #080504;
  width: 100%;
  padding: 2rem 0 2rem;
  text-align: center; color: var(--white);
}

/* Legacy nodes — hidden */
.hero-bg, .hero-overlay { display: none; }
.hero-particle         { display: none; }

.hero-content {
  display: flex; flex-direction: column; align-items: center;
}
.hero-eyebrow { display: none; }

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--white); line-height: 1.2; letter-spacing: 0.01em;
  margin-bottom: .5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.9);
}
.hero h1 .hero-accent { color: var(--accent-saffron); display: inline; }

.hero-sub {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,.78);
  margin-bottom: 2rem; line-height: 1.65; max-width: 520px;
  text-shadow: 0 1px 12px rgba(0,0,0,.8);
}
.hero .btn-group { margin-bottom: 1.75rem; justify-content: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: .4rem; font-size: .8125rem; color: rgba(255,255,255,.82); font-weight: 500; letter-spacing: 0.03em; }
.trust-item .icon { color: var(--accent-saffron); }

/* Legacy hero-badge (kept for fallback) */
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(212,160,23,.15); border: 1px solid rgba(212,160,23,.4);
  border-radius: var(--r-full); padding: .375rem 1rem;
  font-size: .8125rem; font-weight: 700; letter-spacing: .08em;
  color: var(--accent-saffron-lt); text-transform: uppercase; margin-bottom: 1.5rem;
}

/* 8. Intro Strip
   ===================================================== */
.intro-strip { background: var(--cream-dark); padding-block: 3.5rem; }
.intro-inner { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.intro-text h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 1rem; }
.intro-text h2 span { color: var(--primary); }
.intro-text p { font-size: 1.0625rem; color: var(--text-body); line-height: 1.8; }
.intro-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; max-width: 400px; margin-inline: auto; }
.intro-photo img { width: 100%; height: 100%; object-fit: cover; }

/* 9. Services — light (inner pages)
   ===================================================== */
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

.service-card {
  background: var(--cream-dark); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 1.75rem; transition: all var(--ease-slow); position: relative;
  overflow: hidden; text-decoration: none; color: inherit; display: block;
}
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--primary), var(--accent-saffron)); transform: scaleX(0); transition: transform var(--ease-slow); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); color: inherit; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.25rem; margin-bottom: 1rem; display: block; }
.service-card h3 { font-size: 1.125rem; margin-bottom: .5rem; color: var(--primary); }
.service-card p { font-size: .9375rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.service-link { font-size: .875rem; font-weight: 700; color: var(--accent-saffron); display: flex; align-items: center; gap: .25rem; }
.service-link::after { content: ' →'; }

/* Services — dark cosmic (homepage)
   ===================================================== */
.services-dark {
  background: linear-gradient(135deg, #1a0a2e 0%, #0f0a06 30%, #1a0f08 60%, #0f0a06 100%);
  position: relative; overflow: hidden;
}
.services-dark .section-label  { color: var(--accent-saffron); }
.services-dark .section-title  { color: var(--white); }
.services-dark .section-subtitle { color: rgba(255,255,255,.65); }
.services-dark .section-eyebrow .eyebrow-text { color: rgba(255,255,255,.55); }

.service-card-dark {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,160,23,.14);
  border-radius: var(--r-md); padding: 1.75rem;
  transition: all var(--ease-slow); position: relative; overflow: hidden;
  text-decoration: none; display: block;
}
.service-card-dark:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(212,160,23,.45);
  transform: translateY(-4px);
  box-shadow: 0 0 32px rgba(212,160,23,.1);
}
.service-card-dark .service-star {
  position: absolute; top: 1rem; right: 1rem;
  color: var(--accent-saffron); opacity: .4; font-size: .875rem; font-style: normal;
}
.service-card-dark .service-icon {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  color: var(--accent-saffron);
}
.service-card-dark .service-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.service-card-dark h3 { font-size: 1.125rem; margin-bottom: .5rem; color: var(--white); }
.service-card-dark p  { font-size: .9375rem; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 0; }

/* 10. Credentials section (homepage — replaces Why)
   ===================================================== */
.credentials-section {
  background: linear-gradient(135deg, #1a0a2e 0%, #0f0a06 50%, #1a0f08 100%);
  color: var(--white);
}
.credentials-section .section-eyebrow .eyebrow-text { color: rgba(255,255,255,.55); }
.credentials-section .section-title   { color: var(--white); }
.credentials-section .section-subtitle { color: rgba(255,255,255,.65); max-width: 640px; }
.credentials-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

.credential-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,160,23,.18);
  border-radius: var(--r-md); padding: 1.75rem 1.5rem;
  transition: transform var(--ease), background-color var(--ease), border-color var(--ease);
}
.credential-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(212,160,23,.42);
  transform: translateY(-3px);
}
.credential-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  margin-bottom: .875rem;
  color: var(--accent-saffron);
}
.credential-icon svg { width: 100%; height: 100%; display: block; }
.credential-card h3 { color: var(--white); font-size: 1.0625rem; margin-bottom: .25rem; letter-spacing: 0; }
.credential-sub { color: var(--accent-saffron); font-size: .8125rem; font-weight: 700; letter-spacing: .06em; display: block; margin-bottom: .625rem; }
.credential-card p { color: rgba(255,255,255,.58); font-size: .9rem; line-height: 1.65; margin-bottom: 0; }

/* Legacy why-section — kept for any inner page that uses it */
.why-section { background: var(--primary); color: var(--white); }
.why-section .section-title  { color: var(--white); }
.why-section .section-label  { color: var(--accent-saffron-lt); }
.why-section .section-subtitle { color: rgba(255,255,255,.8); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.why-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-md); padding: 1.75rem 1.25rem; text-align: center; transition: all var(--ease); }
.why-card:hover { background: rgba(255,255,255,.13); transform: translateY(-4px); }
.why-icon { display: block; width: 2.25rem; height: 2.25rem; margin-bottom: .875rem; color: var(--accent-saffron); margin-inline: auto; }
.why-icon svg { width: 100%; height: 100%; display: block; }
.why-card h3 { color: var(--accent-saffron-lt); font-size: 2rem; font-family: var(--font-h); margin-bottom: .25rem; }
.why-card p { color: rgba(255,255,255,.8); font-size: .9375rem; margin-bottom: 0; }

/* 10b. How It Works
   ===================================================== */
.how-section { background: var(--white); }

.how-steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0 2.5rem;
  padding: 0;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.how-num {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(26,107,53,.22);
  margin-top: .1rem;
}

.how-body h3 {
  font-size: 1.0625rem;
  color: var(--text-dark);
  margin-bottom: .375rem;
}
.how-body p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.how-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .875rem;
  text-align: center;
}
.how-cta-note {
  font-size: .875rem;
  color: var(--text-muted);
}
.how-cta-note a {
  color: var(--primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .how-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
  }
  .how-step--last {
    grid-column: 1 / -1;
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }
}

/* 11. Testimonials Strip
   ===================================================== */
.testimonials-strip { background: var(--cream-dark); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 1.75rem; box-shadow: var(--shadow-sm); position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: -.25rem; left: 1.5rem;
  font-size: 5rem; font-family: var(--font-h); color: var(--muted); line-height: 1; pointer-events: none;
}
.stars { display: flex; gap: .15rem; margin-bottom: 1rem; color: var(--accent-saffron); font-size: 1.125rem; }
.testimonial-text { font-size: 1rem; line-height: 1.75; color: var(--text-body); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; color: var(--primary); font-weight: 700; font-family: var(--font-h); flex-shrink: 0; }
.author-name { font-weight: 700; font-size: .9375rem; color: var(--text-dark); }
.author-location { font-size: .8125rem; color: var(--text-muted); }
.testimonials-cta { text-align: center; margin-top: 2.5rem; }

/* 12. About Snippet
   ===================================================== */
.about-snippet { background: var(--white); }
.about-snippet-inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.about-snippet-photo { position: relative; max-width: 420px; margin-inline: auto; }
.about-snippet-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); display: block; }
.about-photo-badge { position: absolute; bottom: 1.25rem; right: 1.25rem; background: var(--primary); color: var(--white); border-radius: var(--r-md); padding: .875rem 1.25rem; text-align: center; box-shadow: var(--shadow-md); }
.about-photo-badge strong { display: block; font-size: 1.75rem; font-family: var(--font-h); line-height: 1; }
.about-photo-badge span { font-size: .75rem; opacity: .9; }
.about-snippet-text h2 { margin-bottom: 1.25rem; }
.about-snippet-text p { font-size: 1.0625rem; line-height: 1.8; }
.about-stats { display: flex; gap: 1.5rem; margin: 1.5rem 0 1.25rem; flex-wrap: wrap; }
.about-stat { display: flex; flex-direction: column; }
.about-stat strong { font-size: 1.75rem; font-family: var(--font-h); font-weight: 700; color: var(--primary); line-height: 1; }
.about-stat span { font-size: .8rem; color: var(--text-muted); font-weight: 500; margin-top: .2rem; text-transform: uppercase; letter-spacing: .04em; }
.about-credentials { display: flex; flex-wrap: wrap; gap: .75rem; margin-block: 1.5rem; }
.credential-badge { display: inline-flex; align-items: center; gap: .375rem; background: var(--cream-dark); border: 1px solid var(--border); border-radius: var(--r-full); padding: .4rem 1rem; font-size: .8125rem; font-weight: 600; color: var(--text-body); }

/* 13. CTA Banner
   ===================================================== */
.cta-banner { background: linear-gradient(135deg, var(--accent-saffron) 0%, var(--primary-dark) 100%); color: var(--white); text-align: center; padding-block: 4rem; }
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.0625rem; max-width: 520px; margin-inline: auto; margin-bottom: 2rem; }
.cta-banner .btn-group { justify-content: center; }

/* 14. Footer
   ===================================================== */
.site-footer { background: #0f0a06; color: rgba(255,255,255,.8); padding-block: 3.5rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo-wrap { margin-bottom: .25rem; }
.footer-brand img { height: 264px; width: auto; display: block; mix-blend-mode: lighten; }
.footer-brand-name { font-family: var(--font-bagel); font-size: 1.1875rem; font-weight: 700; color: var(--accent-saffron); letter-spacing: .01em; margin-bottom: .25rem; }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.45); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .75rem; }
.social-link { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); color: var(--white); font-size: .875rem; transition: all var(--ease); text-decoration: none; }
.social-link:hover { background: var(--accent-saffron); color: #0f0a06; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 1.25rem; font-family: var(--font-h); }
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .9375rem; transition: color var(--ease); text-decoration: none; }
.footer-links a:hover { color: var(--accent-saffron); }
.footer-links li::before { content: '✦ '; color: var(--accent-saffron); font-size: .6rem; vertical-align: middle; }
.footer-contact-item { display: flex; gap: .75rem; margin-bottom: 1rem; align-items: flex-start; }
.footer-contact-item .icon {
  flex-shrink: 0;
  width: 1.125rem;
  padding-top: .2rem;
  color: var(--accent-saffron);
  display: flex; align-items: flex-start;
}
.footer-contact-item .icon svg { width: 1.125rem; height: 1.125rem; display: block; }
.footer-contact-item .footer-contact-text { display: flex; flex-direction: column; gap: .1rem; }
.footer-contact-item .footer-contact-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--accent-saffron); font-weight: 600; opacity: .85; }
.footer-contact-item a, .footer-contact-item .footer-contact-value { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.5; }
.footer-contact-item a:hover { color: var(--accent-saffron); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; align-items: center; text-align: center; }
.footer-bottom p { font-size: .875rem; color: rgba(255,255,255,.38); margin-bottom: 0; }
.footer-bottom a { color: rgba(255,255,255,.55); text-decoration: underline; }
.footer-disclaimer { font-size: .75rem !important; color: rgba(255,255,255,.25) !important; font-style: italic; max-width: 56ch; line-height: 1.6; }

/* 15. Floating WhatsApp
   ===================================================== */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  display: flex; align-items: center; gap: .625rem;
  background: #25D366; color: var(--white); border-radius: var(--r-full);
  padding: .875rem 1.375rem .875rem 1rem;
  font-weight: 700; font-size: .9375rem;
  box-shadow: 0 4px 24px rgba(37,211,102,.5); text-decoration: none;
  transition: all var(--ease); animation: waPulse 2.5s infinite;
}
.wa-float:hover { background: #128C7E; color: var(--white); transform: scale(1.05); box-shadow: 0 6px 30px rgba(37,211,102,.65); }
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 36px rgba(37,211,102,.78); }
}

/* 16. Keyframe Animations
   ===================================================== */
@keyframes floatGentle {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(1deg); }
}
@keyframes driftLeft {
  0%,100% { transform: translateX(0); }
  50%      { transform: translateX(-15px); }
}
@keyframes driftRight {
  0%,100% { transform: translateX(0); }
  50%      { transform: translateX(15px); }
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 8px rgba(212,160,23,.3); }
  50%      { box-shadow: 0 0 28px rgba(212,160,23,.75); }
}

/* 17. Inner Page Hero
   ===================================================== */
.page-hero {
  background: linear-gradient(135deg, #0e0804 0%, #170d05 45%, #0a0604 100%);
  padding-block: 4rem 3.5rem; color: var(--white);
  position: relative; overflow: hidden;
}
/* Star-field: two offset repeating-dot grids at prime-ish tile sizes → no visible grid seam */
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.52) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,.28) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,.38) 1px, transparent 1px);
  background-size: 97px 73px, 143px 109px, 61px 89px;
  background-position: 11px 7px, 47px 31px, 79px 53px;
  pointer-events: none;
}
/* Warm saffron ambient glow — mirrors the homepage's ember tonality */
.page-hero::after {
  content: '';
  position: absolute; right: -6rem; top: 50%;
  transform: translateY(-50%);
  width: 32rem; height: 32rem; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,184,48,.07) 0%, rgba(180,90,20,.04) 40%, transparent 70%);
  pointer-events: none;
}
.page-hero .section-label { color: var(--accent-saffron-lt); }
.page-hero h1 { color: var(--white); max-width: 700px; }
.page-hero > .container > p { color: rgba(255,255,255,.82); font-size: 1.125rem; max-width: 600px; margin-top: 1rem; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; font-size: .875rem; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--accent-saffron-lt); }
.breadcrumb .sep { color: rgba(255,255,255,.35); }
.breadcrumb .current { color: rgba(255,255,255,.92); }

/* 18. Service Detail Pages
   ===================================================== */
.service-detail { background: var(--cream); }
.service-detail-content p,
.service-description p { font-size: 1.0625rem; line-height: 1.875; color: var(--text-body); }
.benefits-section { background: var(--cream-dark); }
.benefits-list { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.benefit-item { display: flex; align-items: flex-start; gap: 1rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.25rem 1.5rem; }
.benefit-icon { width: 42px; height: 42px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-text { flex: 1; min-width: 0; font-size: 1rem; color: var(--text-body); line-height: 1.6; }
.benefit-text h3 { font-size: 1.05rem; margin-bottom: .35rem; color: var(--text-dark); }
.benefit-text p  { margin: 0; }

/* 19. FAQ Accordion
   ===================================================== */
.faq-section { background: var(--white); }
.faq-section .section-header { text-align: center; }
.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.faq-question { width: 100%; background: var(--cream-dark); border: none; cursor: pointer; padding: 1.25rem 1.5rem; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--font-b); font-size: 1.0625rem; font-weight: 700; color: var(--text-dark); transition: all var(--ease); }
.faq-question:hover, .faq-item.open .faq-question { background: var(--primary); color: var(--white); }
.faq-icon { font-size: 1.25rem; transition: transform var(--ease); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 1.25rem 1.5rem; background: var(--white); border-top: 1px solid var(--border); font-size: 1rem; line-height: 1.8; color: var(--text-body); }
.faq-item.open .faq-answer { display: block; }

/* 20. Legal Pages (Privacy Policy, Disclaimer)
   ===================================================== */
.legal-section { background: var(--cream); }
.legal-content { max-width: 720px; margin-inline: auto; }
.legal-content .legal-date { font-size: .875rem; color: var(--text-muted); margin-bottom: 2rem; }
.legal-content h2 { font-family: var(--font-h); font-size: 1.15rem; color: var(--text-dark); margin-top: 2.25rem; margin-bottom: .6rem; font-weight: 600; letter-spacing: .02em; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { font-size: 1.0625rem; line-height: 1.875; color: var(--text-body); margin-bottom: .875rem; }
.legal-content ul { margin: .5rem 0 1rem 1.5rem; }
.legal-content li { font-size: 1.0625rem; line-height: 1.75; color: var(--text-body); margin-bottom: .3rem; }
.legal-content a { color: var(--primary); text-decoration: underline; }
.legal-content a:hover { color: var(--accent-saffron); }

/* 21. Contact Page
   ===================================================== */
.contact-section { background: var(--cream-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.contact-form-wrap { background: var(--white); border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.contact-form-wrap h2 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 700; font-size: .9375rem; color: var(--text-dark); margin-bottom: .5rem; }
.form-control { width: 100%; padding: .75rem 1rem; border: 1px solid var(--border); border-radius: var(--r-sm); font-family: var(--font-b); font-size: 1rem; color: var(--text-dark); background: var(--white); transition: border-color var(--ease); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(139,26,26,.1); }
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-control--error { border-color: #DC2626 !important; box-shadow: 0 0 0 3px rgba(220,38,38,.1) !important; }
.field-error { color: #DC2626; font-size: .8125rem; margin-top: .375rem; margin-bottom: 0; }
.form-status { border-radius: var(--r-md); padding: 1rem 1.25rem; font-size: .9375rem; line-height: 1.6; margin-bottom: 1.25rem; border: 1px solid transparent; }
.form-status--success { color: #15803D; background: #F0FDF4; border-color: #86EFAC; }
.form-status--error   { color: #991B1B; background: #FEF2F2; border-color: #FECACA; }
.contact-info-wrap { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card { background: var(--white); border-radius: var(--r-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.contact-card h3 { margin-bottom: 1.25rem; font-size: 1.1875rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-detail .icon {
  flex-shrink: 0;
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,107,53,.10);
  border-radius: 50%;
  color: var(--primary);
}
.contact-detail .icon svg { width: 1.1rem; height: 1.1rem; display: block; }
.contact-detail-text { padding-top: .35rem; }
.contact-detail-text strong { display: block; font-size: .8125rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .2rem; }
.contact-detail-text a, .contact-detail-text span { font-size: 1rem; color: var(--text-dark); line-height: 1.5; }
.contact-detail-text a:hover { color: var(--primary); }
.map-wrap { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; height: 280px; }
.wa-contact-block { background: #F0FDF4; border: 1px solid #86EFAC; border-radius: var(--r-lg); padding: 1.75rem; text-align: center; display: flex; flex-direction: column; align-items: center; }
.wa-contact-block h3 { color: #15803D; margin-bottom: .75rem; }
.wa-contact-block p { color: #166534; font-size: .9375rem; margin-bottom: 1.25rem; }

/* 21. About Page
   ===================================================== */
.about-content { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
.about-photo-main { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); max-width: 480px; margin-inline: auto; }
.about-photo-main img { width: 100%; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { font-size: 1.0625rem; line-height: 1.875; color: var(--text-body); margin-bottom: 1.25rem; }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-block: 2rem; }
.stat-box { background: var(--cream-dark); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.25rem 1rem; text-align: center; }
.stat-box strong { display: block; font-family: var(--font-h); font-size: 1.75rem; color: var(--primary); line-height: 1.2; }
.stat-box span { font-size: .8125rem; color: var(--text-muted); }
.placeholder-note { background: #FFF7ED; border: 1px dashed var(--accent-saffron); border-radius: var(--r-md); padding: 1.25rem 1.5rem; font-size: .9375rem; color: var(--accent-saffron); margin-block: 1.5rem; }

/* 22. Services Index
   ===================================================== */
.services-index { background: var(--white); }
.services-full-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.service-full-card { display: flex; flex-direction: column; background: var(--cream-dark); border: 1px solid var(--border); border-radius: var(--r-md); padding: 2rem; transition: all var(--ease-slow); text-decoration: none; color: inherit; }
.service-full-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.service-full-card .service-icon { display: block; width: 2.5rem; height: 2.5rem; margin-bottom: 1rem; color: var(--primary); }
.service-full-card .service-icon svg { width: 100%; height: 100%; display: block; }
.service-full-card h3 { color: var(--primary); margin-bottom: .75rem; }
.service-full-card p { font-size: 1rem; color: var(--text-body); line-height: 1.7; flex: 1; }
.service-full-card .learn-more { display: inline-flex; align-items: center; gap: .375rem; font-weight: 700; color: var(--accent-saffron); font-size: .9375rem; margin-top: 1.25rem; }
.service-full-card .learn-more::after { content: '→'; }

/* 23. Blog
   ===================================================== */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: all var(--ease-slow); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; line-height: 0; }
.blog-card-img svg { display: block; width: 100%; height: 100%; }
.blog-card-body { padding: 1.5rem; }
.blog-category { display: inline-block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-saffron); margin-bottom: .625rem; }
.blog-card h3 { font-size: 1.125rem; margin-bottom: .75rem; line-height: 1.4; }
.blog-card p { font-size: .9375rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.blog-meta { display: flex; align-items: center; gap: 1rem; font-size: .8125rem; color: var(--text-muted); }
.blog-cta-strip { background: var(--cream-dark); border-radius: var(--r-lg); padding: 2.5rem; text-align: center; }
.blog-cta-strip h3 { margin-bottom: .75rem; }
.blog-cta-strip p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* 24. Testimonials Page
   ===================================================== */
.all-testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.gmb-banner { background: linear-gradient(to right, var(--cream), var(--cream-dark)); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; text-align: center; margin-bottom: 3rem; }
.gmb-banner h3 { margin-bottom: .75rem; }
.gmb-banner p { color: var(--text-muted); font-size: 1rem; margin-bottom: 1.25rem; }
.rating-summary { display: flex; flex-direction: column; align-items: center; gap: .5rem; margin-bottom: 2rem; }
.big-rating { font-family: var(--font-h); font-size: 4rem; color: var(--primary); line-height: 1; }
.big-stars { color: var(--accent-saffron); font-size: 1.5rem; letter-spacing: .1em; }
.review-count { color: var(--text-muted); font-size: .9375rem; }

/* 25. Social Feeds — Blog page
   ===================================================== */
.social-feeds { background: var(--cream-dark); }
.social-feeds .section-intro { text-align: center; max-width: 580px; margin: 0 auto 2.5rem; }
.social-feeds .section-intro .section-label { display: block; margin-bottom: .5rem; }
.social-feeds .section-intro h2 { margin-bottom: .75rem; }
.social-feeds .section-intro p { color: var(--text-muted); }

.social-feeds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
/* 3-platform layout */
.social-feeds-grid--3 { grid-template-columns: 1fr; }

.social-feed-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.social-feed-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.social-feed-header .platform-icon {
  width: 2rem; height: 2rem;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.social-feed-header .fb-icon  { background: #1877F2; color: #fff; }
.social-feed-header .ig-icon  { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; }
.social-feed-header .yt-icon  { background: #FF0000; color: #fff; }
.social-feed-header .wa-icon  { background: #25D366; color: #fff; }
.social-feed-header .platform-name {
  flex: 1;
  font-family: var(--font-h); font-weight: 600; font-size: .975rem;
  color: var(--text-dark);
}
.social-follow-btn {
  font-size: .78rem; font-weight: 600;
  padding: .3rem .9rem;
  border-radius: var(--r-full);
  text-decoration: none;
  transition: opacity var(--ease);
  line-height: 1;
}
.social-follow-btn:hover { opacity: .82; }
.fb-follow-btn  { background: #1877F2; color: #fff; }
.ig-follow-btn  { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); color: #fff; }
.yt-follow-btn  { background: #FF0000; color: #fff; }
.wa-follow-btn  { background: #25D366; color: #fff; }

/* Facebook live feed wrapper */
.fb-live-wrap {
  display: flex;
  justify-content: center;
  padding: .5rem;
  min-height: 500px;
  overflow: hidden;
}
.fb-live-wrap .fb-page { width: 100% !important; }

/* YouTube follow card */
.yt-feed-card { height: 100%; }
.yt-feed-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1.25rem;
  min-height: 400px;
  background: linear-gradient(160deg, #fff5f5 0%, #fff8f0 100%);
}
.yt-icon-large { line-height: 0; }
.yt-channel-name {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}
.yt-channel-desc {
  color: var(--text-muted);
  font-size: .95rem;
  max-width: 280px;
  line-height: 1.6;
}
.yt-btn-group { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }
.yt-subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  color: #fff;
  background: #FF0000;
  transition: opacity var(--ease), transform var(--ease);
}
.yt-subscribe-btn:hover { opacity: .88; transform: translateY(-1px); }

/* Instagram follow card */
.ig-follow-card { height: 100%; }
.ig-follow-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1.25rem;
  min-height: 400px;
  background: linear-gradient(160deg, #fff5f0 0%, #fff0f8 100%);
}
.ig-follow-icon { line-height: 0; }
.ig-follow-handle {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: .01em;
}
.ig-follow-desc {
  color: var(--text-muted);
  font-size: .95rem;
  max-width: 280px;
  line-height: 1.6;
}
.ig-follow-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  transition: opacity var(--ease), transform var(--ease);
}
.ig-follow-cta:hover { opacity: .88; transform: translateY(-1px); }

/* WhatsApp Channel follow card */
.wa-channel-card { height: 100%; }
.wa-channel-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1.25rem;
  min-height: 400px;
  background: linear-gradient(160deg, #d4f5e2 0%, #e8faf0 100%);
}
.wa-channel-icon { line-height: 0; }
.wa-channel-name {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}
.wa-channel-desc {
  color: var(--text-muted);
  font-size: .95rem;
  max-width: 280px;
  line-height: 1.6;
}
.wa-channel-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  color: #fff;
  background: #25D366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: opacity var(--ease), transform var(--ease);
}
.wa-channel-btn:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45); }

/* Responsive — tablet */
@media (min-width: 640px) {
  .social-feeds-grid--3 { grid-template-columns: 1fr 1fr; }
  .social-feeds-grid--4 { grid-template-columns: 1fr 1fr; }
}
/* Responsive — desktop */
@media (min-width: 900px) {
  .social-feeds-grid { grid-template-columns: 1fr 1fr; }
  .social-feeds-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
  .social-feeds-grid--4 { grid-template-columns: 1fr 1fr; }
}

/* 26. Utilities
   ===================================================== */
.divider { width: 60px; height: 3px; background: linear-gradient(to right, var(--primary), var(--accent-saffron)); border-radius: 2px; margin-block: 1.5rem; }
.back-link { display: inline-flex; align-items: center; gap: .375rem; font-size: .9375rem; font-weight: 700; color: var(--primary); text-decoration: none; margin-bottom: 1.5rem; }
.back-link::before { content: '←'; }
.back-link:hover { color: var(--accent-saffron); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-2 { margin-top: 2rem; }

/* 26. Responsive — Tablet 640px+
   ===================================================== */
@media (min-width: 640px) {
  :root { --px: 2rem; }
  .services-grid         { grid-template-columns: repeat(2,1fr); }
  .services-full-grid    { grid-template-columns: repeat(2,1fr); }
  .blog-grid             { grid-template-columns: repeat(2,1fr); }
  .all-testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .benefits-list         { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid     { grid-template-columns: repeat(2,1fr); }
  .credentials-grid      { grid-template-columns: repeat(2,1fr); }
  .rating-summary        { flex-direction: row; justify-content: center; gap: 1.5rem; }
}

/* 27. Responsive — Desktop 1024px+
   ===================================================== */
@media (min-width: 1024px) {
  :root { --sec-py: 3.5rem; --px: 2rem; }
  .nav-menu              { display: flex; }
  .nav-cta               { display: flex; }
  .nav-toggle            { display: none; }
  .nav-wordmark          { display: flex; }
  .nav-logo-text         { display: block; }
  /* On index.html the wordmark replaces the text — hide text there via inline style */
  .intro-inner           { grid-template-columns: 1fr 1fr; }
  .services-grid         { grid-template-columns: repeat(3,1fr); }
  .services-full-grid    { grid-template-columns: repeat(3,1fr); }
  .why-grid              { grid-template-columns: repeat(4,1fr); }
  .testimonials-grid     { grid-template-columns: repeat(3,1fr); }
  .all-testimonials-grid { grid-template-columns: repeat(3,1fr); }
  .credentials-grid      { grid-template-columns: repeat(3,1fr); }
  .footer-grid           { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .footer-bottom         { flex-direction: row; justify-content: space-between; text-align: left; }
  .contact-grid          { grid-template-columns: 1.5fr 1fr; }
  .about-grid            { grid-template-columns: 1fr 1.4fr; }
  .blog-grid             { grid-template-columns: repeat(3,1fr); }
  .about-snippet-inner   { grid-template-columns: 1fr 1.3fr; }
  .benefits-list         { grid-template-columns: repeat(2,1fr); }
  .intro-photo           { max-width: 100%; margin-inline: 0; }
}

@media print { .site-header,.wa-float,.cta-banner { display: none; } }

/* 28. Motion System
   ─────────────────────────────────────────────
   Brand register: warm, unhurried reveals that
   build trust one section at a time. Never faster
   than the visitor can breathe.

   translate property (CSS individual transform)
   composes with transform, so the card hover lifts
   in sections 9/22/23 work independently of reveal.
   ───────────────────────────────────────────── */

/* ── Scroll-reveal base ──────────────────────── */
.reveal {
  opacity: 0;
  translate: 0 26px;
  transition:
    opacity   0.65s var(--ease-quint),
    translate 0.65s var(--ease-quint);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  translate: 0 0;
}

/* ── Hero CTA entrance sequence ─────────────────
   Page-load choreography: each child of .hero-content
   fades + lifts in on a staggered cascade.
   animation-fill-mode: both keeps start state
   before the delay fires.
   ─────────────────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: heroFadeUp 0.8s var(--ease-quint) both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.10s; }
.hero-content > *:nth-child(2) { animation-delay: 0.26s; }
.hero-content > *:nth-child(3) { animation-delay: 0.42s; }
.hero-content > *:nth-child(4) { animation-delay: 0.56s; }

/* ── Button: tactile press feedback ─────────────
   Quick scale-down on click, snaps back on release.
   !important because hover variants set transform too.
   ─────────────────────────────────────────────── */
.btn:active {
  transform:          scale(0.96) !important;
  transition-duration: 0.08s !important;
  box-shadow: none !important;
}

/* ── Service card ✦ star: hover rotation ─────── */
.service-card-dark .service-star {
  transition:
    opacity   0.35s var(--ease-quint),
    transform 0.50s var(--ease-quint);
}
.service-card-dark:hover .service-star {
  opacity:   0.9;
  transform: rotate(90deg) scale(1.2);
}

/* ═══════════════════════════════════════════════════
   29. Online Pooja Services
   ═══════════════════════════════════════════════════ */

/* Homepage pooja teaser ───────────────────────────── */
.pooja-teaser-section { background: var(--cream-dark); padding-block: var(--sec-py); }
.pooja-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.pooja-teaser-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  transition: all var(--ease-slow);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.pooja-teaser-card:hover {
  border-color: var(--accent-saffron);
  box-shadow: 0 4px 20px rgba(26,107,53,.07);
  transform: translateY(-2px);
}
.pooja-card-icon {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--accent-saffron);
  margin-bottom: .25rem;
}
.pooja-card-icon svg { width: 100%; height: 100%; display: block; }
.pooja-teaser-card h3 {
  font-family: var(--font-h);
  font-size: 1.0625rem;
  color: var(--text-dark);
  margin: 0;
}
.pooja-teaser-card p {
  font-size: .875rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

/* Dark pooja card extras ─────────────────────────── */
.pooja-best-for {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--accent-saffron);
  letter-spacing: .05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: .375rem;
}

/* Page hero: CTA + trust extensions ─────────────── */
.page-hero .btn-group  { margin-top: 1.75rem; }
.page-hero .hero-trust { margin-top: 2rem; }

/* Sankalp explanation section ───────────────────── */
.pooja-sankalp-section { background: var(--cream); }
.pooja-sankalp-inner {
  max-width: 740px;
  margin-inline: auto;
}
.pooja-sankalp-inner h2 { margin-bottom: 1.25rem; }
.pooja-sankalp-inner p {
  font-size: 1.0625rem;
  line-height: 1.875;
  color: var(--text-body);
}
.pooja-sankalp-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent-saffron));
  border-radius: 2px;
  margin-bottom: 2rem;
}

/* Disclaimer note ───────────────────────────────── */
.pooja-disclaimer-note {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding-block: 1.5rem;
}
.pooja-disclaimer-note p {
  font-size: .875rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.7;
}

/* 4-column pooja grid ───────────────────────────── */
@media (min-width: 640px) {
  .services-grid-4   { grid-template-columns: repeat(2, 1fr); }
  .pooja-teaser-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid-4   { grid-template-columns: repeat(4, 1fr); }
  .pooja-teaser-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Purpose tiles (What Brings You Here) ───── */
.purpose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .875rem;
}
@media (min-width: 480px)  { .purpose-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .purpose-grid { grid-template-columns: repeat(3, 1fr); } }

.purpose-tile {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: 1rem 1.125rem;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--ease-slow), box-shadow var(--ease-slow), transform var(--ease-slow);
}
.purpose-tile:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  color: inherit;
}
.purpose-tile-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
  margin-top: .125rem;
}
.purpose-tile-icon svg { width: 100%; height: 100%; display: block; }
.purpose-tile-body h3 {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 .25rem;
  line-height: 1.3;
}
.purpose-tile-body p {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── Nav: scroll depth shadow ────────────────── */
.site-header {
  transition:
    box-shadow   0.35s var(--ease-quint),
    border-color 0.35s var(--ease-quint);
}
.site-header.scrolled {
  box-shadow:   0 2px 40px rgba(0, 0, 0, 0.82);
  border-bottom-color: rgba(232, 184, 48, 0.36);
}

/* ── Dropdown: fade + slide ──────────────────────
   Replace display:none toggle with visibility/opacity
   so CSS transitions can fire. The transition-delay
   on visibility 0s / 0.22s keeps accessibility:
   element is pointer-evented only when visible.
   ─────────────────────────────────────────────── */
.dropdown-menu {
  display:        block !important;
  visibility:     hidden;
  opacity:        0;
  pointer-events: none;
  transform:      translateY(-8px);
  transition:
    opacity    0.22s var(--ease-quint),
    transform  0.22s var(--ease-quint),
    visibility 0s linear 0.22s;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  visibility:     visible;
  opacity:        1;
  pointer-events: auto;
  transform:      translateY(0);
  transition:
    opacity    0.22s var(--ease-quint),
    transform  0.22s var(--ease-quint),
    visibility 0s linear 0s;
}

/* ── FAQ accordion: smooth height reveal ─────────
   Override display:none with max-height so
   the transition fires. Padding collapses to 0
   when closed so there's no dead space.
   ─────────────────────────────────────────────── */
.faq-answer {
  display:        block !important;
  max-height:     0;
  overflow:       hidden;
  padding-top:    0 !important;
  padding-bottom: 0 !important;
  opacity:        0;
  border-top:     none !important;
  transition:
    max-height    0.44s var(--ease-quint),
    opacity       0.32s var(--ease-quint),
    padding-top   0.32s var(--ease-quint),
    padding-bottom 0.32s var(--ease-quint);
}
.faq-item.open .faq-answer {
  max-height:     800px;
  opacity:        1;
  padding-top:    1.25rem !important;
  padding-bottom: 1.25rem !important;
  border-top:     1px solid var(--border) !important;
}

/* ── Reduced motion: disable everything ──────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:        0.01ms !important;
    animation-iteration-count: 1      !important;
    transition-duration:       0.01ms !important;
    transition-delay:          0ms    !important;
  }
}
