/* ============================================================
   Pooja Pandit Ujjain — Global Design System
   Brand: Crimson #8B0000 · Gold #D4AF37 · Ivory #FFF8E7 · Deep #2E1A0F
   Fonts: Cinzel (headings) · Poppins (body)
   ============================================================ */

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

/* ============================================================
   CSS Tokens
   ============================================================ */
:root {
  /* Brand palette */
  --crimson:       #8B0000;
  --crimson-hover: #A50000;
  --crimson-dark:  #6B0000;
  --crimson-rgb:   139, 0, 0;

  --gold:          #D4AF37;
  --gold-hover:    #C49A2E;
  --gold-light:    #F0DFA0;
  --gold-pale:     #FBF4D5;
  --gold-rgb:      212, 175, 55;

  --ivory:         #FFF8E7;
  --ivory-dark:    #F5EDD6;

  --deep:          #2E1A0F;
  --deep-mid:      #4A2E1A;
  --deep-light:    #6B4226;

  --white:         #FFFFFF;

  --neutral-100:   #F8F6F0;
  --neutral-200:   #EDE9E0;
  --neutral-400:   #9A9080;
  --neutral-600:   #6B6358;
  --neutral-800:   #3A3530;

  --green-action:  #25D366;
  --green-hover:   #1EBE5A;

  /* Typography */
  --font-heading: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  --font-body:    'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Type scale (fluid) */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Border radius */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;

  /* Elevation */
  --shadow-sm:  0 1px 4px rgba(46, 26, 15, .10);
  --shadow-md:  0 4px 16px rgba(46, 26, 15, .14);
  --shadow-lg:  0 8px 32px rgba(46, 26, 15, .18);
  --shadow-xl:  0 20px 60px rgba(46, 26, 15, .22);

  /* Motion */
  --ease:      cubic-bezier(.4, 0, .2, 1);
  --ease-out:  cubic-bezier(0, 0, .2, 1);
  --dur-fast:  0.18s;
  --dur-base:  0.3s;
  --dur-slow:  0.5s;

  /* Layout */
  --max-w:    1200px;
  --px:       clamp(1rem, 5vw, 2.5rem);
  --nav-h:    72px;
  --topbar-h: 36px;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html                   { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--deep);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a          { color: inherit; text-decoration: none; transition: color var(--dur-base) var(--ease); }
ul, ol     { list-style: none; }
button     { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea, button { font: inherit; }
[hidden]   { display: none !important; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
  color: var(--deep);
}
h1 { font-size: clamp(1.875rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.5rem,   4.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem,   3vw,   1.75rem); }
h4 { font-size: var(--text-xl); }

p   { color: var(--deep-mid); line-height: 1.75; }
p + p { margin-top: var(--sp-4); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--sp-3);
}

.section-title   { margin-bottom: var(--sp-4); }
.section-lead    { font-size: var(--text-lg); color: var(--neutral-600); max-width: 58ch; margin-bottom: var(--sp-8); }

.on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }
.on-dark p          { color: rgba(255, 248, 231, .8); }
.on-dark .eyebrow   { color: var(--gold); }

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}
.section-pad    { padding-block: var(--sp-20); }
.section-pad-lg { padding-block: var(--sp-24); }
.section-pad-sm { padding-block: var(--sp-12); }
.text-center    { text-align: center; }
.text-center .section-lead { margin-inline: auto; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-12); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.stack  { display: flex; flex-direction: column; gap: var(--sp-4); }
.row    { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }

/* ============================================================
   Gold Divider
   ============================================================ */
.divider-gold {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-block: var(--sp-6);
}
.divider-gold::before,
.divider-gold::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}
.divider-gold span { color: var(--gold); font-size: 1.1rem; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 1;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn-crimson {
  background: var(--crimson);
  color: var(--white);
  border-color: var(--crimson);
}
.btn-crimson:hover {
  background: var(--crimson-hover);
  border-color: var(--crimson-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--crimson-rgb), .35);
}

.btn-gold {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--gold-rgb), .4);
}

.btn-outline-crimson {
  background: transparent;
  color: var(--crimson);
  border-color: var(--crimson);
}
.btn-outline-crimson:hover {
  background: var(--crimson);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .6);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, .15);
  border-color: var(--white);
}

.btn-whatsapp {
  background: var(--green-action);
  color: var(--white);
  border-color: var(--green-action);
}
.btn-whatsapp:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
}

.btn-lg { padding: 1.1rem 2.25rem; font-size: var(--text-base); }
.btn-sm { padding: .625rem 1.25rem; font-size: var(--text-xs); }
.btn-full { width: 100%; }

/* ============================================================
   Top Announcement Bar
   ============================================================ */
.top-bar {
  background: var(--crimson);
  color: rgba(255, 248, 231, .9);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .03em;
  text-align: center;
  padding: var(--sp-2) var(--px);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
}
.top-bar a { color: var(--gold-light); font-weight: 700; }
.top-bar a:hover { color: var(--white); }
.top-bar .sep { opacity: .4; }

/* ============================================================
   Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--neutral-200);
  transition: box-shadow var(--dur-base) var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(46, 26, 15, .12); border-color: transparent; }

.nav {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.nav-logo img { height: 52px; width: auto; max-width: 200px; object-fit: contain; }
.nav-logo-text { font-family: var(--font-heading); font-size: var(--text-lg); font-weight: 700; color: var(--crimson); line-height: 1.1; }
.nav-logo-sub  { display: block; font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex: 1;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--deep);
  padding: var(--sp-2) 0;
  position: relative;
  white-space: nowrap;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--dur-base) var(--ease);
}
.nav-links > li > a:hover        { color: var(--crimson); }
.nav-links > li > a:hover::after { width: 100%; }
.nav-links > li > a.active::after { width: 100%; }

.nav-has-sub > a::after { content: '' !important; } /* no underline on parent items with dropdowns */
.nav-has-sub > a .caret { font-size: .65em; opacity: .6; margin-left: 3px; transition: transform var(--dur-fast) var(--ease); }
.nav-has-sub:hover > a .caret { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  border-top: 3px solid var(--gold);
  padding: var(--sp-2) 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease),
              visibility var(--dur-base) var(--ease),
              top var(--dur-base) var(--ease);
  z-index: 10;
}
.nav-has-sub:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  top: calc(100% + 6px);
}
.nav-dropdown a {
  display: block;
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--text-sm);
  color: var(--deep-mid);
  font-weight: 400;
  transition: all var(--dur-fast) var(--ease);
}
.nav-dropdown a:hover {
  color: var(--crimson);
  background: var(--ivory);
  padding-left: calc(var(--sp-5) + 6px);
}

/* Nav CTA buttons */
.nav-ctas { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.nav-cta-call {
  display: flex; align-items: center; gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-4);
  border: 2px solid var(--crimson);
  border-radius: var(--r-md);
  color: var(--crimson);
  font-size: var(--text-xs);
  font-weight: 700;
  transition: all var(--dur-fast) var(--ease);
}
.nav-cta-call:hover { background: var(--crimson); color: var(--white); }
.nav-cta-book {
  display: flex; align-items: center; gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-4);
  background: var(--gold);
  color: var(--deep);
  border-radius: var(--r-md);
  font-size: var(--text-xs);
  font-weight: 700;
  transition: all var(--dur-fast) var(--ease);
}
.nav-cta-book:hover { background: var(--crimson); color: var(--white); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--sp-2);
  margin-left: auto;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  transition: background var(--dur-fast) var(--ease);
}
.nav-toggle:hover { background: var(--neutral-100); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--deep); border-radius: 2px; transition: all var(--dur-base) var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--topbar-h) + var(--nav-h));
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-4);
  z-index: 999;
  max-height: calc(100dvh - var(--topbar-h) - var(--nav-h));
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-weight: 500;
  color: var(--deep);
  border-bottom: 1px solid var(--neutral-200);
  font-size: var(--text-base);
}
.mobile-nav a:hover { color: var(--crimson); background: var(--ivory); }
.mobile-nav-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--nav-h) - var(--topbar-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(46, 26, 15, .90) 0%,
    rgba(139, 0, 0, .72) 55%,
    rgba(46, 26, 15, .80) 100%
  );
}
/* Decorative radial bloom — focuses the eye on content */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(212, 175, 55, .07) 0%, transparent 65%);
}

.hero-body {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: var(--sp-16);
  width: 100%;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(212, 175, 55, .18);
  border: 1px solid rgba(212, 175, 55, .5);
  border-radius: 99px;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--sp-5);
}
.hero-pill-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: blink 1.8s infinite; }

.hero-title {
  font-size: clamp(2rem, 6.5vw, 4.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--sp-5);
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
  max-width: 16ch;
}
.hero-title .text-gold { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(.9rem, 2.2vw, 1.1rem);
  color: rgba(255, 248, 231, .88);
  max-width: 52ch;
  line-height: 1.8;
  margin-bottom: var(--sp-8);
}

.hero-stats {
  display: flex;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
}
.hero-stat span { display: block; }
.hero-stat-num   { font-family: var(--font-heading); font-size: var(--text-3xl); font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255, 248, 231, .65); margin-top: 4px; }

.hero-ctas { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

/* ============================================================
   Trust Bar
   ============================================================ */
.trust-bar {
  background: var(--gold);
  padding: var(--sp-3) var(--px);
  overflow: hidden;
}
.trust-items {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  max-width: var(--max-w);
  margin-inline: auto;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--deep);
  white-space: nowrap;
  letter-spacing: .03em;
}
.trust-item svg { flex-shrink: 0; }

/* ============================================================
   Booking Activity Badge
   ============================================================ */
.booking-pulse {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--ivory-dark);
  border: 1px solid rgba(var(--gold-rgb), .4);
  border-radius: 99px;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--deep-mid);
  margin-bottom: var(--sp-8);
}
.pulse-dot { width: 8px; height: 8px; background: #22C55E; border-radius: 50%; animation: blink 1.5s infinite; }

/* ============================================================
   Services Grid
   ============================================================ */
.services-section { background: var(--ivory); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), .2);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--gold); }

.service-card-media { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card-media img { transform: scale(1.05); }
.service-card-badge {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  background: var(--gold);
  color: var(--deep);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.service-card-body { padding: var(--sp-5); flex: 1; display: flex; flex-direction: column; }
.service-card-icon { font-size: 2rem; margin-bottom: var(--sp-3); }
.service-card-title { font-family: var(--font-heading); font-size: var(--text-lg); font-weight: 600; color: var(--deep); margin-bottom: var(--sp-2); }
.service-card-desc  { font-size: var(--text-sm); color: var(--neutral-600); line-height: 1.65; flex: 1; }
.service-card-footer {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--neutral-200);
}
.service-card-footer .btn { flex: 1; padding: .625rem var(--sp-3); font-size: var(--text-xs); }

/* ============================================================
   Why Choose Us
   ============================================================ */
.why-us { background: var(--white); }

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-16);
  align-items: center;
}

.why-features { display: grid; gap: var(--sp-6); }
.why-feature  { display: flex; gap: var(--sp-4); align-items: flex-start; }
.why-feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--ivory);
  border: 2px solid var(--gold-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: border-color var(--dur-base) var(--ease), background var(--dur-base) var(--ease);
}
.why-feature:hover .why-feature-icon { background: var(--gold-pale); border-color: var(--gold); }
.why-feature-title { font-family: var(--font-heading); font-size: var(--text-sm); font-weight: 600; color: var(--deep); margin-bottom: var(--sp-1); }
.why-feature-desc  { font-size: var(--text-sm); color: var(--neutral-600); line-height: 1.65; }

.why-image-wrap { position: relative; }
.why-image-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-xl); }
.why-image-badge {
  position: absolute;
  bottom: var(--sp-6);
  left: calc(-1 * var(--sp-6));
  background: var(--crimson);
  color: var(--white);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  min-width: 140px;
}
.why-badge-num   { font-family: var(--font-heading); font-size: var(--text-4xl); font-weight: 700; color: var(--gold-light); line-height: 1; }
.why-badge-label { font-size: var(--text-xs); opacity: .85; margin-top: 4px; }

/* ============================================================
   Mahakal Feature Section
   ============================================================ */
.mahakal-section {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
/* Sacred OM watermark */
.mahakal-section::before {
  content: 'ॐ';
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(180px, 28vw, 380px);
  font-family: serif;
  color: rgba(var(--gold-rgb), .055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.mahakal-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--sp-12);
  align-items: center;
}

.mahakal-image { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.mahakal-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

.mahakal-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-block: var(--sp-6);
}
.mahakal-service-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 248, 231, .88);
}
.mahakal-service-item::before { content: '✦'; color: var(--gold); font-size: .7em; flex-shrink: 0; }

.mahakal-ctas { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

/* ============================================================
   Stats Section
   ============================================================ */
.stats-section { background: var(--crimson); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-block {
  padding: var(--sp-10) var(--sp-6);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .12);
}
.stat-block:last-child { border-right: none; }
.stat-icon  { font-size: 2rem; margin-bottom: var(--sp-3); }
.stat-num   { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: var(--sp-2); }
.stat-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 248, 231, .7); }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-section { background: var(--ivory); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border: 1px solid rgba(var(--gold-rgb), .2);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); }
.review-card::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-5);
  font-size: 4.5rem;
  font-family: Georgia, serif;
  color: var(--gold-light);
  line-height: 1;
  pointer-events: none;
}

.review-stars { color: var(--gold); font-size: var(--text-lg); letter-spacing: 2px; margin-bottom: var(--sp-3); }
.review-text  { font-size: var(--text-sm); color: var(--neutral-600); font-style: italic; line-height: 1.75; margin-bottom: var(--sp-4); }
.reviewer { display: flex; align-items: center; gap: var(--sp-3); }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--crimson);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: var(--text-lg); font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: var(--text-sm); color: var(--deep); }
.reviewer-loc  { font-size: var(--text-xs); color: var(--neutral-400); }

.google-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
  padding: var(--sp-5) var(--sp-8);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--neutral-200);
  max-width: 420px;
  margin-inline: auto;
  box-shadow: var(--shadow-sm);
}
.google-logo { font-size: 1.5rem; font-weight: 700; }
.google-score { font-family: var(--font-heading); font-size: var(--text-4xl); font-weight: 700; color: var(--deep); line-height: 1; }
.google-stars { color: #F4B400; font-size: var(--text-xl); letter-spacing: 3px; }
.google-count { font-size: var(--text-sm); color: var(--neutral-400); }

/* ============================================================
   About Preview
   ============================================================ */
.about-preview { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about-image { border-radius: var(--r-xl); overflow: hidden; }
.about-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.about-highlights { margin-block: var(--sp-6); display: grid; gap: var(--sp-3); }
.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--deep-mid);
  line-height: 1.6;
}
.about-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; color: var(--deep);
  flex-shrink: 0; margin-top: 1px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--ivory); }
.faq-list {
  max-width: 800px;
  margin-inline: auto;
  margin-top: var(--sp-12);
  display: grid;
  gap: var(--sp-3);
}
.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid rgba(var(--gold-rgb), .25);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-md); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--deep);
  cursor: pointer;
  user-select: none;
  text-align: left;
  background: none;
  border: none;
  width: 100%;
  transition: color var(--dur-fast) var(--ease);
}
.faq-q:hover { color: var(--crimson); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .25s var(--ease);
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 var(--sp-6) var(--sp-5); font-size: var(--text-sm); color: var(--neutral-600); line-height: 1.8; }

/* ============================================================
   Book Puja / Lead Form
   ============================================================ */
.book-section { background: var(--deep); position: relative; overflow: hidden; }
.book-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--gold-rgb), .09) 0%, transparent 65%);
  pointer-events: none;
}

.book-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.book-highlights { margin-block: var(--sp-6); display: grid; gap: var(--sp-4); }
.book-highlight {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 248, 231, .88);
}
.book-highlight-icon { font-size: 1.25rem; flex-shrink: 0; }

/* Form card */
.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-xl);
}
.form-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--deep);
  text-align: center;
  margin-bottom: var(--sp-6);
}
.form-card-subtitle {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--neutral-400);
  margin-top: calc(-1 * var(--sp-4));
  margin-bottom: var(--sp-6);
}

.form-group { margin-bottom: var(--sp-4); }
.form-group label { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--deep); margin-bottom: var(--sp-2); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  color: var(--deep);
  background: var(--white);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  outline: none;
  appearance: auto;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), .15);
}
.form-group textarea { min-height: 90px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--crimson);
  color: var(--white);
  border: none;
  border-radius: var(--r-md);
  font-size: var(--text-base);
  font-weight: 700;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  margin-top: var(--sp-2);
}
.form-submit:hover { background: var(--crimson-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.form-note { text-align: center; font-size: var(--text-xs); color: var(--neutral-400); margin-top: var(--sp-3); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--deep); }
.footer-body {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--sp-8);
  padding-block: var(--sp-16);
  border-bottom: 1px solid rgba(var(--gold-rgb), .15);
}
.footer-brand-desc {
  font-size: var(--text-sm);
  color: rgba(255, 248, 231, .6);
  line-height: 1.8;
  margin-block: var(--sp-4);
  max-width: 34ch;
}
.footer-contact-row { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--text-sm); color: rgba(255, 248, 231, .75); margin-bottom: var(--sp-2); }
.footer-contact-row a { color: var(--gold-light); font-weight: 600; }
.footer-contact-row a:hover { color: var(--white); }
.footer-col-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(var(--gold-rgb), .25);
}
.footer-links { display: grid; gap: var(--sp-2); }
.footer-links a { font-size: var(--text-sm); color: rgba(255, 248, 231, .65); transition: all var(--dur-fast) var(--ease); }
.footer-links a:hover { color: var(--gold); padding-left: var(--sp-2); }

.footer-bottom {
  padding-block: var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-size: var(--text-xs);
  color: rgba(255, 248, 231, .35);
}

/* ============================================================
   Floating CTAs
   ============================================================ */
.floating-ctas {
  position: fixed;
  right: var(--sp-5);
  bottom: var(--sp-8);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: flex-end;
}
.fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
.fab:hover { transform: scale(1.12); }
.fab-phone { background: var(--crimson); animation: pulseRed 2.2s infinite; }
.fab-wa    { background: var(--green-action); animation: pulseGreen 2.2s infinite .4s; }

.fab-tip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--deep);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  pointer-events: none;
}
.fab:hover .fab-tip { opacity: 1; transform: translateY(-50%) translateX(0); }

@keyframes pulseRed   { 0%,100% { box-shadow: 0 0 0 0 rgba(139,0,0,.5); } 60% { box-shadow: 0 0 0 14px rgba(139,0,0,0); } }
@keyframes pulseGreen { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 60% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } }

/* ============================================================
   Mobile Bottom Bar
   ============================================================ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 -3px 20px rgba(46, 26, 15, .12);
  padding: var(--sp-3) var(--px) calc(var(--sp-3) + env(safe-area-inset-bottom));
  gap: var(--sp-3);
}
.mobile-bar .btn { flex: 1; justify-content: center; }

/* ============================================================
   Activity Toast
   ============================================================ */
.activity-toast {
  position: fixed;
  bottom: 80px;
  left: var(--sp-4);
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--gold);
  max-width: 290px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
}
.activity-toast.show { opacity: 1; transform: translateX(0); }
.toast-icon { font-size: 1.75rem; flex-shrink: 0; }
.toast-name { font-weight: 700; font-size: var(--text-sm); color: var(--crimson); }
.toast-puja { font-size: var(--text-xs); color: var(--deep); }
.toast-time { font-size: var(--text-xs); color: var(--neutral-400); margin-top: 2px; }

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb-bar { background: var(--ivory-dark); padding: var(--sp-3) 0; border-bottom: 1px solid var(--neutral-200); }
.breadcrumb { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--text-xs); color: var(--neutral-400); flex-wrap: wrap; }
.breadcrumb li::after { content: '›'; margin-left: var(--sp-2); color: var(--neutral-400); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--neutral-400); }
.breadcrumb a:hover { color: var(--crimson); }
.breadcrumb li:last-child a { color: var(--deep-mid); font-weight: 600; }

/* ============================================================
   Service Page Hero
   ============================================================ */
.service-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.service-hero-bg { position: absolute; inset: 0; z-index: 0; }
.service-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.service-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(46,26,15,.92) 30%, rgba(46,26,15,.55) 70%, transparent 100%);
}
.service-hero-body { position: relative; z-index: 1; padding-bottom: var(--sp-10); width: 100%; }
.service-hero-body h1 { color: var(--white); font-size: clamp(1.5rem, 4vw, 2.75rem); }

/* ============================================================
   Related Services
   ============================================================ */
.related-services { background: var(--ivory); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}
.related-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  transition: all var(--dur-base) var(--ease);
  text-decoration: none;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.related-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.related-card-body { padding: var(--sp-4); }
.related-card-title { font-family: var(--font-heading); font-size: var(--text-base); font-weight: 600; color: var(--deep); margin-bottom: var(--sp-2); }
.related-card-desc  { font-size: var(--text-xs); color: var(--neutral-400); }

/* ============================================================
   Scroll Reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ============================================================
   Utility
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   Animations
   ============================================================ */
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

/* ============================================================
   Responsive — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .footer-body { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-block  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat-block:last-child { border-bottom: none; }
  .why-image-badge { left: 0; }
}

@media (max-width: 900px) {
  .why-us-inner,
  .mahakal-inner,
  .about-inner,
  .book-inner { grid-template-columns: 1fr; gap: var(--sp-8); }

  .mahakal-inner { text-align: center; }
  .mahakal-services-list { max-width: 400px; margin-inline: auto; text-align: left; }
  .mahakal-ctas { justify-content: center; }
  .mahakal-image { order: -1; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .why-image-wrap    { order: -1; }
}

/* ============================================================
   Responsive — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  html, body { overflow-x: hidden; max-width: 100%; }

  .nav-logo img { max-width: 150px; height: auto; max-height: 46px; }

  .nav-links, .nav-ctas { display: none; }
  .nav-toggle { display: flex; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-stats { gap: var(--sp-6); }
  .hero-title { max-width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .mahakal-services-list { grid-template-columns: 1fr; }
  .footer-body { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .floating-ctas { display: none; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 80px; }

  .google-aggregate { flex-direction: column; text-align: center; gap: var(--sp-2); }

  .service-hero { height: 300px; }

  .book-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .trust-items { flex-direction: column; align-items: flex-start; }
  .hero-stats  { flex-wrap: wrap; gap: var(--sp-5); }
}

/* ============================================================
   Language Selector (Desktop)
   ============================================================ */
#lang-selector-wrap {
  display: flex;
  align-items: center;
  margin-right: var(--sp-2);
  flex-shrink: 0;
}
#lang-select {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.55rem;
  border: 1.5px solid var(--gold);
  border-radius: var(--r-sm);
  background: var(--ivory);
  color: var(--deep);
  cursor: pointer;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease);
  max-width: 130px;
}
#lang-select:focus { border-color: var(--crimson); box-shadow: 0 0 0 2px rgba(var(--crimson-rgb), .15); }
@media (max-width: 768px) { #lang-selector-wrap { display: none; } }

/* Mobile Language Bar */
#mobile-lang-bar {
  position: fixed;
  bottom: calc(68px + env(safe-area-inset-bottom));
  left: 0;
  right: 0;
  z-index: 898;
  background: var(--ivory-dark);
  border-top: 1px solid var(--neutral-200);
  padding: var(--sp-2) var(--px);
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--deep-mid);
}
@media (max-width: 768px) {
  #mobile-lang-bar { display: flex; }
  #mobile-lang-bar select {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border: 1.5px solid var(--gold);
    border-radius: var(--r-sm);
    background: var(--white);
    color: var(--deep);
    cursor: pointer;
    outline: none;
    flex: 1;
    max-width: 200px;
  }
  body { padding-bottom: 120px; }
}

/* ============================================================
   Footer Disclaimer
   ============================================================ */
.footer-disclaimer {
  padding-block: var(--sp-5);
  border-top: 1px solid rgba(var(--gold-rgb), .1);
}
.footer-disclaimer p {
  font-size: 0.7rem;
  color: rgba(255, 248, 231, .32);
  line-height: 1.75;
  max-width: 72ch;
  margin-inline: auto;
  text-align: center;
}
.footer-disclaimer a {
  color: rgba(255, 248, 231, .5);
  text-decoration: underline;
  font-weight: 600;
}
.footer-disclaimer a:hover { color: var(--gold); }
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   CTA Popup
   ============================================================ */
.cta-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(46, 26, 15, .72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
  backdrop-filter: blur(3px);
}
.cta-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}
.cta-popup-box {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  max-width: 380px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  border-top: 4px solid var(--gold);
  transform: scale(.92) translateY(18px);
  transition: transform .35s var(--ease);
}
.cta-popup-overlay.show .cta-popup-box {
  transform: scale(1) translateY(0);
}
.cta-popup-close {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--neutral-100);
  border: none;
  font-size: 1rem;
  color: var(--neutral-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.cta-popup-close:hover { background: var(--crimson); color: var(--white); }
.cta-popup-icon   { font-size: 2.5rem; margin-bottom: var(--sp-3); }
.cta-popup-title  { font-family: var(--font-heading); font-size: var(--text-xl); color: var(--deep); margin-bottom: var(--sp-2); }
.cta-popup-sub    { font-size: var(--text-sm); color: var(--neutral-600); margin-bottom: var(--sp-5); line-height: 1.65; }
.cta-popup-btns   { display: flex; flex-direction: column; gap: var(--sp-3); }
.cta-popup-note   { font-size: var(--text-xs); color: var(--neutral-400); margin-top: var(--sp-4); }

/* ============================================================
   Alias classes for about.html review cards
   ============================================================ */
.review-author { display: flex; align-items: center; gap: var(--sp-3); margin-top: var(--sp-4); }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--crimson);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: var(--text-base); font-weight: 700;
  color: var(--white); flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: var(--text-sm); color: var(--deep); }
.review-loc  { font-size: var(--text-xs); color: var(--neutral-400); }

/* Direct-class form styles (used in contact.html) */
.form-label { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--deep); margin-bottom: var(--sp-2); }
.form-input {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--neutral-200); border-radius: var(--r-md);
  font-size: var(--text-sm); color: var(--deep); background: var(--white);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  outline: none; appearance: auto;
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(var(--gold-rgb), .15); }
.form-textarea { min-height: 100px; resize: vertical; }

/* FAQ answer padding when no inner wrapper */
.faq-a > p { padding: var(--sp-2) var(--sp-6) var(--sp-5); font-size: var(--text-sm); color: var(--neutral-600); line-height: 1.8; }

/* ============================================================
   Print
   ============================================================ */
@media print {
  .top-bar, .site-header, .floating-ctas, .mobile-bar, .activity-toast, #mobile-lang-bar, .cta-popup-overlay { display: none !important; }
  body { padding: 0; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
