/* ============================================================
   Divine Astro — base styles
   Palette: saffron #f08a00 / maroon #7a1f1f / gold #c9a227
   ============================================================ */
/* ============================================================
   STYLE.CSS QUICK INDEX
   01. Base / variables / common buttons
   02. Topbar + language switcher
   03. Main navbar + desktop dropdowns
   04. Mobile drawer / mobile nav auth
   05. Hero slider / hero CTA / hero trust
   06. Generic sections, grids, cards
   07. Contact/glass form + captcha
   08. Auth pages
   09. Footer + social + footer mobile rules
   10. Admin layout, tables, gallery/blog helpers
   11. About/home about/detail sections
   12. Service cards + service buttons
   13. Trust cards / gallery / lightbox
   14. Stack gallery + FAQ
   15. Responsive nav/topbar final rules
   16. Phone desktop-mode overrides
   ============================================================ */
/* 01. Base / variables / common buttons */
:root {
  --saffron: #f08a00;
  --saffron-dk: #c97000;
  --maroon: #7a1f1f;
  --gold: #c9a227;
  --cream: #fff7e8;
  --ink: #1d1410;
  --muted: #6b5c54;
  --line: #e8d8c2;
  --shadow: 0 6px 20px rgba(122, 31, 31, .12);
  --radius: 12px;
}
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  background: #fffaf2;
  line-height: 1.55;
}
img {
  max-width: 100%;
  display: block;
}
iframe, video, table {
  max-width: 100%;
}
a {
  color: var(--maroon);
  text-decoration: none;
}
a:hover {
  color: var(--saffron-dk);
}
h1, h2, h3, h4 {
  font-family: 'Cinzel', 'Poppins', serif;
  color: var(--maroon);
  margin: 0 0 .5em;
}
h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
/* container side gap kam */
.container {
  width: min(100% - 32px, 1480px);
  margin: 0 auto;
  padding: 0;
}
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .2s;
  font-size: .95rem;
}
/*.btn-primary { background: var(--saffron); color: #fff; border-radius: 10px; } */
.btn-primary:hover {
  background: var(--saffron-dk);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--saffron);
  color: var(--saffron-dk);
}
.btn-maroon {
  background: var(--maroon);
  color: #fff;
}
.btn-sm {
  padding: 6px 14px;
  font-size: .85rem;
}
.btn-block {
  display: block;
  width: 100%;
}
@media not all {
/* Header CSS moved to static/css/header.css. Legacy topbar styles disabled. */
/* 02. Topbar + language switcher */
.topbar {
  background: var(--maroon);
  color: #ffe9c2;
  font-size: .85rem;
  padding: 4px 0;
}
.topbar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar__left {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.topbar__right {
  display: flex;
  gap: 14px;
  align-items: center;
}
.topbar__link {
  color: #ffe9c2;
}
.topbar__link:hover {
  color: #fff;
}
.topbar__link--cta {
  background: var(--saffron);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
}
.topbar__user {
  font-weight: 600;
}
.topbar__tagline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-weight: 700;
}
.ic {
  display: inline-block;
  margin-right: 4px;
}
.lang-switcher {
  position: relative;
}
.lang-switcher__toggle {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #ffe9c2;
  padding: 4px 12px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
}
.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 180px;
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  box-shadow: var(--shadow);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  display: none;
  z-index: 90;
}
.lang-switcher.is-open .lang-switcher__menu {
  display: block;
}
.lang-switcher__menu a {
  display: block;
  padding: 8px 14px;
}
.lang-switcher__menu a:hover, .lang-switcher__menu a.is-active {
  background: var(--cream);
  color: var(--maroon);
}
}

.hero__online {
  width: max-content;
  max-width: min(86vw, 300px);
  margin: 2px auto 6px;
  padding: 1px 0;
  border-radius: 999px;
  background: transparent;
  color: #fff7e8;
  font-weight: 600;
  font-size: 0.68rem;
  line-height: 1.25;
  box-shadow: none;
  text-align: center;
}

/* 03. Main navbar + desktop dropdowns */
/* 03. Main navbar + desktop dropdowns */
header.nav,
.nav {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  display: block;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  transform: none;
  opacity: 1;
  visibility: visible;
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  width: 285px;
  height: 72px;
  object-fit: contain;
}
.brand__txt strong {
  display: block;
  font-family: 'Cinzel';
  color: var(--maroon);
  font-size: 1.05rem;
}
.brand__txt small {
  color: var(--muted);
}
.brand--light .brand__txt strong, .brand--light .brand__txt small {
  color: #ffe9c2;
}
.nav__menu {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}
.nav__menu > a, .nav__item > a {
  color: var(--ink);
  font-weight: 500;
  font-size: .88rem;
  white-space: nowrap;
  padding: 6px 3px;
}
.nav__menu i {
  display: none;
  width: 1.1em;
  margin-right: 6px;
  color: var(--saffron-dk);
  text-align: center;
}
.nav__dropdown-toggle > span:first-child {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.nav__menu a.is-active, .nav__menu a:hover, .nav__item > a:hover {
  color: var(--saffron-dk);
}
.nav__menu .nav__cta {
  color: #fff;
}
@media (min-width: 1181px) {
  .nav__menu {
    gap: 8px;
    flex-wrap: nowrap;
  }
.nav__menu > a, .nav__item > a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid rgba(122, 31, 31, .10);
    border-radius: 999px;
    background: rgba(255, 255, 255, .64);
    box-shadow: 0 6px 16px rgba(122, 31, 31, .07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease, border-color .18s ease;
  }
.nav__menu > a:hover, .nav__item > a:hover, .nav__menu > a.is-active {
    color: var(--maroon);
    border-color: rgba(244, 162, 97, .45);
    background: rgba(255, 247, 232, .88);
    box-shadow: 0 9px 22px rgba(122, 31, 31, .11);
    transform: translateY(-1px);
  }
}
.nav__burger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1px solid rgba(122, 31, 31, .16);
  border-radius: 8px;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--maroon);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* ===== Hover dropdown for Puja Services / Other Services ===== */
.nav__item {
  position: relative;
}
.nav__item > a .caret {
  font-size: .7em;
  margin-left: 4px;
  transition: transform .2s;
}
.nav__item:hover > a .caret {
  transform: rotate(180deg);
}
.dropdown {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  max-height: 70vh;
  overflow-y: auto;
  background: #fff;
  border-top: 3px solid var(--saffron);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 24px rgba(122, 31, 31, .15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 100;
}
.nav__item:hover > .dropdown, .nav__item:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li {
  margin: 0;
}
.dropdown a {
  display: block;
  padding: 10px 18px;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 500;
  white-space: nowrap;
  border-left: 3px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}
.dropdown a:hover {
  background: var(--cream);
  color: var(--maroon);
  border-left-color: var(--saffron);
}

/* Small screens */
@media (max-width: 480px) {
    .top-bar {
        font-size: 13px;
        padding: 8px 10px !important;
    }
}



/* 05. Hero slider / hero CTA / hero trust */
.hero {
  color: #372607;
  padding: 70px 0;
  text-align: center;
}
.hero_photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: .4;
}
.hero h1 {
  color: #fff;
}
.hero h1 span {
  color: var(--gold);
  display: block;
  font-size: 1.1em;
}
.hero p {
  font-size: 1.15rem;
  opacity: .92;
  max-width: 720px;
  margin: 12px auto 24px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: nowrap;
}
.hero__cta .btn-lg {
  padding: 8px 18px;
  min-height: 38px;
  font-size: 0.88rem;
  line-height: 1.2;
}
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  background: #000;
}
/* SLIDER WRAPPER */
.hero-slider {
  position: absolute;
  inset: 0;
}
/* SLIDES */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: slideShow 12s infinite;
}
/* IMAGE */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoom 4s ease-in-out infinite;
  filter: brightness(0.75);
}
/* TEXT CENTER */
.hero-content {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  text-shadow: 0 0 20px gold;
  z-index: 2;
  width: min(92%, 850px);
}
.hero-content p {
  color: #fffdf6;
  font-weight: 600;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
}
.hero-typewriter {
  display: inline-block;
  max-width: min(92vw, 720px);
  overflow: visible;
  white-space: normal;
  border-right: 0;
  font-family: 'Cinzel', 'Poppins', serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffe7a3;
  text-transform: none;
  animation: heroGlowText 1.8s ease-in-out infinite alternate;
  text-shadow: 0 0 8px rgba(255, 231, 163, 0.95), 0 0 18px rgba(240, 138, 0, 0.72), 0 3px 18px rgba(0, 0, 0, 0.82);
}
@keyframes heroGlowText {
  from {
    text-shadow: 0 0 7px rgba(255, 231, 163, 0.76), 0 0 14px rgba(240, 138, 0, 0.55), 0 3px 16px rgba(0, 0, 0, 0.82);
  }
to {
    text-shadow: 0 0 12px rgba(255, 231, 163, 1), 0 0 28px rgba(240, 138, 0, 0.86), 0 3px 18px rgba(0, 0, 0, 0.88);
  }
}
/*  SMOOTH ZOOM IN-OUT */ 
@keyframes zoom {
  0% {
    transform: scale(1);
  }
50% {
    transform: scale(1.12);
  }
100% {
    transform: scale(1);
  }
}
/*  NO BLACK SCREEN FIX */ 
@keyframes slideShow {
  0% {
    opacity: 0.5;
  }
28% {
    opacity: 1;
  }
33% {
    opacity: 0.3;
  }
/* 70% { opacity: 0.1; } */ 
100% {
    opacity: 0;
  }
}
/* SLIDE TIMING */
.hero-slide:nth-child(1) {
  animation-delay: 0s;
}
.hero-slide:nth-child(2) {
  animation-delay: 4s;
}
.hero-slide:nth-child(3) {
  animation-delay: 8s;
}
/* ===================== */
/* 🔥 BOTTOM OVERLAY FIX */
/* ===================== */
.hero__overlay {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.hero__cta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
  flex-wrap: nowrap;
}
.hero__trust {
  color: #fff;
  font-size: 14px;
  opacity: 0.9;
}
/* 06. Generic sections, grids, cards */
.section {
  padding: 60px 0;
}
.section--cream {
  background: var(--cream);
}
.section__title {
  text-align: center;
  margin-bottom: 8px;
}
.section__sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 36px;
}
body:has(.hero) .section__title {
  margin-bottom: 18px !important;
}
body:has(.hero) .section__sub {
  margin-top: 4px;
  margin-bottom: 42px;
}
/* Generic grids + cards */
.grid {
  display: grid;
  gap: 22px;
  align-items: stretch;
}
.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  border-top: 3px solid var(--saffron);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(122, 31, 31, .18);
}
.card__img {
  aspect-ratio: 16/10;
  background: var(--cream);
  object-fit: cover;
  width: 100%;
}
.card__body {
  padding: 18px;
}
.card__title {
  color: var(--maroon);
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.card__desc {
  color: var(--muted);
  font-size: .92rem;
}
/* ========================= 07. Contact/glass form + captcha ========================= */
.glass-form {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 200, 255, 0.35);
  border-radius: 18px;
  padding: 25px;
  width: 100%;
  max-width: 540px;
  margin: 60px auto;
  box-shadow: 0 10px 30px rgba(0, 150, 255, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.glass-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 200, 255, 0.25);
}
.contact-page-grid--form-only {
  display: flex;
  justify-content: center;
}
.contact-page-grid--form-only .contact-form {
  margin: 0 auto 42px;
}
/* ========================= LABEL ========================= */
.glass-form label {
  color: #111;
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}
/* ========================= INPUT & TEXTAREA (MORDERN STYLE) ========================= */
.glass-form input, .glass-form textarea {
  width: 100%;
  padding: 11px 12px;
  margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.75);
  color: #111;
  outline: none;
  transition: 0.3s ease;
  font-size: 14px;
}
/* FOCUS EFFECT */
.glass-form input:focus, .glass-form textarea:focus {
  border-color: #00c6ff;
  box-shadow: 0 0 12px rgba(0, 198, 255, 0.4);
  background: #fff;
  transform: scale(1.01);
}
/* ========================= BUTTON (MASSIVE GLOW) ========================= */
.btn-submit {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  border-radius: 14px;
  color: white;
  cursor: pointer;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  transition: 0.3s ease;
}
.btn-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.6), 0 0 40px rgba(0, 120, 255, 0.3);
}
/* ========================= CAPTCHA BOX ========================= */
.captcha-box {
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 200, 255, 0.25);
  color: #111;
  font-size: 13px;
  margin-bottom: 12px;
}
/* ========================= 08. Auth pages ========================= */
.auth-section {
  min-height: calc(100vh - 260px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(122, 31, 31, 0.08), rgba(240, 138, 0, 0.10)), #fffaf2;
}
.auth-wrap {
  display: flex;
  justify-content: center;
}
.auth-card {
  width: min(100%, 460px);
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(122, 31, 31, 0.14);
  border-top: 4px solid var(--saffron);
}
.auth-card h2 {
  text-align: center;
  margin-bottom: 8px;
}
.muted {
  color: var(--muted);
}
.auth-card > .muted {
  text-align: center;
  margin: 0 0 22px;
}
.auth-form {
  display: grid;
  gap: 10px;
}
.auth-form label {
  color: var(--maroon);
  font-weight: 600;
  font-size: 0.92rem;
}
.auth-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 13px;
  font: inherit;
  background: #fffaf2;
  outline: none;
}
.auth-form input:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(240, 138, 0, 0.16);
  background: #fff;
}
.auth-form .full, .auth-card .full {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.auth-foot {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}
.auth-foot a {
  font-weight: 700;
}
.btn-link {
  background: transparent;
  color: var(--saffron-dk);
  box-shadow: none;
  padding: 0;
}
/* =========================
   📱 MOBILE RESPONSIVE (PERFECT)
========================= */ @media (max-width: 768px) {
  .glass-form {
    width: 92%;
    padding: 16px;
    margin: 40px auto;
    border-radius: 14px;
  }
.glass-form label {
    font-size: 13px;
  }
.glass-form input, .glass-form textarea {
    padding: 9px;
    font-size: 13px;
  }
.btn-submit {
    padding: 10px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }
h1 {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
  }
h2 {
    font-size: clamp(1.3rem, 7vw, 1.75rem);
  }
.btn, button, input, textarea, select {
    max-width: 100%;
  }
.glass-form {
    width: 95%;
    padding: 14px;
  }
}
/* ============== FLASHES ============== */
.flash-messages {
  list-style: none;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 720px);
  z-index: 2000;
}
.flash-messages li {
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}
.flash-messages li.success {
  background-color: #d4edda;
  color: #155724;
}
.flash-messages li.error {
  background-color: #f8d7da;
  color: #721c24;
}
@media (max-width: 768px) {
  .flash-messages {
    top: 82px;
    left: 50%;
    right: auto;
    width: min(92vw, 420px);
    transform: translateX(-50%);
  }
.flash-messages li {
    padding: 10px 12px;
    font-size: 0.86rem;
    line-height: 1.35;
  }
}

/* ===================== WhatsApp Floating Button ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: white;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 3000;
  line-height: 1;
  text-decoration: none;
  animation: floatUpDown 2.6s ease-in-out infinite;
}
/* hover */
.whatsapp-float:hover {
  background: #128C7E;
  color: #fff;
  box-shadow: 0 0 20px #25D366;
}
/* smooth up-down */ @keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
50% {
    transform: translateY(-5px);
  }
100% {
    transform: translateY(0);
  }
}
/* 10. Admin layout, tables, gallery/blog helpers */
.admin {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 100vh;
}
.admin__sidebar {
  background: var(--maroon);
  color: #ffe9c2;
  padding: 24px 0;
}
.admin__sidebar h3 {
  color: var(--gold);
  padding: 0 20px;
  font-family: 'Cinzel';
}
.admin__nav {
  display: flex;
  flex-direction: column;
}
.admin__nav a {
  color: #ffe9c2;
  padding: 12px 20px;
  border-left: 3px solid transparent;
}
.admin__nav a:hover, .admin__nav a.is-active {
  background: rgba(255, 255, 255, .08);
  border-left-color: var(--saffron);
  color: #fff;
}
.admin__main {
  padding: 24px 30px;
  background: #fdfaf3;
}
.admin__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.admin-recent-card .card__body {
  padding: 14px;
}
.admin-recent-table {
  font-size: 0.82rem;
}
.admin-recent-table th, .admin-recent-table td {
  padding: 7px 8px;
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.table th, .table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.table th {
  background: var(--cream);
  color: var(--maroon);
  font-weight: 600;
  font-size: .9rem;
}
.table tbody tr:hover {
  background: #fffaf2;
}
.badge {
  padding: 2px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
}
.badge--active {
  background: #e6f5e2;
  color: #275c1f;
}
.badge--inactive {
  background: #f1eae0;
  color: #6b5c54;
}
.badge--new {
  background: #fff5d6;
  color: #7a5400;
}
/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.gallery-grid img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.admin-gallery-media {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #111;
}
.admin-blog-table img {
  width: 96px;
  max-width: 96px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.admin-blog-edit {
  min-width: min(780px, 78vw);
  margin-top: 12px;
  padding: 16px;
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.admin-user-password {
  display: inline-block;
  margin-left: 6px;
  position: relative;
}
.admin-user-password summary {
  list-style: none;
  cursor: pointer;
}
.admin-user-password summary: : -webkit-details-marker {
  display: none;
}
.admin-user-password form {
  position: absolute;
  right: 0;
  z-index: 5;
  width: min(320px, 78vw);
  margin-top: 8px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.admin-otp-card {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding: 14px 16px;
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.admin-otp-card p {
  margin: 3px 0 0;
  color: var(--muted);
}
.admin-otp-card form {
  display: flex;
  gap: 8px;
  align-items: center;
}
.admin-otp-card input {
  width: 170px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.blog-hero {
  background: linear-gradient(135deg, rgba(122, 31, 31, .95), rgba(199, 121, 25, .9));
}
.blog-section {
  background: linear-gradient(180deg, #fffaf2 0%, #fff7e8 100%);
  padding-top: 52px;
}
.blog-section .container {
  width: min(100% - 24px, 1760px);
}
.puja-section .container,
.blog-section .container,
.blog-detail-section .container {
  width: min(100% - 16px, 1760px) !important;
}
.puja-content,
.blog-detail {
  padding-inline: clamp(14px, 2vw, 28px) !important;
}
.blog-list {
  display: grid;
  gap: 26px;
}
.blog-search {
  margin: 0 0 26px;
  padding: 18px;
  border: 1px solid rgba(180, 122, 48, 0.22);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(122, 31, 31, 0.08);
}
.blog-search label {
  display: block;
  margin-bottom: 8px;
  color: #7a1f1f;
  font-weight: 800;
}
.blog-search__row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.blog-search input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #ead8bd;
  border-radius: 10px;
  font: inherit;
  outline: none;
}
.blog-search input:focus {
  border-color: #c97000;
  box-shadow: 0 0 0 3px rgba(201, 112, 0, 0.12);
}
.blog-search__result {
  margin: -10px 0 22px;
  color: var(--muted);
  font-weight: 700;
}
.blog-search--sidebar {
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}
.blog-search--sidebar input {
  margin-bottom: 10px;
}
.blog-card {
  display: grid;
  grid-template-columns: minmax(380px, 500px) minmax(0, 1fr);
  gap: 30px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(180, 122, 48, 0.20);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(58, 38, 19, 0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 121, 25, 0.36);
  box-shadow: 0 18px 42px rgba(58, 38, 19, 0.13);
}
.blog-card__media {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 270px;
  aspect-ratio: 16 / 10;
  background: #f5ead7;
  overflow: hidden;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.blog-card:hover .blog-card__media img {
  transform: scale(1.035);
}
.blog-card__body {
  padding: 28px 30px 28px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: #7f541b;
  font-size: 0.88rem;
  font-weight: 600;
}
.blog-meta span:not(:last-child): : after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 14px;
  vertical-align: middle;
  border-radius: 50%;
  background: #c77919;
}
.blog-card h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.45rem, 1.85vw, 2.1rem);
  line-height: 1.25;
}
.blog-card h2 a {
  color: #651818;
}
.blog-card p {
  margin: 0 0 18px;
  color: #4f453d;
  line-height: 1.75;
  max-width: 980px;
}
.home-blog-section {
  background: #fff;
}
.home-blog-card {
  background: #fffdf8;
  border: 1px solid rgba(180, 122, 48, 0.18);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(58, 38, 19, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.home-blog-card__media {
  display: block;
  width: 100%;
  height: 220px;
  aspect-ratio: 16 / 10;
  background: #f5ead7;
  overflow: hidden;
}
.home-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.home-blog-card:hover .home-blog-card__media img {
  transform: scale(1.04);
}
.home-blog-card__body {
  padding: 18px;
  min-width: 0;
}
.home-blog-card h3 {
  margin: 10px 0 8px;
  font-size: 1.1rem;
  line-height: 1.35;
  min-height: 2.95em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-blog-card h3 a {
  color: #651818;
}
.home-blog-card p {
  margin: 0;
  color: #5a4b3d;
  line-height: 1.65;
  min-height: 4.95em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .home-blog-section .grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
.home-blog-card__media {
    height: 200px;
  }
}
@media (max-width: 680px) {
  .home-blog-section .grid--3 {
    grid-template-columns: 1fr;
  }
}
.blog-meta--hero {
  justify-content: center;
  color: #ffe7b8;
}
.blog-detail__photo {
  width: min(100%, 860px);
  max-height: 460px;
  margin-left: auto;
  margin-right: auto;
}
.blog-detail {
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.76), rgba(255, 255, 255, 0.96)), #fff;
}
.blog-detail p {
  color: #3f3329;
  font-size: 1rem;
  line-height: 1.85;
}
.blog-comments, .blog-reply {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(180, 122, 48, 0.22);
}
.blog-comments__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.blog-comments h2, .blog-reply h2 {
  margin: 0 0 8px;
  color: #681919;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}
.blog-comments__head p, .blog-reply > p {
  margin: 0;
  color: #6b5c50;
}
.blog-comments__list {
  display: grid;
  gap: 14px;
}
.blog-comment {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  background: #fffaf2;
  border: 1px solid rgba(180, 122, 48, 0.18);
  border-radius: 10px;
}
.blog-comment__avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #7a1f1f, #c77919);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}
.blog-comment__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  color: #7a1f1f;
}
.blog-comment__meta span {
  color: #8b7662;
  font-size: 0.88rem;
}
.blog-comment p {
  margin: 8px 0 0;
}
.blog-comment__reply-box {
  margin-top: 12px;
}
.blog-comment__reply-box summary {
  display: inline-flex;
  color: var(--maroon);
  font-weight: 700;
  cursor: pointer;
}
.blog-login-note {
  margin: 8px 0 0;
  color: #6b5c50;
  font-size: 0.9rem;
}
.blog-login-note a {
  color: var(--maroon);
  font-weight: 800;
}
.blog-reply__form--inline {
  margin-top: 12px;
  padding: 14px;
  border: 1px dashed rgba(180, 122, 48, 0.28);
  border-radius: 10px;
  background: #fff;
}
.blog-comment__replies {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.blog-comment--reply {
  grid-template-columns: 38px minmax(0, 1fr);
  padding: 12px;
  background: #fff;
}
.blog-comment--reply .blog-comment__avatar {
  width: 38px;
  height: 38px;
  font-size: 0.9rem;
}
.blog-comment--admin {
  border-color: rgba(122, 31, 31, 0.28);
  background: #fff7e8;
}
.blog-comment__badge {
  display: inline-flex;
  margin-left: 4px;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--maroon);
  color: #fff !important;
  font-size: 0.72rem !important;
}
.blog-comments__empty {
  padding: 16px;
  border-radius: 10px;
  background: #fffaf2;
  color: #6b5c50;
}
.blog-reply {
  background: #fffaf2;
  border: 1px solid rgba(180, 122, 48, 0.2);
  border-radius: 12px;
  padding: 24px;
}
.blog-reply__form {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}
.blog-reply__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.blog-reply label {
  color: #3f2b1c;
  font-weight: 700;
}
.blog-reply input, .blog-reply textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #ead8bd;
  border-radius: 8px;
  background: #fff;
  color: #2c241d;
  padding: 12px 13px;
  font: inherit;
  outline: none;
}
.blog-reply input:focus, .blog-reply textarea:focus {
  border-color: #c77919;
  box-shadow: 0 0 0 3px rgba(199, 121, 25, 0.14);
}
.blog-reply__check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #5a4b3d;
  font-weight: 500;
  line-height: 1.55;
}
.blog-reply__check input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
}
.admin-inline-reply {
  display: inline-block;
  margin: 4px 0;
}
.admin-inline-reply summary {
  list-style: none;
  cursor: pointer;
}
.admin-inline-reply summary::-webkit-details-marker {
  display: none;
}
.admin-inline-reply form {
  display: grid;
  gap: 6px;
  min-width: 220px;
  margin-top: 6px;
}
.admin-inline-reply textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  font: inherit;
}
.empty-state {
  text-align: center;
  color: var(--muted);
}
/* ALL BOXES SAME STYLE */
.settings-box {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}
/* HEADINGS */
.settings-box h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #111;
}
/* SUB BOX */
.sub-box {
  border: 1px solid #ddd;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  background: #fafafa;
}
/* FIELDS */
.field {
  margin-bottom: 12px;
}
.field label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}
.admin-inline-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  align-items: end;
}
.admin-inline-form .field {
  margin-bottom: 0;
}
.admin-inline-form input {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
/* INPUTS */
.settings-box input, .settings-box textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
/* IMAGE */
.preview-img {
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 10px;
}
/* BUTTON */
.btn-primary {
  background: #ff9800;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}
.btn-primary:hover {
  background: #e68900;
}
/* ========================================================= 📱 RESPONSIVE FIX START (ADD BELOW YOUR CSS) ========================================================= */
/* ---------- TABLE SCROLL FIX ---------- */
.admin__main {
  overflow-x: auto;
  /* prevent layout break */
}
.table {
  min-width: 650px;
  /* table shrink na ho */
}
/* ---------- HEADER WRAP ---------- */
.admin__head {
  flex-wrap: wrap;
  gap: 10px;
}
/* =========================================================
   📱 TABLET VIEW (SIDEBAR TOP)
========================================================= */ @media (max-width: 900px) {
  .admin {
    grid-template-columns: 1fr;
    /* sidebar top */
  }
.admin__sidebar {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    padding: 10px;
  }
.admin__nav {
    flex-direction: row;
  }
.admin__nav a {
    white-space: nowrap;
    padding: 8px 12px;
    border-left: none;
    border-bottom: 3px solid transparent;
  }
.admin__nav a.is-active {
    border-bottom: 3px solid var(--saffron);
  }
.admin__main {
    padding: 16px;
  }
}
/* =========================================================
   📱 MOBILE VIEW
========================================================= */ @media (max-width: 600px) {
  .admin__head {
    flex-direction: column;
    align-items: flex-start;
  }
.table {
    min-width: 500px;
    /* scroll enable */
  }
.gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* =========================================================
   📱 SMALL MOBILE
========================================================= */ @media (max-width: 400px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* ========================= 11. About/home about/detail sections ========================= */
.section--alt {
  padding: 60px 0;
}
/* ========================= 3 COLUMN LAYOUT ========================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.home-about-photo {
  width: 100%;
  max-width: 400px;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  border: 4px solid #e0e0e0;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15), -4px -4px 10px rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 10px;
  background: #fff;
}
/* ========================= About image card ========================= */
.about-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), inset 0 0 10px rgba(255, 255, 255, 0.4);
  transition: 0.4s ease;
}
.about-photo:hover {
  transform: scale(1.03);
}
/* ========================= ABOUT DETAIL PAGE ========================= */
.about-detail {
  padding: 64px 0 72px;
  background: radial-gradient(circle at 12% 8%, rgba(244, 162, 97, .18), transparent 30%), linear-gradient(135deg, #fffaf2 0%, #fff7e8 100%);
}
.about-hero {
  padding: 52px 0 46px;
  text-align: center;
  background: linear-gradient(135deg, rgba(122, 31, 31, .92), rgba(199, 121, 25, .82)), url("../uploads/top.png") center / cover;
  color: #fff8e8;
}
.about-hero h1 {
  color: #fff;
  margin-bottom: 6px;
}
.about-hero p {
  margin: 0;
  color: #ffe9c2;
  font-weight: 600;
}
.about-detail__grid {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  max-width: 1180px;
}
.about-detail__media {
  position: sticky;
  top: 105px;
  padding: 10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 18px 42px rgba(122, 31, 31, .12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.about-detail .about-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  border-width: 3px;
}
.about-detail__content {
  background: rgba(255, 255, 255, .78);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(122, 31, 31, .10);
  border: 1px solid rgba(199, 121, 25, .16);
  border-top: 4px solid var(--saffron);
  min-width: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.about-detail__content .section__title {
  text-align: left;
}
.about-bio {
  color: #3f332d;
  font-size: 1rem;
  line-height: 1.8;
  white-space: normal;
}
.about-bio p {
  margin: 0 0 16px;
}
.about-bio p:last-child {
  margin-bottom: 0;
}
.about-bio ul, .about-bio ol {
  margin: 12px 0 18px;
  padding-left: 22px;
}
.about-bio li {
  margin: 7px 0;
  line-height: 1.75;
}
/* ========================= TEXT CONTENT ========================= */
.heading {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #7a1f1f;
}
.lead {
  color: #c9a227;
  font-weight: 600;
  margin-bottom: 10px;
}
/* short text clamp */
.about-preview {
  font-size: 0.95rem;
  color: #444;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
  margin-bottom: 15px;
  transition: max-height 0.25s ease;
}
.home-kaal-sarp-note {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 10px;
  color: #5a3424;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.55;
}
.home-kaal-sarp-note strong {
  color: #7a1f1f;
  font-weight: 800;
}
.about-preview.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.about-see-more {
  min-width: 130px;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}
.online-puja-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin: 16px 0 14px;
  padding: 14px 16px;
  border: 1px solid rgba(199, 121, 25, 0.22);
  border-radius: 10px;
  background: #fffaf2;
  box-shadow: 0 8px 22px rgba(58, 38, 19, 0.07);
}
.online-puja-note i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #7a1f1f, #c77919);
  color: #fff;
}
.online-puja-note p {
  margin: 0;
  color: #493d32;
  line-height: 1.65;
  font-size: 0.94rem;
}
.online-puja-note p strong {
  display: inline-block;
  margin: 0 2px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #7a1f1f;
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
}
.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 2px;
}
.about-cta-row .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}
.about-cta-row .btn-call, .about-cta-row .btn-wa {
  min-width: 140px;
  justify-content: center;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(122, 31, 31, 0.10);
}
/* ========================= STATS ========================= */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 8px;
}
.stat-row div {
  background: rgba(255, 250, 242, .9);
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid rgba(199, 121, 25, .14);
  box-shadow: 0 8px 20px rgba(122, 31, 31, .07);
  text-align: center;
  min-width: 0;
}
.stat-row strong {
  display: block;
  font-size: 1.2rem;
  color: #7a1f1f;
}
.stat-row span {
  font-size: 0.75rem;
  color: #666;
}
/* ========================= Home about form card (right side) ========================= */
.form-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), inset 0 0 10px rgba(255, 255, 255, 0.4);
  transition: 0.3s ease;
  height: fit-content;
}
.form-card:hover {
  transform: translateY(-5px);
}
.home-enquiry-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}
/* ========================= TABLET FIX - 3 COLUMNS KEPT ========================= */
@media (max-width: 1180px) {
  .section--alt .two-col {
    grid-template-columns: minmax(180px, 0.85fr) minmax(280px, 1.3fr) minmax(200px, 0.85fr);
    gap: 24px;
    align-items: stretch;
  }
  .home-about-photo {
    max-width: 100%;
    width: 100%;
    height: 420px;
  }
  .form-card {
    max-width: 100%;
    margin: 0;
    height: 100%;
  }
}
@media (max-width: 980px) {
  .section--alt .two-col {
    grid-template-columns: minmax(160px, 0.8fr) minmax(240px, 1.4fr) minmax(180px, 0.8fr);
    gap: 18px;
  }
  .home-about-photo {
    max-width: 100%;
    height: 360px;
    aspect-ratio: auto;
    margin: 0;
  }
  .about-preview, .online-puja-note p {
    text-align: left;
  }
}
/* inputs */
.form-card input, .form-card textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
}
/* button */
.form-card button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #f08a00, #c97000);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-photo {
    height: auto;
    max-width: 320px;
    margin: 0 auto;
  }
  .stat-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .online-puja-note {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .about-cta-row {
    justify-content: stretch;
  }
  .form-card {
    margin-top: 20px;
  }
  .home-about-form .form-card {
    display: none;
  }
  .home-enquiry-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }
  .about-detail__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 520px;
  }
  .about-detail .about-detail__media {
    position: static;
    padding: 8px;
    border-radius: 22px;
  }
  .about-detail__content {
    padding: 22px 16px;
    border-radius: 18px;
  }
  .about-detail__content .section__title, .about-detail__content .lead {
    text-align: center;
  }
  .about-bio {
    font-size: 0.95rem;
    line-height: 1.75;
    text-align: left;
  }
  .about-detail {
    padding: 38px 0 48px;
  }
  .about-detail .about-photo {
    max-height: 440px;
    border-radius: 18px;
  }
  .about-hero {
    padding: 34px 0 30px;
  }
  .about-hero h1 {
    font-size: 1.8rem;
  }
  .about-hero p {
    font-size: 0.92rem;
  }
  .stat-row div {
    padding: 10px 6px;
    border-radius: 12px;
  }
  .stat-row strong {
    font-size: 1rem;
  }
  .stat-row span {
    font-size: 0.68rem;
  }
  .about-cta-row .btn {
    flex: 1 1 150px;
    padding: 10px 12px;
  }
}
/* ========================= Mobile dropdown fix ========================= */
@media (max-width: 1200px) {
  .nav__item {
    position: relative;
    touch-action: manipulation;
  }
  .nav__dropdown-toggle {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }
  .nav__item.is-dropdown-open > .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    position: static;
    width: 100%;
    max-height: 60vh;
    overflow-y: auto;
    background: #fff7e8;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 4px 0 4px 14px;
    margin: 0;
    pointer-events: auto;
    z-index: 100;
  }
  .nav__item.is-dropdown-open > .dropdown a {
    display: block;
    padding: 10px 12px 10px 24px;
    font-size: 0.92rem;
    color: var(--ink);
    border-bottom: 1px solid rgba(122, 31, 31, 0.08);
    pointer-events: auto;
    touch-action: manipulation;
  }
  .nav__item.is-dropdown-open > .dropdown a:last-child {
    border-bottom: 0;
  }
  .nav__item.is-dropdown-open > .nav__dropdown-toggle {
    background: #fff0d8;
    color: var(--maroon);
  }
  .nav__item.is-dropdown-open > .nav__dropdown-toggle .caret {
    transform: rotate(180deg);
  }
}
@media (max-width: 480px) {
  .nav__item.is-dropdown-open > .dropdown a {
    padding-left: 20px;
    font-size: 0.88rem;
  }
}
/* iOS Safari touch fix */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 1200px) {
    .nav__item > a {
      cursor: pointer;
    }
    .dropdown {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }
  }
}

/* 12. Service cards + service buttons */
.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card__media {
  display: block;
  color: inherit;
  overflow: hidden;
  height: 250px;
  background: #f5ead7;
  flex: 0 0 auto;
}
.service-card__media img {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.service-card__media:hover img {
  transform: scale(1.04);
  filter: brightness(1.04);
}
@media (max-width: 900px) {
  .blog-card {
    grid-template-columns: 1fr;
  }
.blog-search__row {
    flex-direction: column;
    align-items: stretch;
  }
.blog-card__media {
    min-height: 260px;
  }
.blog-card__body {
    padding: 0 20px 22px;
  }
.blog-comments__head {
    align-items: flex-start;
    flex-direction: column;
  }
.blog-reply__grid {
    grid-template-columns: 1fr;
  }
}
@media (pointer: coarse) and (max-width: 900px) {
  .blog-section .container {
    width: min(100% - 14px, 1760px);
  }
.blog-list {
    gap: 16px;
  }
.blog-card {
    grid-template-columns: minmax(104px, 34%) minmax(0, 1fr) !important;
    gap: 9px;
    align-items: stretch;
  }
.blog-card__media {
    min-height: 132px;
    height: 100%;
    aspect-ratio: auto;
  }
.blog-card__body {
    padding: 9px 9px 9px 0;
  }
.blog-card h2 {
    font-size: 0.84rem;
    line-height: 1.22;
    margin: 5px 0;
  }
.blog-card p {
    font-size: 0.66rem;
    line-height: 1.38;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
.blog-meta {
    gap: 3px 6px;
    font-size: 0.52rem;
    line-height: 1.2;
  }
.blog-card .btn-sm {
    padding: 4px 8px;
    font-size: 0.62rem;
  }
}
@media (max-width: 600px) {
  .blog-card {
    border-radius: 8px;
  }
.blog-card__media {
    min-height: 190px;
  }
.blog-card__body {
    padding: 0 16px 18px;
  }
.blog-meta {
    gap: 8px 10px;
    font-size: 0.82rem;
  }
.blog-meta span:not(:last-child): : after {
    margin-left: 8px;
  }
.admin-blog-edit {
    min-width: 0;
  }
.blog-comment {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 14px;
  }
.blog-comment__avatar {
    width: 38px;
    height: 38px;
  }
.blog-reply {
    padding: 18px 14px;
  }
}
@media (pointer: coarse) and (max-width: 600px) {
.blog-card {
    grid-template-columns: minmax(104px, 34%) minmax(0, 1fr) !important;
    gap: 9px !important;
  }
.blog-card__media {
    min-height: 132px !important;
    height: 100% !important;
  }
.blog-card__body {
    padding: 9px 9px 9px 0 !important;
  }
.blog-meta {
    gap: 3px 6px !important;
    font-size: 0.52rem !important;
    line-height: 1.2 !important;
  }
.blog-card h2 {
    font-size: 0.84rem !important;
    line-height: 1.22 !important;
    margin: 5px 0 !important;
  }
.blog-card p {
    font-size: 0.66rem !important;
    line-height: 1.38 !important;
    margin-bottom: 6px !important;
  }
.blog-card .btn-sm {
    padding: 4px 8px !important;
    font-size: 0.62rem !important;
  }
}
.service-card__body {
  padding: 15px;
  text-align: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}
.service-card h3 {
  font-size: 1.2rem;
  color: var(--maroon);
  margin-bottom: 10px;
  min-height: 3.2em;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 15px;
  min-height: 4.65em;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card .muted.small {
  min-height: 3.1em;
  -webkit-line-clamp: 2;
}
.service-listing-section .service-card h3, .home-services-section .service-card h3 {
  margin-bottom: 4px;
  min-height: 0;
}
.service-listing-section .service-card p, .home-services-section .service-card p {
  margin-bottom: 6px;
  min-height: 0;
}
.service-listing-section .service-card .muted.small, .home-services-section .service-card .muted.small {
  min-height: 0;
}
.service-listing-section .service-card .btn-row, .home-services-section .service-card .btn-row {
  margin-top: 0;
  padding-top: 0;
}
/* 🔥 Glow Hover Effect */
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.6), 0 0 40px rgba(255, 165, 0, 0.4);
}
.service-card:hover h3 {
  color: var(--saffron-dk);
}
.service-card:hover .btn {
  background: var(--saffron-dk);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.6);
}
.home-services-section--popular {
  padding-bottom: 28px;
}
.home-services-section--other {
  padding-top: 28px;
}
.service-category-block {
  margin-bottom: 46px;
  scroll-margin-top: 96px;
}
.service-category-block:last-child {
  margin-bottom: 0;
}
/* Mobile pe service cards ke side mein padding */ @media (max-width: 768px) {
  .container {
    padding: 0 16px;
    /* mobile pe side gap badha do (desktop pe 8px hi rahega) */
  }
.service-card {
    margin: 0 4px;
    /* extra breathing space card ke around */
  }
}
/* FORCE ROW LAYOUT */
.btn-row {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
  width: 100%;
}
/* BUTTON STYLE */
.btn-wa, .btn-call {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}
/* WHATSAPP */
.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
}
/* CALL */
.btn-call {
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 152, 0, 0.4);
}
/* HOVER EFFECT */
.btn-wa:hover, .btn-call:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.25);
}
/* 13. Trust cards / gallery / lightbox */
.card--center {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}
/* subtle border glow effect */
.card--center::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(45deg, transparent, rgba(255, 193, 7, 0.3), transparent);
  opacity: 0;
  transition: 0.3s ease;
}
/* ===== HOVER EFFECT ===== */
.card--center:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.25);
}
.card--center:hover::before {
  opacity: 1;
}
/* ICON STYLE */
.card__icon {
  font-size: 24px;
  margin-bottom: 8px;
  transition: 0.3s ease;
}
/* icon glow */
.card--center:hover .card__icon {
  transform: scale(1.2);
  text-shadow: 0 0 10px gold, 0 0 20px orange;
}
/* TEXT */
.card--center h3 {
  font-size: 16px;
  margin: 5px 0;
}
.card--center p {
  font-size: 13px;
  opacity: 0.8;
}
.card--center {
  min-height: 190px;
  justify-content: flex-start;
}
.card--center h3 {
  min-height: 2.8em;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card--center p {
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* ===== RESPONSIVE (MOBILE FIX) ===== */ @media (max-width: 768px) {
  .card--center {
    min-height: 85px;
    padding: 12px;
  }
.card__icon {
    font-size: 20px;
  }
.card--center h3 {
    font-size: 14px;
  }
.card--center p {
    font-size: 12px;
  }
.section__title {
    margin-bottom: 18px;
  }
}
@media (max-width: 480px) {
  .card--center {
    min-height: 75px;
    padding: 10px;
  }
}
/* img page gallery */
/* ========================= Masonry gallery fix ========================= */
.masonry {
  column-count: 3;
  column-gap: 1px;
}
.masonry__item {
  break-inside: avoid;
  margin-bottom: 1px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  transition: transform 0.3s ease;
}
.masonry__item img {
  width: 100%;
  display: block;
  border-radius: 12px;
  cursor: zoom-in;
}
.masonry__item video {
  width: 100%;
  display: block;
  border-radius: 12px;
  background: #111;
}
.masonry__item figcaption {
  padding: 10px;
  font-size: 14px;
  color: var(--muted);
  background: #fff;
}
.masonry__item:hover {
  transform: translateY(-5px);
}
/* responsive */ @media (max-width: 900px) {
  .masonry {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .masonry {
    column-count: 1;
  }
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.86);
}
.gallery-lightbox.is-open {
  display: flex;
}
.gallery-lightbox__img {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.gallery-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--maroon);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}
.home-gallery .gallery-zoom-img, .stack-gallery .gallery-zoom-img {
  cursor: zoom-in;
}
@media (max-width: 600px) {
  .gallery-lightbox {
    padding: 10px;
  }
.gallery-lightbox__img {
    max-width: 96vw;
    max-height: 82vh;
  }
}
/* ========================= Auto scroll gallery wrapper ========================= */
.btn-gallery {
  display: inline-block;
  background: #f08a00;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  animation: floatBtn 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(240, 138, 0, 0.5), 0 0 20px rgba(240, 138, 0, 0.3);
  transition: 0.3s ease;
}
/* floating animation */ @keyframes floatBtn {
  0% {
    transform: translateY(0);
  }
50% {
    transform: translateY(-6px);
  }
100% {
    transform: translateY(0);
  }
}
.btn-gallery:hover {
  box-shadow: 0 0 15px rgba(240, 138, 0, 0.8), 0 0 30px rgba(240, 138, 0, 0.6), 0 0 45px rgba(240, 138, 0, 0.4);
  filter: brightness(1.1);
}
.auto-gallery {
  overflow: hidden;
  position: relative;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 10px 4px 16px;
}
.home-gallery {
  padding-bottom: 18px;
}
.auto-track {
  display: flex;
  gap: clamp(10px, 1.4vw, 16px);
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}
.auto-item {
  flex: 0 0 clamp(200px, 23vw, 280px);
  height: clamp(150px, 17vw, 210px);
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}
.auto-item img, .auto-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.auto-item:hover img, .auto-item:hover video {
  transform: scale(1.1);
}
.caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 14px;
  padding: 6px;
  text-align: center;
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
100% {
    transform: translateX(-50%);
  }
}
.auto-gallery:hover .auto-track {
  animation-play-state: paused;
}
.auto-gallery::before, .auto-gallery::after {
  content: "";
  position: absolute;
  top: 0;
  width: clamp(24px, 6vw, 60px);
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.auto-gallery::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.auto-gallery::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}
@media (max-width: 768px) {
  .home-gallery .container {
    padding-inline: 10px;
  }
  .auto-gallery {
    width: 100%;
    padding-inline: 2px;
  }
  .auto-track {
    gap: 10px;
  }
  .auto-item {
    flex-basis: clamp(170px, 55vw, 220px);
    height: clamp(145px, 44vw, 185px);
    border-radius: 10px;
  }
  .caption {
    font-size: 12px;
    padding: 5px;
  }
}
/* Responsive mobile view */ @media screen and (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    text-align: center;
  }
.about-photo {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto 20px;
  }
.stat-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
}
/* ========================= 14. Stack gallery + FAQ ========================= */
.stack-gallery {
  position: relative;
  height: 320px;
  margin-top: 0;
  display: none;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .stack-gallery {
    display: flex;
    height: 285px;
    margin-top: -24px;
  }
}
/* ========================= Home FAQ ========================= */
.home-faq {
  background: linear-gradient(135deg, rgba(122, 31, 31, 0.06), rgba(240, 138, 0, 0.08)), #fffaf2;
}
.home-faq__wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.4fr);
  gap: 34px;
  align-items: start;
}
.home-faq__intro {
  position: sticky;
  top: 110px;
}
@media (max-width: 1180px) {
  .home-faq__wrap {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
  }
.home-faq__intro {
    position: static;
    text-align: center;
  }
.home-faq__intro p {
    margin-left: auto;
    margin-right: auto;
  }
.home-faq__eyebrow, .home-faq__cta {
    margin-left: auto;
    margin-right: auto;
  }
}
.home-faq__eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--saffron-dk);
  font-weight: 700;
  font-size: 0.78rem;
  box-shadow: var(--shadow);
}
.home-faq__intro h2 {
  margin-top: 14px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}
.home-faq__intro p {
  color: var(--muted);
  max-width: 430px;
}
.home-faq__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}
.home-faq__cta:hover {
  color: #fff;
  background: #128C7E;
  transform: translateY(-2px);
}
.home-faq__list {
  display: grid;
  gap: 12px;
}
.home-faq__list details {
  background: #fff;
  border: 1px solid rgba(232, 216, 194, 0.9);
  border-radius: 12px;
  box-shadow: 0 8px 26px rgba(122, 31, 31, 0.08);
  overflow: hidden;
}
.home-faq__list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 20px;
  color: var(--maroon);
  font-weight: 700;
  position: relative;
}
.home-faq__list summary::-webkit-details-marker {
  display: none;
}
.home-faq__list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--saffron-dk);
  font-size: 1.1rem;
}
.home-faq__list details[open] summary::after {
  content: "-";
  background: var(--saffron);
  color: #fff;
}
@media (max-width: 768px) {
  .home-faq__list summary {
    padding-right: 54px;
  }
.home-faq__list summary::after {
    right: 14px;
    width: 30px;
    height: 30px;
    font-size: 1.25rem;
    font-family: Arial, sans-serif;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(240, 138, 0, 0.18);
  }
}
.home-faq__list p {
  margin: 0;
  padding: 0 20px 18px;
  color: #4b403a;
  line-height: 1.75;
}
.stack-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: rotateStack 15s infinite linear;
}
.stack-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 200px;
  transform-origin: center;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: 0.5s;
}
.stack-item img, .stack-item video {
  width: 150%;
  height: 100%;
  object-fit: cover;
}
/* ========================= STACK POSITIONING EFFECT (center + back layers) ========================= */
.stack-item:nth-child(1) {
  transform: translate(-50%, -50%) translateZ(200px);
}
.stack-item:nth-child(2) {
  transform: translate(-50%, -50%) translateZ(100px) scale(0.9);
  opacity: 0.9;
}
.stack-item:nth-child(3) {
  transform: translate(-50%, -50%) translateZ(0px) scale(0.8);
  opacity: 0.7;
}
.stack-item:nth-child(4) {
  transform: translate(-50%, -50%) translateZ(-100px) scale(0.7);
  opacity: 0.5;
}
.stack-item:nth-child(5) {
  transform: translate(-50%, -50%) translateZ(-200px) scale(0.6);
  opacity: 0.4;
}
/* loop animation (slow rotation feel) */ @keyframes rotateStack {
  0% {
    transform: rotateY(0deg);
  }
100% {
    transform: rotateY(360deg);
  }
}
/* hover pause .stack-gallery:hover .stack-track { animation-play-state: paused; }*/
/* 15. Responsive nav/topbar final rules */ @media (max-width: 1400px) {
  .nav__menu {
    gap: 10px;
  }
.nav__menu > a, .nav__item > a {
    font-size: .82rem;
  }
.brand img {
    width: 240px;
    height: 62px;
    object-fit: contain;
  }
}
@media (max-width: 1180px) {
  .nav__burger {
    display: flex;
  }
.nav__menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow);
    align-items: stretch;
    justify-content: flex-start;
  }
.nav__menu.is-open {
    display: flex;
  }
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }
.brand img {
    width: min(62vw, 265px);
    height: 56px;
    object-fit: contain;
  }
.brand__txt strong {
    display: block;
    font-family: 'Cinzel';
    color: var(--maroon);
    font-size: 1.05rem;
  }
.brand__txt small {
    color: var(--muted);
  }
.brand--light .brand__txt strong, .brand--light .brand__txt small {
    color: #ffe9c2;
  }
/* mobile pe dropdown inline open */
.nav__item {
    width: 100%;
  }
.nav__dropdown-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
.dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    background: #fff7e8;
    padding-left: 12px;
    margin-top: 4px;
    border-radius: 0;
    max-height: none;
    overflow: visible;
    min-width: 0;
  }
.nav__item.is-dropdown-open > .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
  }
.dropdown a {
    font-size: .88rem;
    padding: 8px 12px;
  }
.nav__item > a .caret {
    display: inline-block;
    margin-left: auto;
    transition: transform .2s ease;
  }
.nav__item.is-dropdown-open > a .caret {
    transform: rotate(180deg);
  }
}
@media (max-width: 720px) {
  .topbar {
    display: block;
    background: linear-gradient(90deg, #6d1717, #9b4b11 58%, #7a1f1f);
    color: #fff4d8;
    padding: 3px 0;
    font-size: 0.68rem;
  }
.topbar__row {
    justify-content: space-between;
    gap: 4px;
    flex-wrap: nowrap;
  }
.topbar__left, .topbar__right {
    width: auto;
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: nowrap;
    min-width: 0;
  }
.topbar__left .topbar__link[href^="mailto:"] {
    display: none;
  }
.topbar__left .topbar__link[href^="tel:"] {
    display: none;
  }
.topbar__tagline {
    display: inline-flex;
    width: auto;
    justify-content: flex-start;
    font-size: 0.68rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
.topbar__link--cta {
    padding: 2px 7px;
  }
.topbar__right {
    justify-content: flex-end;
  }
.topbar__right .topbar__link {
    display: none;
  }
.topbar__right .topbar__link--admin {
    display: inline-flex;
    white-space: nowrap;
    font-weight: 700;
  }
.nav__row {
    gap: 8px;
  }
.brand img {
    width: min(48vw, 205px);
  }
}
@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, 1480px);
  }
.hero {
    min-height: 560px;
    height: 78vh;
  }
.hero-content h1 {
    font-size: clamp(1.65rem, 8vw, 2.3rem);
  }
.hero-content p {
    font-size: 0.96rem;
  }
.hero-typewriter {
    max-width: 92vw;
    font-size: 0.98rem;
    white-space: normal;
    animation: heroGlowText 1.8s ease-in-out infinite alternate;
  }
.hero__overlay {
    bottom: 18px;
    padding: 0 14px;
  }
.hero__cta .btn-lg {
    width: auto;
    min-width: 0;
    padding: 8px 12px;
    font-size: 0.8rem;
    justify-content: center;
    white-space: nowrap;
  }
.home-faq__wrap {
    grid-template-columns: 1fr;
    gap: 22px;
  }
.home-faq__intro {
    position: static;
    text-align: center;
  }
.home-faq__eyebrow, .home-faq__cta {
    margin-left: auto;
    margin-right: auto;
  }
.home-faq__intro p {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 480px) {
  .container {
    width: min(100% - 22px, 1480px);
  }
.section {
    padding: 42px 0;
  }
.home-faq__list summary {
    padding: 15px 46px 15px 14px;
    font-size: 0.94rem;
  }
.home-faq__list p {
    padding: 0 14px 15px;
    font-size: 0.9rem;
  }
}
/* 16. Phone desktop-mode overrides
   Phone browsers in "Desktop site" mode often use a 980-1024px layout
   viewport. These overrides keep the home page readable on touch phones. */ @media (pointer: coarse) and (max-width: 1200px), (max-device-width: 600px) {
  .container, .footer__grid {
    width: min(100% - 22px, 1480px);
  }
.section {
    padding: 42px 0;
  }
.section--alt .two-col, .home-blog-section .grid--3, .section--alt .grid--4 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  }
.section--alt .two-col {
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.15fr) minmax(240px, 0.95fr) !important;
    gap: 18px;
    align-items: stretch;
    text-align: left;
  }
.section--alt .two-col > div {
    grid-column: auto !important;
    min-width: 0;
  }
.section--alt .two-col > div:nth-child(2) {
    align-self: start;
    overflow: visible;
  }
.section--alt .two-col .home-about-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), inset 0 0 10px rgba(255, 255, 255, 0.4);
    height: 100%;
  }
.section--alt .two-col > div:nth-child(2) .heading {
    font-size: 1rem;
    margin-bottom: 3px;
  }
.section--alt .two-col > div:nth-child(2) .lead {
    font-size: 0.66rem;
    margin-bottom: 4px;
  }
.section--alt .two-col > div:nth-child(2) .about-preview {
    -webkit-line-clamp: 4;
    font-size: 0.62rem;
    line-height: 1.45;
    margin-bottom: 5px;
  }
.section--alt .two-col > div:nth-child(2) .about-preview.is-expanded {
    max-height: 95px;
    overflow-y: auto;
    padding-right: 4px;
  }
.section--alt .two-col > div:nth-child(2) .stat-row {
    gap: 6px;
    margin: 5px 0;
  }
.section--alt .two-col > div:nth-child(2) .stat-row div {
    min-width: 48px;
    padding: 5px 7px;
    border-radius: 7px;
  }
.section--alt .two-col > div:nth-child(2) .stat-row strong {
    font-size: 0.72rem;
  }
.section--alt .two-col > div:nth-child(2) .stat-row span {
    font-size: 0.52rem;
  }
.section--alt .two-col > div:nth-child(2) .online-puja-note {
    gap: 6px;
    margin: 5px 0;
    padding: 6px 8px;
    border-radius: 7px;
  }
.section--alt .two-col > div:nth-child(2) .online-puja-note i {
    width: 26px;
    height: 26px;
    font-size: 0.68rem;
  }
.section--alt .two-col > div:nth-child(2) .online-puja-note p {
    line-height: 1.35;
    font-size: 0.56rem;
  }
.section--alt .two-col > div:nth-child(2) .online-puja-note p strong {
    padding: 1px 4px;
  }
.section--alt .two-col > div:nth-child(2) .about-cta-row {
    gap: 5px;
    margin: 5px 0 0;
  }
.section--alt .two-col > div:nth-child(2) .about-cta-row .btn-call, .section--alt .two-col > div:nth-child(2) .about-cta-row .btn-wa, .section--alt .two-col > div:nth-child(2) .about-see-more {
    min-width: 0;
    padding: 6px 8px;
    border-radius: 7px;
    font-size: 0.58rem;
  }
.home-about-photo {
    max-width: 100%;
    width: 100%;
    height: 280px;
    aspect-ratio: auto;
    margin: 0;
  }
.service-card__media, .home-blog-card__media {
    height: 220px;
  }
.service-card h3, .home-blog-card h3, .card--center h3 {
    min-height: 2.75em;
  }
.service-card p, .home-blog-card p, .card--center p {
    min-height: 4.5em;
  }
.section--alt .two-col > div, .home-blog-card, .home-faq__list details, .footer__grid > div {
    min-width: 0;
  }
.about-preview, .online-puja-note p, .home-blog-card__body, .home-faq__list {
    text-align: left;
  }
.stat-row, .about-cta-row {
    justify-content: center;
  }
.online-puja-note {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
.form-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: 100%;
  }
.home-faq__intro {
    position: sticky;
    top: 110px;
    text-align: left;
  }
.home-faq__wrap {
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.4fr) !important;
    gap: 34px;
    align-items: start;
  }
.home-faq__intro p, .home-faq__eyebrow {
    margin-left: 0;
    margin-right: 0;
  }
.home-faq__cta {
    margin-left: 0;
    margin-right: 0;
  }
.footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr !important;
    text-align: left;
    gap: 40px;
  }
.footer .brand__txt, .footer h4, .footer__links, .social {
    text-align: left;
    justify-content: flex-start;
  }
}
@media (max-width: 560px) {
  .section--alt .two-col, .home-blog-section .grid--3, .section--alt .grid--4, .home-faq__wrap, .footer__grid {
    grid-template-columns: 1fr !important;
  }
.footer .brand, .social {
    justify-content: center;
  }
.footer .brand__txt, .footer h4, .footer__links {
    text-align: center;
  }
}
/* Final phone "Desktop site" override: keep FAQ/footer like desktop. */ 
@media (pointer: coarse) and (min-width: 700px) and (max-width: 1200px) {
  .home-faq__wrap {
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.4fr) !important;
    gap: 34px !important;
    align-items: start;
  }
.home-faq__intro {
    position: sticky !important;
    top: 110px;
    text-align: left !important;
  }
.home-faq__intro p, .home-faq__eyebrow, .home-faq__cta {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
.home-faq__list {
    text-align: left !important;
  }
.footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
    text-align: left !important;
  }
.footer__grid > div {
    min-width: 0;
  }
.footer .brand, .footer .brand__txt, .footer h4, .footer__links, .social {
    text-align: left !important;
    justify-content: flex-start !important;
  }
}
@media (min-width: 700px) and (max-width: 1180px) {
  .home-faq__wrap {
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.4fr) !important;
    gap: 18px !important;
    align-items: start;
  }
.home-faq__intro {
    position: sticky !important;
    top: 110px;
    text-align: left !important;
  }
.home-faq__intro p, .home-faq__eyebrow, .home-faq__cta {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
.footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    width: min(100% - 22px, 1480px) !important;
    gap: 7px !important;
    text-align: left !important;
    font-size: 0.42rem;
  }
.footer__grid > div {
    min-width: 0;
  }
.footer .brand, .footer .brand__txt, .footer h4, .footer__links, .social {
    text-align: left !important;
    justify-content: flex-start !important;
  }
.footer .brand img {
    width: 170px;
    height: 54px;
  }
.footer h4 {
    font-size: 0.49rem;
    margin-bottom: 3px;
  }
.footer__links li {
    margin: 2px 0;
  }
.footer__bar {
    font-size: 0.4rem;
    margin-top: 22px;
    padding-top: 8px;
  }
.home-faq__intro h2 {
    font-size: 0.20rem;
    margin-top: 8px;
  }
.home-faq__intro p, .home-faq__list summary, .home-faq__list p {
    font-size: 0.40rem;
  }
.home-faq__eyebrow {
    font-size: 0.20rem;
    padding: 4px 8px;
  }
.home-faq__cta {
    font-size: 0.46rem;
    padding: 8px 10px;
  }
.home-faq__list {
    gap: 7px;
  }
.home-faq__list summary {
    padding: 10px 34px 10px 12px;
  }
.home-faq__list p {
    padding: 0 12px 10px;
  }
.footer__links a, .footer-about-preview {
    overflow-wrap: anywhere;
  }
.footer__col--services .footer__links,
.footer__col--quick .footer__links,
.footer__col--contact .footer__links,
.footer__col--services .footer__links a,
.footer__col--quick .footer__links a,
.footer__col--contact .footer__links a,
.footer__col--contact .footer__link,
.footer__col--contact .ic {
    font-size: 0.42rem !important;
    line-height: 1.16 !important;
  }
.footer__col--quick .footer__links i {
    font-size: 0.45rem !important;
    width: 0.8em !important;
    margin-right: 2px !important;
  }
.footer-about-preview {
    font-size: 1.5rem !important;
    line-height: 2 !important;
    max-height: 10em !important;
    -webkit-line-clamp: 7 !important;
  }
.footer .social a {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
}
@media (pointer: coarse) and (min-width: 700px) and (max-width: 1200px) {
  .topbar {
    font-size: 0.64rem !important;
    padding: 3px 0 !important;
    overflow: hidden;
  }
.topbar__row {
    width: min(100% - 10px, 1480px) !important;
    gap: 3px !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    overflow: hidden;
  }
.topbar__left, .topbar__right {
    gap: 4px !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    min-width: 0;
    width: auto !important;
  }
.topbar__left {
    flex: 1 1 auto;
    overflow: hidden;
  }
.topbar__right {
    flex: 0 0 auto;
  }
.topbar__tagline, .topbar__link, .google-translate-wrap {
    font-size: 0.64rem !important;
    white-space: nowrap !important;
    line-height: 1.25 !important;
  }
.topbar__tagline, .topbar__left .topbar__link {
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
.topbar__link--cta {
    padding: 2px 6px !important;
  }
.topbar .ic {
    margin-right: 1px !important;
  }
.google-translate-wrap {
    gap: 2px !important;
    margin-right: 2px !important;
  }
.goog-te-gadget, .goog-te-gadget span, .goog-te-combo {
    font-size: 0.62rem !important;
  }
.goog-te-combo {
    max-width: 78px !important;
    height: 20px !important;
    padding: 0 2px !important;
  }
.nav__burger {
    display: none !important;
  }
.nav, .nav__row, .nav__item {
    overflow: visible !important;
  }
.nav__row {
    padding: 9px 0 !important;
    gap: 8px !important;
  }
.brand img {
    width: 185px !important;
    height: 56px !important;
  }
.nav__menu {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 5px !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    min-width: 0;
    overflow: visible !important;
    border-top: 0 !important;
  }
.nav__menu.is-open {
    display: flex !important;
  }
.nav__menu > a, .nav__item > a {
    display: flex !important;
    align-items: center !important;
    gap: 3px !important;
    font-size: 0.58rem !important;
    padding: 5px 6px !important;
    white-space: nowrap !important;
    border-bottom: 0 !important;
    border-radius: 999px !important;
  }
.nav__menu i {
    display: none !important;
  }
.nav__item {
    width: auto !important;
    position: relative !important;
  }
.nav__item > a .caret {
    display: inline-block !important;
    margin-left: 2px !important;
    transition: transform .2s ease !important;
  }
.dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 220px !important;
    max-height: 70vh !important;
    display: none !important;
    overflow-y: auto !important;
    padding: 8px 0 !important;
    margin-top: 0 !important;
    border-top: 3px solid var(--saffron) !important;
    border-radius: 0 0 10px 10px !important;
    background: #fff !important;
    box-shadow: 0 8px 24px rgba(122, 31, 31, .15) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(8px) !important;
    pointer-events: none;
  }
.nav__item:hover > .dropdown, .nav__item:focus-within > .dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }
.nav__item:hover > a .caret, .nav__item:focus-within > a .caret {
    transform: rotate(180deg) !important;
  }
.dropdown a {
    display: block !important;
    font-size: 0.68rem !important;
    padding: 9px 14px !important;
    white-space: nowrap !important;
  }
.nav__item:hover .dropdown, .nav__item:focus-within .dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
.footer__grid {
    display: grid !important;
    grid-template-columns: .99fr 0.64fr 0.58fr 0.76fr !important;
    width: min(100% - 32px, 1480px) !important;
    gap: 7px !important;
    align-items: start !important;
    text-align: left !important;
    font-size: 0.38rem !important;
  }
.footer__grid > div {
    min-width: 0 !important;
  }
.footer .brand, .footer .brand__txt, .footer h4, .footer__links, .social {
    text-align: left !important;
    justify-content: flex-start !important;
  }
.footer .brand img {
    width: 170px !important;
    height: 54px !important;
  }
.footer h4 {
    font-size: 0.36rem !important;
    margin-bottom: 2px !important;
  }
.footer h4::after {
    margin-left: 0 !important;
    width: 18px !important;
    height: 1px !important;
    margin-top: 2px !important;
  }
.footer__links li {
    margin: 0 !important;
  }
.footer__links a, .footer-about-preview {
    overflow-wrap: anywhere !important;
  }
.footer__col--services .footer__links,
.footer__col--quick .footer__links,
.footer__col--contact .footer__links,
.footer__col--services .footer__links li,
.footer__col--quick .footer__links li,
.footer__col--contact .footer__links li,
.footer__col--services .footer__links a,
.footer__col--quick .footer__links a,
.footer__col--contact .footer__links a,
.footer__col--contact .footer__link,
.footer__col--contact .ic {
    font-size: 0.42rem !important;
    line-height: 1.16 !important;
  }
.footer__col--quick .footer__links i {
    font-size: 0.28rem !important;
    width: 0.8em !important;
    margin-right: 2px !important;
  }
.footer__col--services h4,
.footer__col--quick h4,
.footer__col--contact h4 {
    font-size: 0.49rem !important;
    line-height: 1.14 !important;
    margin-bottom: 3px !important;
  }
.footer__col--contact h4[style] {
    margin-top: 10px !important;
  }
.footer-about-preview {
    font-size: 1.4rem !important;
    line-height: 1.42 !important;
    max-height: 10em !important;
    -webkit-line-clamp: 7 !important;
  }
.footer .social a {
    width: 19px !important;
    height: 19px !important;
    font-size: 0.48rem !important;
  }
.footer__bar {
    font-size: 0.16rem !important;
    margin-top: 8px !important;
    padding-top: 6px !important;
  }
}


/* Final mobile top language selector sizing. */
@media (max-width: 720px) {
  .google-translate-wrap {
    max-width: 86px !important;
    gap: 1px !important;
    margin-right: 0 !important;
    flex: 0 0 auto !important;
  }
  .google-translate-wrap > .ic {
    font-size: 0.58rem !important;
    margin-right: 0 !important;
  }
  #google_translate_element,
  #google_translate_element .goog-te-gadget {
    max-width: 68px !important;
    overflow: hidden !important;
  }
  #google_translate_element .goog-te-gadget .goog-te-combo,
  .goog-te-combo {
    width: 68px !important;
    max-width: 68px !important;
    height: 18px !important;
    min-height: 18px !important;
    padding: 0 1px !important;
    font-size: 0.52rem !important;
    line-height: 18px !important;
  }
  .topbar__right {
    gap: 4px !important;
  }
}

/* Desktop/tablet header and footer reset.
   Keeps late phone desktop-mode overrides from shrinking the real desktop UI. */
@media (min-width: 769px) {
  .topbar {
    font-size: 0.85rem !important;
    padding: 4px 0 !important;
    overflow: visible !important;
  }
  .topbar__row {
    width: min(100% - 32px, 1480px) !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
  }
  .topbar__left,
  .topbar__right {
    gap: 14px !important;
    flex-wrap: nowrap !important;
  }
  .topbar__tagline,
  .topbar__link,
  .google-translate-wrap {
    font-size: 0.85rem !important;
    line-height: 1.55 !important;
  }
  .google-translate-wrap {
    max-width: none !important;
    margin-right: 10px !important;
  }
  .goog-te-combo {
    width: auto !important;
    max-width: 160px !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 3px 8px !important;
    font-size: 13px !important;
    line-height: normal !important;
  }

  .nav,
  .nav__row,
  .nav__item {
    overflow: visible !important;
  }
  .nav__row {
    padding: 8px 0 !important;
    gap: 16px !important;
  }
  .brand img {
    width: clamp(220px, 18vw, 285px) !important;
    height: 72px !important;
    object-fit: contain !important;
  }

  .footer {
    padding: 56px 0 20px !important;
    font-size: 1rem !important;
  }
  .footer__grid {
    width: min(100% - 32px, 1480px) !important;
    gap: 34px !important;
    align-items: start !important;
    text-align: left !important;
    font-size: 1rem !important;
  }
  .footer .brand,
  .footer .brand__txt,
  .footer h4,
  .footer__links,
  .social {
    text-align: left !important;
    justify-content: flex-start !important;
  }
  .footer .brand img {
    width: 240px !important;
    height: 62px !important;
  }
  .footer h4,
  .footer__col--services h4,
  .footer__col--quick h4,
  .footer__col--contact h4 {
    font-size: 1.1rem !important;
    line-height: 1.35 !important;
    margin-bottom: 12px !important;
  }
  .footer h4::after {
    width: 35px !important;
    height: 2px !important;
    margin-top: 6px !important;
  }
  .footer__links li {
    margin: 8px 0 !important;
  }
  .footer__links,
  .footer__links a,
  .footer__col--services .footer__links,
  .footer__col--quick .footer__links,
  .footer__col--contact .footer__links,
  .footer__col--services .footer__links li,
  .footer__col--quick .footer__links li,
  .footer__col--contact .footer__links li,
  .footer__col--services .footer__links a,
  .footer__col--quick .footer__links a,
  .footer__col--contact .footer__links a,
  .footer__col--contact .footer__link,
  .footer__col--contact .ic {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }
  .footer-about-preview {
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
    max-height: 16em !important;
    -webkit-line-clamp: 9 !important;
  }
  .footer .social a {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
  }
  .footer__bar {
    font-size: 0.9rem !important;
    margin-top: 40px !important;
    padding-top: 15px !important;
  }
}

@media (min-width: 1181px) {
  .nav__burger {
    display: none !important;
  }
  .nav__menu {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-top: 0 !important;
  }
  .nav__menu > a,
  .nav__item > a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 38px !important;
    padding: 8px 10px !important;
    font-size: 0.82rem !important;
    border: 1px solid rgba(122, 31, 31, .10) !important;
    border-radius: 999px !important;
    border-bottom: 1px solid rgba(122, 31, 31, .10) !important;
    white-space: nowrap !important;
  }
  .nav__item {
    width: auto !important;
  }
  .dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 240px !important;
    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .nav__item:hover > .dropdown,
  .nav__item:focus-within > .dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr !important;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .nav__burger {
    display: flex !important;
  }
  .nav__menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 16px !important;
    background: #fff !important;
    box-shadow: var(--shadow) !important;
    border-top: 2px solid var(--saffron) !important;
  }
  .nav__menu.is-open {
    display: flex !important;
  }
  .nav__menu > a,
  .nav__item > a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 12px 10px !important;
    font-size: 0.95rem !important;
    border: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    white-space: normal !important;
  }
  .nav__menu i {
    display: inline-block !important;
  }
  .nav__item {
    width: 100% !important;
  }
  .dropdown {
    position: static !important;
    min-width: 0 !important;
    max-height: none !important;
    display: none !important;
    padding: 4px 0 4px 14px !important;
    border-top: 0 !important;
    border-radius: 0 !important;
    background: #fff7e8 !important;
    box-shadow: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none !important;
    pointer-events: auto !important;
  }
  .nav__item.is-dropdown-open > .dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .dropdown a {
    font-size: 0.9rem !important;
    padding: 9px 12px !important;
    white-space: normal !important;
  }
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* ========================= Footer Final Responsive System ========================= */
.footer {
  background: linear-gradient(90deg, #eef8f3 0%, #d9f1e7 52%, #eef8f3 100%) !important;
  color: #1b4434 !important;
  padding: clamp(34px, 5vw, 60px) 0 18px !important;
  border-top: 1px solid rgba(27, 68, 52, 0.12) !important;
  font-size: 16px !important;
}

.footer__grid {
  display: grid !important;
  width: min(100% - 32px, 1480px) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  grid-template-columns: minmax(260px, 1.35fr) minmax(170px, .9fr) minmax(170px, .9fr) minmax(230px, 1.15fr) !important;
  gap: clamp(22px, 3vw, 42px) !important;
  align-items: start !important;
  text-align: left !important;
  font-size: 1rem !important;
}

.footer__grid > div {
  min-width: 0 !important;
}

.footer .brand {
  display: inline-flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  margin-bottom: 12px !important;
}

.footer .brand img {
  width: clamp(180px, 18vw, 260px) !important;
  height: auto !important;
  max-height: 72px !important;
  object-fit: contain !important;
}

.footer .brand__txt,
.footer h4,
.footer__links,
.footer .social {
  text-align: left !important;
  justify-content: flex-start !important;
}

.footer-about-preview {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 7 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 48ch !important;
  max-height: none !important;
  margin: 8px 0 0 !important;
  color: rgba(27, 68, 52, 0.82) !important;
  font-size: clamp(0.86rem, 0.9vw, 0.95rem) !important;
  line-height: 1.65 !important;
}

.footer h4,
.footer__col--services h4,
.footer__col--quick h4,
.footer__col--contact h4 {
  color: #173c2d !important;
  font-family: 'Cinzel', 'Poppins', serif !important;
  font-size: clamp(1rem, 1.05vw, 1.14rem) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin: 0 0 14px !important;
}

.footer h4::after {
  content: "" !important;
  display: block !important;
  width: 36px !important;
  height: 2px !important;
  margin: 7px 0 0 !important;
  background: #3c7861 !important;
  border-radius: 999px !important;
}

.footer__links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer__links li {
  margin: 8px 0 !important;
  padding: 0 !important;
  line-height: 1.45 !important;
}

.footer__links,
.footer__links a,
.footer__link,
.footer__col--services .footer__links,
.footer__col--quick .footer__links,
.footer__col--contact .footer__links,
.footer__col--services .footer__links li,
.footer__col--quick .footer__links li,
.footer__col--contact .footer__links li,
.footer__col--services .footer__links a,
.footer__col--quick .footer__links a,
.footer__col--contact .footer__links a,
.footer__col--contact .footer__link,
.footer__col--contact .ic {
  font-size: clamp(0.86rem, 0.88vw, 0.96rem) !important;
  line-height: 1.5 !important;
}

.footer__links a,
.footer__link {
  display: inline-flex !important;
  align-items: flex-start !important;
  gap: 6px !important;
  max-width: 100% !important;
  color: #356f5a !important;
  overflow-wrap: anywhere !important;
  text-decoration: none !important;
  transition: color .2s ease, transform .2s ease !important;
}

.footer__links a:hover,
.footer__link:hover {
  color: #0f9f70 !important;
  transform: translateX(2px) !important;
  text-shadow: none !important;
}

.footer__col--contact h4[style] {
  margin-top: 18px !important;
}

.footer .social {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.footer .social a {
  width: 38px !important;
  height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 38px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.55) !important;
  border: 1px solid rgba(27, 68, 52, 0.14) !important;
  color: #1b4434 !important;
  font-size: 0.98rem !important;
}

.footer .social a:hover {
  color: #0f9f70 !important;
  background: #fff !important;
  border-color: rgba(15, 159, 112, 0.35) !important;
  box-shadow: 0 8px 20px rgba(15, 159, 112, 0.16) !important;
  transform: translateY(-2px) !important;
}

.footer__bar {
  width: min(100% - 32px, 1480px) !important;
  margin: clamp(24px, 3vw, 40px) auto 0 !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(60, 120, 97, 0.28) !important;
  color: rgba(27, 68, 52, 0.75) !important;
  text-align: center !important;
  font-size: clamp(0.78rem, 0.8vw, 0.9rem) !important;
  line-height: 1.5 !important;
}

.footer__bar .container {
  width: 100% !important;
}

.footer__bar p {
  margin: 0 !important;
}

@media (max-width: 1180px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: min(100% - 28px, 1480px) !important;
    gap: 28px !important;
  }

  .footer__col--brand {
    grid-column: 1 / -1 !important;
  }

  .footer-about-preview {
    max-width: 72ch !important;
    -webkit-line-clamp: 5 !important;
  }
}

@media (max-width: 720px) {
  .footer {
    padding: 34px 0 16px !important;
  }

  .footer__grid {
    grid-template-columns: 1fr !important;
    width: min(100% - 24px, 1480px) !important;
    gap: 24px !important;
    text-align: center !important;
  }

  .footer__col--brand {
    grid-column: auto !important;
  }

  .footer .brand,
  .footer .social {
    justify-content: center !important;
  }

  .footer .brand img {
    width: min(64vw, 220px) !important;
    max-height: 64px !important;
  }

  .footer .brand__txt,
  .footer h4,
  .footer__links {
    text-align: center !important;
  }

  .footer h4::after {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-about-preview {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    -webkit-line-clamp: 6 !important;
    font-size: 0.9rem !important;
  }

  .footer__links a,
  .footer__link {
    justify-content: center !important;
    text-align: center !important;
  }

  .footer__bar {
    width: min(100% - 24px, 1480px) !important;
    font-size: 0.78rem !important;
  }
}

@media (pointer: coarse) and (min-width: 700px) and (max-width: 1200px) {
  .footer {
    font-size: 16px !important;
  }

  .footer__grid {
    grid-template-columns: minmax(240px, 1.2fr) minmax(145px, .8fr) minmax(145px, .8fr) minmax(210px, 1fr) !important;
    width: min(100% - 28px, 1480px) !important;
    gap: clamp(14px, 2vw, 24px) !important;
    text-align: left !important;
  }

  .footer__col--brand {
    grid-column: auto !important;
  }

  .footer .brand,
  .footer .brand__txt,
  .footer h4,
  .footer__links,
  .footer .social {
    text-align: left !important;
    justify-content: flex-start !important;
  }

  .footer .brand img {
    width: clamp(165px, 17vw, 220px) !important;
    max-height: 62px !important;
  }

  .footer-about-preview {
    max-width: 42ch !important;
    -webkit-line-clamp: 6 !important;
    font-size: clamp(0.76rem, 1.25vw, 0.9rem) !important;
    line-height: 1.55 !important;
  }

  .footer h4,
  .footer__col--services h4,
  .footer__col--quick h4,
  .footer__col--contact h4 {
    font-size: clamp(0.82rem, 1.35vw, 1rem) !important;
    margin-bottom: 9px !important;
  }

  .footer__links,
  .footer__links a,
  .footer__link,
  .footer__col--services .footer__links,
  .footer__col--quick .footer__links,
  .footer__col--contact .footer__links,
  .footer__col--services .footer__links li,
  .footer__col--quick .footer__links li,
  .footer__col--contact .footer__links li,
  .footer__col--services .footer__links a,
  .footer__col--quick .footer__links a,
  .footer__col--contact .footer__links a,
  .footer__col--contact .footer__link,
  .footer__col--contact .ic {
    font-size: clamp(0.72rem, 1.15vw, 0.88rem) !important;
    line-height: 1.38 !important;
  }

  .footer__links li {
    margin: 5px 0 !important;
  }

  .footer .social a {
    width: 32px !important;
    height: 32px !important;
    flex-basis: 32px !important;
    font-size: 0.84rem !important;
  }

  .footer__bar {
    font-size: clamp(0.66rem, 1vw, 0.78rem) !important;
    margin-top: 24px !important;
  }
}

/* ========================= Header Final Responsive System ========================= */
.topbar {
  background: var(--maroon) !important;
  color: #ffe9c2 !important;
  font-size: 0.85rem !important;
  padding: 4px 0 !important;
  overflow: visible !important;
}

.topbar__row {
  width: min(100% - 32px, 1480px) !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  flex-wrap: nowrap !important;
  overflow: visible !important;
}

.topbar__left,
.topbar__right {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: nowrap !important;
  min-width: 0 !important;
}

.topbar__left {
  flex: 1 1 auto !important;
}

.topbar__right {
  flex: 0 0 auto !important;
}

.topbar__tagline,
.topbar__link,
.google-translate-wrap {
  font-size: inherit !important;
  line-height: 1.45 !important;
  white-space: nowrap !important;
}

.topbar__tagline,
.topbar__left .topbar__link {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.google-translate-wrap {
  max-width: none !important;
  margin-right: 8px !important;
  gap: 6px !important;
  flex: 0 0 auto !important;
}

.goog-te-combo {
  width: auto !important;
  max-width: 160px !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 3px 8px !important;
  font-size: 13px !important;
  line-height: normal !important;
}

.nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 120 !important;
  overflow: visible !important;
  background: #fff !important;
}

.nav__row {
  width: min(100% - 32px, 1480px) !important;
  margin: 0 auto !important;
  padding: 8px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  position: relative !important;
  overflow: visible !important;
}

.brand {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  min-width: 0 !important;
}

.brand img {
  width: clamp(210px, 18vw, 285px) !important;
  height: 72px !important;
  object-fit: contain !important;
}

.nav__burger {
  width: 42px !important;
  height: 42px !important;
  flex: 0 0 42px !important;
  align-items: center !important;
  justify-content: center !important;
}

.nav__menu {
  min-width: 0 !important;
}

.nav__item {
  position: relative !important;
  min-width: 0 !important;
}

.dropdown {
  z-index: 160 !important;
}

@media (min-width: 1181px) {
  .nav__row {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    min-height: 74px !important;
  }

  .brand {
    flex: 0 0 auto !important;
    margin-right: 10px !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .brand img {
    width: clamp(175px, 14vw, 240px) !important;
    height: 62px !important;
  }

  .nav__burger {
    display: none !important;
  }

  .nav__menu {
    display: flex !important;
    position: static !important;
    flex: 1 1 0 !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    gap: clamp(3px, 0.38vw, 7px) !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .nav__menu > a,
  .nav__item > a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    width: auto !important;
    min-height: 34px !important;
    padding: 7px clamp(5px, 0.48vw, 9px) !important;
    color: var(--ink) !important;
    font-size: clamp(0.68rem, 0.62vw, 0.82rem) !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    border: 1px solid rgba(122, 31, 31, .10) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .72) !important;
    box-shadow: 0 6px 16px rgba(122, 31, 31, .07) !important;
  }

  .nav__menu > a:hover,
  .nav__item > a:hover,
  .nav__menu > a.is-active,
  .nav__dropdown-toggle.is-active {
    color: var(--maroon) !important;
    border-color: rgba(244, 162, 97, .45) !important;
    background: rgba(255, 247, 232, .92) !important;
  }

  .nav__menu i {
    display: none !important;
  }

  .nav__item {
    width: auto !important;
  }

  .dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    display: block !important;
    min-width: 240px !important;
    max-height: 70vh !important;
    overflow-y: auto !important;
    margin: 0 !important;
    padding: 8px 0 !important;
    border-top: 3px solid var(--saffron) !important;
    border-radius: 0 0 10px 10px !important;
    background: #fff !important;
    box-shadow: 0 8px 24px rgba(122, 31, 31, .15) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(8px) !important;
    pointer-events: none !important;
  }

  .nav__item:hover > .dropdown,
  .nav__item:focus-within > .dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  .dropdown a {
    display: block !important;
    padding: 10px 18px !important;
    font-size: 0.92rem !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 1180px) {
  .nav__burger {
    display: flex !important;
  }

  .brand img {
    width: min(58vw, 265px) !important;
    height: 58px !important;
  }

  .nav__menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 14px 16px !important;
    border-top: 2px solid var(--saffron) !important;
    background: #fff !important;
    box-shadow: 0 14px 30px rgba(122, 31, 31, .16) !important;
    overflow: visible !important;
  }

  .nav__menu.is-open {
    display: flex !important;
  }

  .nav__menu > a,
  .nav__item > a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 12px 8px !important;
    color: var(--ink) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    white-space: normal !important;
    border: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav__menu i {
    display: inline-block !important;
    width: 1.1em !important;
    margin-right: 6px !important;
  }

  .nav__item {
    width: 100% !important;
  }

  .dropdown {
    position: static !important;
    display: none !important;
    min-width: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 4px 0 4px 14px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff7e8 !important;
    box-shadow: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .nav__item.is-dropdown-open > .dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .dropdown a {
    display: block !important;
    padding: 9px 12px !important;
    font-size: 0.9rem !important;
    white-space: normal !important;
  }
}

@media (max-width: 720px) {
  .topbar {
    font-size: 0.68rem !important;
    padding: 3px 0 !important;
    overflow: hidden !important;
  }

  .topbar__row {
    width: min(100% - 16px, 1480px) !important;
    gap: 6px !important;
  }

  .topbar__left,
  .topbar__right {
    gap: 6px !important;
  }

  .topbar__left .topbar__link[href^="mailto:"],
  .topbar__left .topbar__link[href^="tel:"],
  .topbar__right .topbar__link:not(.topbar__link--admin):not(.topbar__link--cta) {
    display: none !important;
  }

  .google-translate-wrap {
    max-width: 86px !important;
    gap: 1px !important;
    margin-right: 0 !important;
  }

  .goog-te-combo {
    width: 68px !important;
    max-width: 68px !important;
    height: 18px !important;
    min-height: 18px !important;
    padding: 0 1px !important;
    font-size: 0.52rem !important;
    line-height: 18px !important;
  }

  .nav__row {
    width: min(100% - 22px, 1480px) !important;
    padding: 7px 0 !important;
    gap: 8px !important;
  }

  .brand img {
    width: min(50vw, 205px) !important;
    height: 54px !important;
  }

  .nav__burger {
    width: 40px !important;
    height: 40px !important;
    flex-basis: 40px !important;
  }
}

@media (max-width: 320px) {
  .topbar {
    font-size: 0.6rem !important;
    padding: 2px 0 !important;
  }

  .topbar__row {
    width: min(100% - 10px, 1480px) !important;
    gap: 3px !important;
  }

  .topbar__left,
  .topbar__right {
    gap: 3px !important;
  }

  .topbar__tagline {
    max-width: 128px !important;
    min-width: 0 !important;
  }

  .topbar__tagline .ic {
    display: none !important;
  }

  .topbar__link--cta {
    padding: 1px 5px !important;
    font-size: 0.58rem !important;
  }

  .topbar__link--admin {
    font-size: 0.62rem !important;
  }

  .google-translate-wrap {
    max-width: 62px !important;
  }

  .google-translate-wrap > .ic {
    display: none !important;
  }

  #google_translate_element,
  #google_translate_element .goog-te-gadget {
    max-width: 62px !important;
  }

  .goog-te-combo,
  #google_translate_element .goog-te-gadget .goog-te-combo {
    width: 62px !important;
    max-width: 62px !important;
    height: 17px !important;
    min-height: 17px !important;
    font-size: 0.48rem !important;
    line-height: 17px !important;
  }

  .nav__row {
    width: min(100% - 16px, 1480px) !important;
  }

  .brand img {
    width: min(48vw, 150px) !important;
    height: 46px !important;
  }

  .nav__burger {
    width: 36px !important;
    height: 36px !important;
    flex-basis: 36px !important;
  }
}

@media (pointer: coarse) and (min-width: 700px) and (max-width: 1200px) {
  .topbar {
    font-size: clamp(0.62rem, 1.05vw, 0.78rem) !important;
    padding: 3px 0 !important;
  }

  .topbar__row {
    width: min(100% - 18px, 1480px) !important;
    gap: 6px !important;
  }

  .topbar__left,
  .topbar__right {
    gap: 6px !important;
  }

  .topbar__tagline,
  .topbar__link,
  .google-translate-wrap {
    font-size: inherit !important;
  }

  .nav__row {
    width: min(100% - 22px, 1480px) !important;
  }

  .brand img {
    width: clamp(170px, 20vw, 230px) !important;
    height: 56px !important;
  }
}

.nav__item > a .caret {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-left: 6px !important;
  font-size: 1.05em !important;
  line-height: 1 !important;
}

@media (max-width: 1180px) {
  .nav__item > a .caret {
    margin-left: auto !important;
    font-size: 1.22em !important;
  }
}

@media (min-width: 1181px) {
  .nav__menu > a,
  .nav__item > a {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
    border-color: transparent !important;
  }

  .nav__menu > a::before,
  .nav__item > a::before {
    content: "" !important;
    position: absolute !important;
    inset: -1px !important;
    border-radius: inherit !important;
    background:
      radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.55) 0 7px, transparent 8px),
      radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.42) 0 6px, transparent 7px),
      radial-gradient(circle at 82% 55%, rgba(255, 255, 255, 0.38) 0 7px, transparent 8px),
      rgba(255, 255, 255, 0.16) !important;
    background-size: 180% 180%, 160% 160%, 190% 190%, 100% 100% !important;
    animation: navBubbleGlow 3.2s ease-in-out infinite !important;
    z-index: -2 !important;
  }

  .nav__menu > a::after,
  .nav__item > a::after {
    content: "" !important;
    position: absolute !important;
    inset: 1px !important;
    border-radius: inherit !important;
    background: rgba(255, 255, 255, 0.92) !important;
    z-index: -1 !important;
  }

  .nav__menu > a:hover::before,
  .nav__item > a:hover::before,
  .nav__menu > a.is-active::before,
  .nav__dropdown-toggle.is-active::before {
    filter: drop-shadow(0 0 9px rgba(240, 138, 0, 0.75)) !important;
  }
}

@keyframes navBubbleGlow {
  0%, 100% {
    background-position: 0% 50%, 50% 0%, 100% 50%, 0 0;
    filter: blur(0) saturate(1);
  }
  50% {
    background-position: 100% 50%, 0% 100%, 0% 50%, 0 0;
    filter: blur(0.2px) saturate(1.25);
  }
}

@keyframes navLiteGlowRun {
  0%, 100% {
    background-position: 140% 0, 0 0;
  }
  50% {
    background-position: -40% 0, 0 0;
  }
}

/* ========================= Final 2560px to 320px Responsive Guardrails ========================= */
@media (min-width: 1800px) {
  .container,
  .nav__row,
  .topbar__row,
  .footer__grid,
  .footer__bar {
    max-width: 1680px !important;
  }

  .hero-content {
    width: min(86%, 1040px) !important;
  }

  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1181px) and (max-width: 1450px) {
  .brand img {
    width: clamp(190px, 16vw, 235px) !important;
  }

  .nav__menu {
    gap: 5px !important;
  }

  .nav__menu > a,
  .nav__item > a {
    padding: 7px 7px !important;
    font-size: 0.76rem !important;
  }
}

@media (max-width: 1180px) {
  .container {
    width: min(100% - 28px, 1480px) !important;
  }

  .section {
    padding: 48px 0 !important;
  }

  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .hero {
    min-height: 560px !important;
    height: 72vh !important;
  }

  .hero-content {
    width: min(92%, 780px) !important;
  }
}

@media (max-width: 900px) {
  .grid--3,
  .grid--4,
  .stat-cards,
  .home-faq__wrap,
  .section--alt .two-col {
    grid-template-columns: 1fr !important;
  }

  .section__title,
  .home-faq__intro h2 {
    max-width: min(100%, 620px) !important;
  }

  .service-card,
  .home-blog-card,
  .card {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 22px, 1480px) !important;
  }

  .section {
    padding: 40px 0 !important;
  }

  .hero {
    min-height: 540px !important;
    height: 76vh !important;
  }

  .hero-content {
    top: 43% !important;
    width: min(92%, 560px) !important;
  }

  .hero-content h1 {
    font-size: clamp(1.55rem, 8vw, 2.35rem) !important;
  }

  .hero-content p {
    font-size: 0.94rem !important;
  }

  .hero__cta {
    gap: 8px !important;
  }

  .hero__cta .btn-lg {
    padding: 8px 10px !important;
    font-size: 0.78rem !important;
  }

  .service-card__media,
  .home-blog-card__media {
    height: 210px !important;
  }

  .whatsapp-float {
    width: 48px !important;
    height: 48px !important;
    right: 14px !important;
    bottom: 28px !important;
    font-size: 26px !important;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 18px, 1480px) !important;
  }

  h1 {
    font-size: clamp(1.55rem, 9vw, 2.1rem) !important;
  }

  h2,
  .section__title {
    font-size: clamp(1.35rem, 7vw, 1.8rem) !important;
  }

  .btn,
  .btn-call,
  .btn-wa {
    min-height: 40px;
    font-size: 0.84rem !important;
  }

  .hero__overlay {
    bottom: 14px !important;
  }

  .hero__trust,
  .hero__online {
    font-size: 0.72rem !important;
  }

  .service-card__media,
  .home-blog-card__media {
    height: 180px !important;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 14px, 1480px) !important;
  }

  .section {
    padding: 34px 0 !important;
  }

  .brand img {
    width: min(47vw, 138px) !important;
  }

  .nav__burger {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
  }

  .nav__menu {
    padding: 12px !important;
  }

  .nav__menu > a,
  .nav__item > a {
    font-size: 0.88rem !important;
    padding: 10px 6px !important;
  }

  .hero {
    min-height: 500px !important;
  }

  .hero__cta .btn-lg {
    padding: 7px 8px !important;
    font-size: 0.72rem !important;
  }

  .service-card__body,
  .home-blog-card__body,
  .card__body {
    padding: 14px !important;
  }
}

/* Final unique heading treatment: no icon/line-only look */
.section__title,
.home-faq__intro h2,
.blog-comments h2,
.blog-reply h2 {
  position: relative !important;
  isolation: isolate !important;
  width: max-content !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0.08em 0.42em 0.14em !important;
  color: #6f1d1d !important;
  line-height: 1.12 !important;
  text-align: center !important;
}

.section__title::before,
.home-faq__intro h2::before,
.blog-comments h2::before,
.blog-reply h2::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0.02em !important;
  height: 0.42em !important;
  border-radius: 999px 24px 999px 24px !important;
  background: linear-gradient(90deg, rgba(240, 138, 0, 0.18), rgba(201, 162, 39, 0.26), rgba(122, 31, 31, 0.12)) !important;
  z-index: -1 !important;
}

.section__title--left,
.about-detail__content .section__title,
.blog-comments h2,
.blog-reply h2,
.home-faq__intro h2 {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

@media (max-width: 720px) {
  .section__title,
  .section__title--left,
  .about-detail__content .section__title,
  .home-faq__intro h2,
  .blog-comments h2,
  .blog-reply h2 {
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
}

/* Final desktop header guard: keep navigation beside the logo */
@media (min-width: 1181px) {
  .nav__row {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    min-height: 70px !important;
  }

  .brand {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 220px !important;
    margin-right: 8px !important;
    position: relative !important;
    z-index: 3 !important;
  }

  .brand img {
    width: clamp(168px, 13vw, 220px) !important;
    height: 58px !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }

  .nav__menu {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    gap: 4px !important;
    overflow: visible !important;
  }

  .nav__menu > a,
  .nav__item > a {
    min-height: 32px !important;
    padding: 6px 6px !important;
    font-size: clamp(0.64rem, 0.58vw, 0.76rem) !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  .nav__item {
    flex: 0 0 auto !important;
  }
}

@media (min-width: 1181px) and (max-width: 1280px) {
  .brand {
    max-width: 164px !important;
    margin-right: 4px !important;
  }

  .brand img {
    width: 160px !important;
    height: 54px !important;
  }

  .nav__menu {
    gap: 2px !important;
  }

  .nav__menu > a,
  .nav__item > a {
    padding: 5px 5px !important;
    font-size: 0.62rem !important;
  }
}

/* ========================= Header polish: larger brand + responsive top header ========================= */
.topbar {
  min-height: 34px !important;
  padding: 5px 0 !important;
}

.topbar__row {
  width: min(100% - 32px, 1480px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px 18px !important;
}

.topbar__left,
.topbar__right {
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px 16px !important;
}

.topbar__left {
  flex: 1 1 auto !important;
}

.topbar__right {
  flex: 0 0 auto !important;
  justify-content: flex-end !important;
}

.topbar__tagline,
.topbar__link,
.google-translate-wrap {
  max-width: 100% !important;
  line-height: 1.35 !important;
}

.nav__row {
  width: min(100% - 32px, 1480px) !important;
  min-height: 82px !important;
  padding: 8px 0 !important;
  gap: clamp(10px, 1.1vw, 18px) !important;
}

.brand {
  min-width: 0 !important;
  max-width: none !important;
}

.brand img {
  width: clamp(245px, 20vw, 330px) !important;
  height: auto !important;
  max-height: 78px !important;
  aspect-ratio: 1021 / 244 !important;
  object-fit: contain !important;
}

@media (min-width: 1181px) {
  .nav__row {
    min-height: 84px !important;
    flex-wrap: nowrap !important;
  }

  .brand {
    flex: 0 1 clamp(245px, 20vw, 330px) !important;
    max-width: clamp(245px, 20vw, 330px) !important;
    margin-right: clamp(4px, 0.8vw, 12px) !important;
  }

  .brand img {
    width: 100% !important;
    max-height: 78px !important;
  }

  .nav__menu {
    flex: 1 1 auto !important;
    justify-content: flex-end !important;
    gap: clamp(3px, 0.35vw, 7px) !important;
  }

  .nav__menu > a,
  .nav__item > a {
    min-height: 34px !important;
    padding: 6px clamp(5px, 0.45vw, 9px) !important;
    font-size: clamp(0.62rem, 0.58vw, 0.78rem) !important;
  }
}

@media (min-width: 1281px) and (max-width: 1450px) {
  .brand {
    flex-basis: clamp(230px, 18vw, 285px) !important;
    max-width: clamp(230px, 18vw, 285px) !important;
  }

  .nav__menu > a,
  .nav__item > a {
    padding-inline: 6px !important;
    font-size: clamp(0.62rem, 0.56vw, 0.72rem) !important;
  }
}

@media (min-width: 1181px) and (max-width: 1280px) {
  .nav__row {
    gap: 6px !important;
  }

  .brand {
    flex-basis: clamp(198px, 17vw, 220px) !important;
    max-width: clamp(198px, 17vw, 220px) !important;
    margin-right: 4px !important;
  }

  .nav__menu {
    gap: 2px !important;
  }

  .nav__menu > a,
  .nav__item > a {
    min-height: 32px !important;
    padding: 5px 4px !important;
    font-size: clamp(0.56rem, 0.55vw, 0.65rem) !important;
  }
}

@media (max-width: 1180px) {
  .nav__row {
    min-height: 76px !important;
  }

  .brand {
    flex: 1 1 auto !important;
    max-width: calc(100% - 52px) !important;
  }

  .brand img {
    width: min(62vw, 300px) !important;
    max-height: 70px !important;
  }

  .nav__burger {
    margin-left: auto !important;
  }
}

@media (max-width: 720px) {
  .topbar {
    min-height: 0 !important;
    padding: 4px 0 !important;
    font-size: 0.7rem !important;
  }

  .topbar__row {
    width: min(100% - 18px, 1480px) !important;
    gap: 5px !important;
  }

  .topbar__left,
  .topbar__right {
    gap: 5px 8px !important;
  }

  .topbar__tagline {
    max-width: min(100%, 230px) !important;
  }

  .nav__row {
    width: min(100% - 20px, 1480px) !important;
    min-height: 68px !important;
    padding: 7px 0 !important;
  }

  .brand img {
    width: min(60vw, 245px) !important;
    max-height: 60px !important;
  }
}

@media (max-width: 420px) {
  .topbar__row {
    align-items: flex-start !important;
  }

  .topbar__left {
    flex: 1 1 110px !important;
  }

  .topbar__right {
    flex: 0 0 auto !important;
  }

  .topbar__tagline {
    max-width: 145px !important;
  }

  .brand img {
    width: min(58vw, 210px) !important;
    max-height: 54px !important;
  }
}

@media (max-width: 340px) {
  .topbar__tagline {
    max-width: 126px !important;
  }

  .brand img {
    width: min(56vw, 178px) !important;
    max-height: 48px !important;
  }

  .nav__burger {
    width: 36px !important;
    height: 36px !important;
    flex-basis: 36px !important;
  }
}

/* ========================= About section plain paragraph style ========================= */
.section--alt .two-col .home-about-card,
.home-about-card {
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.home-about-card .heading {
  margin-bottom: 8px !important;
  font-size: clamp(1.45rem, 2.4vw, 2rem) !important;
  line-height: 1.2 !important;
}

.home-about-card .lead {
  margin-bottom: 14px !important;
  font-size: 1rem !important;
}

.home-kaal-sarp-note,
.about-preview {
  display: block !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: initial !important;
  overflow: visible !important;
  max-height: none !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #493d32 !important;
  font-size: 0.98rem !important;
  font-weight: 400 !important;
  line-height: 1.78 !important;
  text-align: left !important;
}

.home-kaal-sarp-note strong {
  color: var(--maroon) !important;
  font-weight: 700 !important;
}

.about-see-more {
  display: none !important;
}

.home-about-card .stat-row {
  margin-top: 18px !important;
}

@media (max-width: 980px) {
  .section--alt .two-col .home-about-card,
  .home-about-card {
    padding: 0 !important;
  }
}

@media (max-width: 768px) {
  .home-about-card .heading,
  .home-about-card .lead {
    text-align: center !important;
  }

  .home-kaal-sarp-note,
  .about-preview {
    text-align: left !important;
  }
}

/* ========================= Final nav text sizing + phone menu fix ========================= */
@media (min-width: 1451px) {
  .nav__menu {
    gap: 6px !important;
  }

  .nav__menu > a,
  .nav__item > a {
    min-height: 38px !important;
    padding: 7px 9px !important;
    font-size: 0.86rem !important;
    line-height: 1.18 !important;
  }
}

@media (min-width: 1281px) and (max-width: 1450px) {
  .brand {
    flex-basis: clamp(220px, 16vw, 260px) !important;
    max-width: clamp(220px, 16vw, 260px) !important;
  }

  .nav__menu {
    gap: 4px !important;
  }

  .nav__menu > a,
  .nav__item > a {
    min-height: 36px !important;
    padding: 6px 7px !important;
    font-size: 0.78rem !important;
    line-height: 1.18 !important;
  }
}

@media (min-width: 1181px) and (max-width: 1280px) {
  .brand {
    flex-basis: clamp(188px, 15vw, 210px) !important;
    max-width: clamp(188px, 15vw, 210px) !important;
  }

  .nav__menu > a,
  .nav__item > a {
    min-height: 34px !important;
    padding: 5px 5px !important;
    font-size: 0.68rem !important;
    line-height: 1.16 !important;
  }
}

@media (max-width: 1180px) {
  .nav__menu {
    max-height: calc(100vh - 84px) !important;
    overflow-y: auto !important;
  }

  .nav__menu > a,
  .nav__item > a {
    min-height: 44px !important;
    padding: 12px 10px !important;
    font-size: 1rem !important;
    line-height: 1.28 !important;
  }

  .nav__menu > a {
    justify-content: flex-start !important;
  }

  .nav__item > a {
    justify-content: space-between !important;
  }
}

@media (max-width: 480px) {
  .nav__row {
    width: min(100% - 16px, 1480px) !important;
    min-height: 64px !important;
    gap: 8px !important;
  }

  .brand {
    max-width: calc(100% - 46px) !important;
  }

  .brand img {
    width: min(57vw, 205px) !important;
    max-height: 52px !important;
  }

  .nav__burger {
    width: 38px !important;
    height: 38px !important;
    flex-basis: 38px !important;
  }

  .nav__menu {
    padding: 10px 12px !important;
  }

  .nav__menu > a,
  .nav__item > a {
    min-height: 42px !important;
    padding: 11px 8px !important;
    font-size: 0.98rem !important;
  }
}

@media (max-width: 360px) {
  .brand img {
    width: min(55vw, 176px) !important;
    max-height: 46px !important;
  }

  .nav__menu > a,
  .nav__item > a {
    font-size: 0.94rem !important;
    padding: 10px 7px !important;
  }
}

/* Final adaptive header: drawer up to small laptops, bubble nav above */
@media (max-width: 1200px) {
  .nav,
  .nav__row,
  .nav__item {
    overflow: visible !important;
  }

  .nav__row {
    width: min(100% - 24px, 1480px) !important;
    min-height: 72px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    position: relative !important;
  }

  .brand {
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: calc(100% - 54px) !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 3 !important;
  }

  .brand img {
    width: min(60vw, 270px) !important;
    height: auto !important;
    max-height: 64px !important;
  }

  .nav__burger {
    display: flex !important;
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    margin-left: auto !important;
    position: relative !important;
    z-index: 4 !important;
  }

  .nav__menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 12px 14px !important;
    border-top: 2px solid var(--saffron) !important;
    border-radius: 0 0 12px 12px !important;
    background: #fff !important;
    box-shadow: 0 16px 34px rgba(122, 31, 31, .16) !important;
    overflow-y: auto !important;
    max-height: calc(100vh - 82px) !important;
    z-index: 150 !important;
  }

  .nav__menu.is-open {
    display: flex !important;
  }

  .nav__menu > a,
  .nav__item > a {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 44px !important;
    padding: 12px 10px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--ink) !important;
    font-size: 1rem !important;
    font-weight: 650 !important;
    line-height: 1.28 !important;
    white-space: normal !important;
    transform: none !important;
  }

  .nav__menu > a {
    justify-content: flex-start !important;
  }

  .nav__item > a {
    justify-content: space-between !important;
  }

  .nav__item {
    width: 100% !important;
    position: relative !important;
  }

  .nav__menu > a::before,
  .nav__menu > a::after,
  .nav__item > a::before,
  .nav__item > a::after {
    content: none !important;
  }

  .dropdown {
    position: static !important;
    display: none !important;
    min-width: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 4px 0 6px 18px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff7e8 !important;
    box-shadow: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .nav__item.is-dropdown-open > .dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .dropdown a {
    display: block !important;
    padding: 9px 12px !important;
    font-size: 0.94rem !important;
    white-space: normal !important;
  }
}

@media (min-width: 1201px) {
  .nav__burger {
    display: none !important;
  }

  .nav__menu {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
  }

  .nav__menu > a,
  .nav__item > a {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
    border-color: transparent !important;
  }

  .nav__menu > a::before,
  .nav__item > a::before {
    content: "" !important;
    position: absolute !important;
    inset: -1px !important;
    border-radius: inherit !important;
    background:
      radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.55) 0 7px, transparent 8px),
      radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.42) 0 6px, transparent 7px),
      radial-gradient(circle at 82% 55%, rgba(255, 255, 255, 0.38) 0 7px, transparent 8px),
      rgba(255, 255, 255, 0.16) !important;
    background-size: 180% 180%, 160% 160%, 190% 190%, 100% 100% !important;
    animation: navBubbleGlow 3.2s ease-in-out infinite !important;
    z-index: -2 !important;
  }

  .nav__menu > a::after,
  .nav__item > a::after {
    content: "" !important;
    position: absolute !important;
    inset: 1px !important;
    border-radius: inherit !important;
    background: rgba(255, 255, 255, 0.92) !important;
    z-index: -1 !important;
  }
}

/* Restore home About "See more" behavior */
.home-about-card .about-preview {
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  margin-bottom: 8px !important;
}

.home-about-card .about-preview.is-expanded {
  display: block !important;
  -webkit-line-clamp: unset !important;
  overflow: visible !important;
  max-height: none !important;
}

.home-about-card .about-see-more {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--maroon) !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  cursor: pointer !important;
  text-align: left !important;
}

.home-about-card .about-see-more:hover {
  color: var(--saffron-dk) !important;
}

/* Home About Pandit Ji image height */
.section--alt .two-col .home-about-photo {
  height: clamp(390px, 32vw, 520px) !important;
  object-fit: cover !important;
}

@media (max-width: 1180px) {
  .section--alt .two-col .home-about-photo {
    height: clamp(320px, 48vw, 430px) !important;
  }
}

/* Modern navbar hover polish */
@media (min-width: 1201px) {
  .nav__menu > a,
  .nav__item > a {
    border: 1px solid rgba(122, 31, 31, 0.08) !important;
    background: rgba(255, 255, 255, 0.72) !important;
    box-shadow: 0 7px 18px rgba(122, 31, 31, 0.07) !important;
    transition:
      color 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease,
      transform 0.2s ease,
      background 0.2s ease !important;
  }

  .nav__menu > a::after,
  .nav__item > a::after {
    background:
      linear-gradient(120deg, rgba(255,255,255,0.96), rgba(255,247,232,0.86)) !important;
    transition: background 0.2s ease, inset 0.2s ease !important;
  }

  .nav__menu > a:hover,
  .nav__item > a:hover,
  .nav__menu > a.is-active,
  .nav__dropdown-toggle.is-active {
    color: var(--maroon) !important;
    border-color: rgba(240, 138, 0, 0.42) !important;
    background: rgba(255, 247, 232, 0.94) !important;
    box-shadow:
      0 12px 28px rgba(122, 31, 31, 0.13),
      0 0 0 3px rgba(240, 138, 0, 0.10) !important;
    transform: translateY(-2px) !important;
  }

  .nav__menu > a:hover::before,
  .nav__item > a:hover::before,
  .nav__menu > a.is-active::before,
  .nav__dropdown-toggle.is-active::before {
    filter: drop-shadow(0 0 10px rgba(240, 138, 0, 0.78)) saturate(1.25) !important;
    animation-duration: 2.2s !important;
  }

  .nav__menu > a:hover::after,
  .nav__item > a:hover::after,
  .nav__menu > a.is-active::after,
  .nav__dropdown-toggle.is-active::after {
    inset: 2px !important;
    background:
      linear-gradient(120deg, rgba(255,255,255,0.98), rgba(255,239,205,0.94)) !important;
  }

  .nav__menu > a span,
  .nav__item > a span,
  .nav__menu > a i {
    position: relative !important;
    z-index: 1 !important;
  }

  .nav__item > a .caret {
    transition: transform 0.2s ease, color 0.2s ease !important;
  }

  .nav__item:hover > a .caret,
  .nav__item:focus-within > a .caret {
    color: var(--saffron-dk) !important;
    transform: rotate(180deg) !important;
  }

  .dropdown {
    border: 1px solid rgba(240, 138, 0, 0.18) !important;
    border-top: 3px solid var(--saffron) !important;
    box-shadow: 0 18px 42px rgba(122, 31, 31, 0.16) !important;
  }

  .dropdown a {
    transition: color 0.18s ease, background 0.18s ease, padding-left 0.18s ease !important;
  }

  .dropdown a:hover {
    padding-left: 22px !important;
    background: linear-gradient(90deg, #fff7e8, #fff) !important;
    color: var(--maroon) !important;
  }
}

@media (max-width: 1200px) {
  .nav__menu > a:hover,
  .nav__item > a:hover,
  .nav__menu > a:active,
  .nav__item > a:active {
    background: #fff7e8 !important;
    color: var(--maroon) !important;
  }
}

/* What Our Devotees Say */
.devotees-section {
  background: linear-gradient(180deg, #fff, #fffaf2);
}

.devotee-marquee {
  width: 100%;
  overflow: hidden;
  padding: 4px 0 10px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.devotee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: devoteeMarquee 34s linear infinite;
}

.devotee-marquee:hover .devotee-track {
  animation-play-state: paused;
}

.devotee-card {
  width: min(420px, 84vw);
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid rgba(199, 121, 25, 0.16);
  border-top: 3px solid var(--saffron);
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(122, 31, 31, 0.08);
}

.devotee-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.devotee-card__head h3 {
  margin: 0 0 2px;
  color: var(--maroon);
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.devotee-card__head a {
  color: var(--saffron-dk);
  font-size: 0.82rem;
  font-weight: 700;
}

.devotee-card p {
  margin: 0;
  color: #493d32;
  font-size: 0.95rem;
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@keyframes devoteeMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Section title row with inline View all button */
.section-head-row {
  width: min(100% - 32px, 1480px);
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.section-head-row .section__title {
  margin: 0 !important;
}

.section-head-row__btn {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 7px 15px;
  font-size: 0.84rem;
  line-height: 1.15;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .home-about-card .heading {
    font-size: clamp(1.05rem, 5vw, 1.32rem) !important;
    line-height: 1.18 !important;
    margin-bottom: 5px !important;
  }

  .home-about-card .lead {
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
  }

  .home-kaal-sarp-note,
  .home-about-card .about-preview {
    font-size: 0.76rem !important;
    line-height: 1.5 !important;
    margin-bottom: 8px !important;
  }

  .home-about-card .about-see-more {
    font-size: 0.76rem !important;
    margin-bottom: 8px !important;
  }

  .home-about-card .stat-row {
    gap: 6px !important;
    margin: 10px 0 8px !important;
  }

  .home-about-card .stat-row div {
    padding: 8px 5px !important;
    border-radius: 10px !important;
  }

  .home-about-card .stat-row strong {
    font-size: 0.88rem !important;
  }

  .home-about-card .stat-row span {
    font-size: 0.58rem !important;
  }

  .home-about-card .online-puja-note {
    gap: 8px !important;
    margin: 9px 0 !important;
    padding: 9px 10px !important;
  }

  .home-about-card .online-puja-note i {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.78rem !important;
  }

  .home-about-card .online-puja-note p {
    font-size: 0.7rem !important;
    line-height: 1.42 !important;
  }

  .home-services-section .section__sub,
  .home-blog-section .section__sub,
  .home-gallery .section__sub,
  .devotees-section .section__sub,
  .home-faq__intro p {
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
  }

  .devotee-marquee {
    margin-left: -11px;
    margin-right: -11px;
    padding-left: 11px;
  }

  .devotee-track {
    gap: 12px;
    animation-duration: 28s;
  }

  .devotee-card {
    width: min(300px, 78vw);
    padding: 14px;
  }

  .devotee-card__head {
    gap: 9px;
    margin-bottom: 8px;
  }

  .devotee-card__head h3 {
    font-size: 0.9rem;
  }

  .devotee-card__head a {
    font-size: 0.72rem;
  }

  .devotee-card p {
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .section-head-row {
    width: min(100% - 22px, 1480px);
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
  }

  .section-head-row .section__title,
  .home-services-section .section__title,
  .home-blog-section .section__title,
  .home-gallery .section__title,
  .devotees-section .section__title {
    width: auto !important;
    max-width: calc(100% - 96px) !important;
    margin: 0 !important;
    padding-inline: 0.22em !important;
    font-size: clamp(1.1rem, 5.4vw, 1.42rem) !important;
    line-height: 1.18 !important;
    text-align: left !important;
  }

  .section-head-row__btn {
    min-height: 32px !important;
    padding: 6px 11px !important;
    font-size: 0.72rem !important;
  }

  .home-services-section .section__sub,
  .home-blog-section .section__sub,
  .home-gallery .section__sub,
  .devotees-section .section__sub {
    margin-top: 4px !important;
    margin-bottom: 18px !important;
    font-size: 0.86rem !important;
    line-height: 1.45 !important;
  }
}

@media (max-width: 380px) {
  .section-head-row .section__title {
    max-width: calc(100% - 82px) !important;
    font-size: clamp(1rem, 5vw, 1.22rem) !important;
  }

  .section-head-row__btn {
    min-height: 30px !important;
    padding: 5px 9px !important;
    font-size: 0.68rem !important;
  }
}

/* Home service card fit and 2-line description */
.home-services-section .grid--4 {
  align-items: stretch !important;
  gap: 18px !important;
}

.home-services-section .service-card {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  border-radius: 10px !important;
}

.home-services-section .service-card__media {
  height: clamp(270px, 20vw, 360px) !important;
  aspect-ratio: auto !important;
  flex: 0 0 auto !important;
}

.home-services-section .service-card__body {
  min-height: 142px !important;
  padding: 11px 13px 12px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
}

.home-services-section .service-card h3 {
  min-height: 2.45em !important;
  margin: 0 0 4px !important;
  font-size: clamp(0.92rem, 0.95vw, 1.04rem) !important;
  line-height: 1.22 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.home-services-section .service-card p {
  min-height: 2.55em !important;
  margin: 0 0 8px !important;
  color: #5a4b3d !important;
  font-size: 0.78rem !important;
  line-height: 1.32 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.home-services-section .service-card .btn-row {
  margin-top: auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 7px !important;
}

.home-services-section .service-card .btn-call,
.home-services-section .service-card .btn-wa {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 30px !important;
  padding: 5px 8px !important;
  border-radius: 8px !important;
  font-size: 0.72rem !important;
  line-height: 1.15 !important;
  text-align: center !important;
}

/* Phone layout: services 2-up, latest blogs scrollable */
@media (max-width: 720px) {
  .home-services-section .grid--3,
  .home-services-section .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .home-services-section .service-card {
    max-width: none !important;
    margin: 0 !important;
  }

  .home-services-section .service-card__media {
    height: clamp(170px, 46vw, 220px) !important;
  }

  .home-services-section .service-card__body {
    min-height: 128px !important;
    padding: 8px 8px 9px !important;
  }

  .home-services-section .service-card h3 {
    min-height: 2.35em !important;
    margin-bottom: 3px !important;
    font-size: 0.76rem !important;
    line-height: 1.18 !important;
  }

  .home-services-section .service-card p {
    min-height: 2.45em !important;
    margin-bottom: 6px !important;
    font-size: 0.62rem !important;
    line-height: 1.25 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .home-services-section .btn-row {
    gap: 6px !important;
  }

  .home-services-section .btn-call,
  .home-services-section .btn-wa {
    min-width: 0 !important;
    min-height: 28px !important;
    padding: 5px 6px !important;
    font-size: 0.6rem !important;
    border-radius: 7px !important;
  }

  .home-blog-section .grid--3 {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(260px, 82vw) !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overscroll-behavior-inline: contain !important;
    scroll-snap-type: x mandatory !important;
    padding: 4px 12px 14px !important;
    margin-left: -12px !important;
    margin-right: -12px !important;
    scrollbar-width: thin !important;
    scroll-behavior: smooth !important;
  }

  .home-blog-section .home-blog-card {
    scroll-snap-align: start !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .home-blog-section .home-blog-card h3 {
    font-size: 0.94rem !important;
    line-height: 1.3 !important;
  }

  .home-blog-section .home-blog-card p,
  .home-blog-section .blog-meta {
    font-size: 0.74rem !important;
    line-height: 1.45 !important;
  }
}

@media (max-width: 380px) {
  .home-services-section .grid--3,
  .home-services-section .grid--4 {
    gap: 9px !important;
  }

  .home-services-section .service-card__media {
    height: clamp(132px, 40vw, 158px) !important;
  }

  .home-services-section .service-card__body {
    min-height: 120px !important;
    padding: 7px 6px 8px !important;
  }

  .home-services-section .service-card h3 {
    font-size: 0.68rem !important;
  }

  .home-services-section .service-card p {
    font-size: 0.56rem !important;
  }

  .home-services-section .btn-call,
  .home-services-section .btn-wa {
    min-height: 26px !important;
    padding: 4px 5px !important;
    font-size: 0.54rem !important;
  }

  .devotee-card p,
  .home-blog-section .home-blog-card p,
  .home-blog-section .blog-meta {
    font-size: 0.7rem !important;
  }
}

/* Desktop puja/service layout polish */
@media (min-width: 901px) {
  .home-services-section .grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }

  .service-listing-section .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
  }

  .home-services-section .service-card,
  .service-listing-section .service-card {
    margin: 0 !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    border-radius: 10px !important;
  }

  .home-services-section .service-card__media {
    height: 230px !important;
  }

  .service-listing-section .service-card__media {
    height: 250px !important;
  }

  .service-listing-section .service-card__body {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
    min-height: 210px !important;
  }

  .service-listing-section .service-card h3 {
    min-height: 2.45em !important;
    margin-bottom: 6px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .service-listing-section .service-card p {
    min-height: 2.6em !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .service-listing-section .service-card .muted.small {
    min-height: 2.6em !important;
  }

  .service-listing-section .service-card .btn-row {
    margin-top: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
  }

  .service-listing-section .service-card .btn-call,
  .service-listing-section .service-card .btn-wa {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: center !important;
  }

  .puja-detail-section .container {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 330px !important;
    gap: 26px !important;
    align-items: start !important;
  }

  .puja-content {
    min-width: 0 !important;
    background: #fff !important;
    border: 1px solid rgba(122, 31, 31, 0.10) !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(90, 26, 26, 0.08) !important;
  }

  .puja-sidebar {
    position: sticky !important;
    top: 112px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .puja-sidebar__card {
    background: #fff !important;
    border: 1px solid rgba(122, 31, 31, 0.12) !important;
    border-radius: 10px !important;
    padding: 18px !important;
    box-shadow: 0 10px 28px rgba(90, 26, 26, 0.08) !important;
  }
}

@media (max-width: 900px) {
  .puja-detail-section .container {
    display: block !important;
  }

  .puja-sidebar {
    margin-top: 18px !important;
  }
}

/* Site-wide subtle 3D depth effects */
@media (hover: hover) and (pointer: fine) {
  body {
    perspective: 1200px;
  }

  .service-card,
  .home-blog-card,
  .gallery-card,
  .card,
  .admin-card,
  .puja-sidebar__card,
  .about-detail__content,
  .about-detail__media,
  .footer__grid > div {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition:
      transform 0.28s ease,
      box-shadow 0.28s ease,
      border-color 0.28s ease,
      filter 0.28s ease;
    will-change: transform;
  }

  .service-card:hover,
  .home-blog-card:hover,
  .gallery-card:hover,
  .card:hover,
  .puja-sidebar__card:hover,
  .about-detail__content:hover,
  .about-detail__media:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg) translateZ(18px) !important;
    box-shadow:
      0 18px 34px rgba(90, 26, 26, 0.16),
      0 36px 70px rgba(50, 22, 12, 0.12) !important;
  }

  .service-card__media,
  .home-blog-card__media,
  .gallery-card__media,
  .about-photo,
  .home-about-photo,
  .puja-photo img {
    transform-style: preserve-3d;
    transition: transform 0.35s ease, filter 0.35s ease;
  }

  .service-card:hover .service-card__media img,
  .home-blog-card:hover .home-blog-card__media img,
  .gallery-card:hover img,
  .about-detail__media:hover .about-photo,
  .puja-photo:hover img {
    transform: scale(1.045) translateZ(16px);
    filter: brightness(1.04) saturate(1.04);
  }

  .btn,
  .btn-call,
  .btn-wa,
  .about-see-more,
  .nav__menu > a,
  .nav__item > a {
    transform-style: preserve-3d;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      background 0.2s ease,
      color 0.2s ease;
  }

  .btn:hover,
  .btn-call:hover,
  .btn-wa:hover,
  .about-see-more:hover {
    transform: translateY(-3px) translateZ(12px);
    box-shadow: 0 12px 24px rgba(90, 26, 26, 0.16);
  }

  .nav__menu > a:hover,
  .nav__item:hover > a {
    transform: translateY(-2px) translateZ(10px);
  }

  .section,
  .page-hero,
  .hero {
    transform-style: preserve-3d;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .home-blog-card,
  .gallery-card,
  .card,
  .btn,
  .btn-call,
  .btn-wa,
  .about-see-more,
  .nav__menu > a,
  .nav__item > a {
    transition: none !important;
  }
}

/* Phone typography: Why Choose Pandit Ji */
@media (max-width: 720px) {
  .section--alt .section__title {
    font-size: clamp(1.28rem, 5.6vw, 1.7rem) !important;
    line-height: 1.18 !important;
  }

  .section--alt .card--center h3 {
    font-size: clamp(0.88rem, 3.4vw, 1rem) !important;
    line-height: 1.22 !important;
    min-height: 0 !important;
  }

  .section--alt .card--center p {
    font-size: clamp(0.72rem, 2.9vw, 0.84rem) !important;
    line-height: 1.38 !important;
    min-height: 0 !important;
  }
}

/* Home services: show every service marked for home */
@media (min-width: 901px) {
  .home-services-section .grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

.home-services-section .grid--4 > .service-card {
  display: flex !important;
}

/* Final responsive FAQ and home About alignment */
.home-faq__wrap {
  align-items: start !important;
}

.home-faq__list {
  min-width: 0 !important;
}

.home-faq__list details {
  overflow: hidden !important;
}

  .home-faq__list summary {
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
    padding-right: 42px !important;
  }

.home-faq__list p {
  overflow-wrap: anywhere !important;
}

@media (max-width: 900px) {
  .home-faq__wrap {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .home-faq__intro {
    text-align: center !important;
  }

  .home-faq__intro p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-faq__cta,
  .home-faq__eyebrow {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 560px) {
  .home-faq {
    padding: 34px 0 !important;
  }

  .home-faq__intro h2 {
    font-size: 1.35rem !important;
    line-height: 1.18 !important;
  }

  .home-faq__intro p,
  .home-faq__list summary,
  .home-faq__list p {
    font-size: 0.82rem !important;
    line-height: 1.42 !important;
  }

  .home-faq__list summary {
    padding: 12px 38px 12px 12px !important;
  }

  .home-faq__list p {
    padding: 0 12px 12px !important;
  }
}

@media (pointer: coarse) and (min-width: 700px) and (max-width: 1200px) {
  .section--alt .two-col {
    grid-template-columns: 1fr !important;
    align-items: center !important;
    gap: 16px !important;
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section--alt .two-col > div {
    text-align: center !important;
    width: 100% !important;
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section--alt .two-col .home-about-photo {
    width: min(100%, 420px) !important;
    height: auto !important;
    max-height: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }

  .home-about-card,
  .home-about-form {
    width: 100% !important;
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .home-about-card .heading,
  .home-about-card .lead,
  .home-about-card .about-preview,
  .home-about-card .home-kaal-sarp-note,
  .home-about-card .online-puja-note p {
    text-align: center !important;
  }

  .home-about-card .stat-row {
    justify-content: center !important;
  }

  .home-about-card .about-cta-row,
  .home-about-card .online-puja-note {
    justify-content: center !important;
  }

  .home-about-card .about-see-more {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-about-form .form-card {
    text-align: left !important;
  }

  .home-faq__wrap {
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr) !important;
    gap: 18px !important;
  }

  .home-faq__intro h2 {
    font-size: clamp(1.35rem, 2vw, 1.9rem) !important;
  }

  .home-faq__list summary {
    font-size: clamp(0.82rem, 1.2vw, 0.95rem) !important;
    line-height: 1.28 !important;
  }

  .home-faq__list p {
    font-size: clamp(0.76rem, 1.05vw, 0.88rem) !important;
    line-height: 1.38 !important;
  }
}

/* Final FAQ responsive polish */
.home-faq {
  overflow: hidden !important;
}

.home-faq__wrap {
  align-items: start !important;
  min-width: 0 !important;
}

.home-faq__intro,
.home-faq__list,
.home-faq__list details {
  min-width: 0 !important;
}

.home-faq__list details {
  border-radius: 8px !important;
}

.home-faq__list summary {
  min-width: 0 !important;
  overflow-wrap: anywhere !important;
  line-height: 1.25 !important;
}

.home-faq__list p {
  overflow-wrap: anywhere !important;
  line-height: 1.42 !important;
}

@media (max-width: 720px) {
  .home-faq {
    padding: 30px 0 !important;
  }

  .home-faq__wrap {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .home-faq__intro {
    text-align: center !important;
  }

  .home-faq__intro h2 {
    font-size: 1.28rem !important;
    line-height: 1.15 !important;
    margin-bottom: 8px !important;
  }

  .home-faq__intro p {
    font-size: 0.8rem !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
  }

  .home-faq__list {
    gap: 8px !important;
  }

  .home-faq__list summary {
    padding: 11px 38px 11px 12px !important;
    font-size: 0.78rem !important;
    line-height: 1.25 !important;
  }

  .home-faq__list p {
    padding: 0 12px 11px !important;
    font-size: 0.74rem !important;
    line-height: 1.35 !important;
  }
}

@media (pointer: coarse) and (min-width: 700px) and (max-width: 1200px) {
  .home-faq {
    padding: 36px 0 !important;
  }

  .home-faq__wrap {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr) !important;
    gap: 16px !important;
  }

  .home-faq__intro h2 {
    font-size: clamp(1.25rem, 1.8vw, 1.7rem) !important;
    line-height: 1.12 !important;
  }

  .home-faq__intro p {
    font-size: clamp(0.72rem, 1vw, 0.86rem) !important;
    line-height: 1.32 !important;
  }

  .home-faq__list {
    gap: 7px !important;
  }

  .home-faq__list summary {
    padding: 10px 36px 10px 12px !important;
    font-size: clamp(0.74rem, 1vw, 0.88rem) !important;
    line-height: 1.2 !important;
  }

  .home-faq__list p {
    padding: 0 12px 10px !important;
    font-size: clamp(0.7rem, 0.95vw, 0.82rem) !important;
    line-height: 1.28 !important;
  }
}

/* Final header guard: keep main navbar visible while scrolling */
.nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 9990 !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.nav__row {
  transform: none !important;
}

@media (max-width: 1200px) {
  .nav {
    position: sticky !important;
    top: 0 !important;
    z-index: 9990 !important;
  }

  .nav__menu {
    z-index: 9991 !important;
  }
}

/* Phone FAQ overlap fix */
@media (max-width: 720px) {
  .home-faq__list details {
    display: block !important;
    overflow: visible !important;
  }

  .home-faq__list summary {
    position: relative !important;
    display: block !important;
    min-height: 0 !important;
    padding: 12px 42px 12px 12px !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    overflow: visible !important;
  }

  .home-faq__list summary::after {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    transform: none !important;
  }

  .home-faq__list details[open] summary::after {
    transform: rotate(45deg) !important;
  }

  .home-faq__list p {
    display: block !important;
    margin: 0 !important;
    padding: 0 12px 14px !important;
    line-height: 1.45 !important;
    clear: both !important;
  }
}

/* FAQ redesign: stable on desktop, phone, and phone desktop-mode */
.home-faq {
  padding: clamp(42px, 6vw, 76px) 0 !important;
  background: linear-gradient(135deg, #fffaf2 0%, #eef8f3 100%) !important;
  overflow: hidden !important;
}

.home-faq .container.home-faq__wrap {
  width: min(100% - 32px, 1120px) !important;
  display: grid !important;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr) !important;
  gap: clamp(22px, 4vw, 48px) !important;
  align-items: start !important;
}

.home-faq__intro {
  position: sticky !important;
  top: 92px !important;
  min-width: 0 !important;
  text-align: left !important;
}

.home-faq__eyebrow {
  display: inline-flex !important;
  width: max-content !important;
  margin: 0 0 10px !important;
  padding: 6px 11px !important;
  border-radius: 999px !important;
  background: rgba(122, 31, 31, 0.10) !important;
  color: #7a1f1f !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
}

.home-faq__intro h2 {
  margin: 0 0 10px !important;
  color: #173c2d !important;
  font-family: "Cinzel", "Poppins", serif !important;
  font-size: clamp(1.7rem, 3vw, 2.65rem) !important;
  line-height: 1.1 !important;
}

.home-faq__intro p {
  margin: 0 0 18px !important;
  color: #5d5149 !important;
  font-size: clamp(0.92rem, 1vw, 1rem) !important;
  line-height: 1.65 !important;
}

.home-faq__cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 42px !important;
  padding: 10px 16px !important;
  border-radius: 999px !important;
  background: #0f9f70 !important;
  color: #fff !important;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.home-faq__list {
  display: grid !important;
  gap: 10px !important;
  min-width: 0 !important;
}

.home-faq__list details {
  min-width: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(122, 31, 31, 0.10) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 10px 26px rgba(90, 26, 26, 0.06) !important;
}

.home-faq__list summary {
  position: relative !important;
  display: block !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 15px 48px 15px 16px !important;
  color: #4e1d1d !important;
  font-size: clamp(0.94rem, 1.1vw, 1.04rem) !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  cursor: pointer !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  list-style: none !important;
}

.home-faq__list summary::-webkit-details-marker {
  display: none !important;
}

.home-faq__list summary::after {
  content: "+" !important;
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  width: 26px !important;
  height: 26px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: #fff2d7 !important;
  color: #7a1f1f !important;
  font-size: 1.05rem !important;
  line-height: 1 !important;
  transform: none !important;
}

.home-faq__list details[open] summary {
  color: #173c2d !important;
}

.home-faq__list details[open] summary::after {
  content: "-" !important;
  transform: none !important;
}

.home-faq__list p {
  display: block !important;
  margin: 0 !important;
  padding: 0 16px 16px !important;
  color: #5d5149 !important;
  font-size: clamp(0.86rem, 0.95vw, 0.94rem) !important;
  line-height: 1.62 !important;
  overflow-wrap: anywhere !important;
}

@media (max-width: 900px) {
  .home-faq .container.home-faq__wrap {
    grid-template-columns: 1fr !important;
    width: min(100% - 28px, 760px) !important;
    gap: 18px !important;
  }

  .home-faq__intro {
    position: static !important;
    text-align: center !important;
  }

  .home-faq__eyebrow,
  .home-faq__cta {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-faq__intro p {
    max-width: 58ch !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 560px) {
  .home-faq {
    padding: 32px 0 !important;
  }

  .home-faq .container.home-faq__wrap {
    width: min(100% - 22px, 560px) !important;
  }

  .home-faq__intro h2 {
    font-size: 1.42rem !important;
  }

  .home-faq__intro p {
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
  }

  .home-faq__list {
    gap: 8px !important;
  }

  .home-faq__list summary {
    padding: 12px 42px 12px 12px !important;
    font-size: 0.82rem !important;
    line-height: 1.35 !important;
  }

  .home-faq__list summary::after {
    top: 11px !important;
    right: 10px !important;
    width: 24px !important;
    height: 24px !important;
  }

  .home-faq__list p {
    padding: 0 12px 13px !important;
    font-size: 0.76rem !important;
    line-height: 1.46 !important;
  }
}

@media (pointer: coarse) and (min-width: 700px) and (max-width: 1200px) {
  .home-faq .container.home-faq__wrap {
    width: min(100% - 24px, 820px) !important;
    grid-template-columns: 1fr !important;
  }

  .home-faq__intro {
    position: static !important;
    text-align: center !important;
  }
}

/* Phone desktop-mode: make Pandit Ji section use full width */
@media (pointer: coarse) and (min-width: 700px) and (max-width: 1200px) {
  body:has(.hero) > main > .section--alt:first-of-type .container.two-col {
    width: calc(100% - 16px) !important;
    max-width: none !important;
    grid-template-columns: minmax(180px, 0.85fr) minmax(300px, 1.35fr) minmax(220px, 0.9fr) !important;
    gap: 12px !important;
    align-items: stretch !important;
  }

  body:has(.hero) > main > .section--alt:first-of-type .container.two-col > div,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-card,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-form {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo {
    width: 100% !important;
    height: 100% !important;
    min-height: 420px !important;
    max-height: 560px !important;
    object-fit: cover !important;
  }
}

/* Desktop: keep home Send Enquiry modal trigger visible */
.home-about-form .home-enquiry-trigger {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin: 0 0 14px !important;
}

/* Modal visibility hard fix: backdrop blur ke upar form dikhna chahiye */
.puja-enquiry-modal:target {
  display: flex !important;
  position: fixed !important;
  inset: 0 !important;
  align-items: flex-start !important;
  justify-content: center !important;
  padding: clamp(18px, 6vh, 56px) 14px 18px !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 12000 !important;
  overflow-y: auto !important;
}

.puja-enquiry-modal:target .puja-enquiry-modal__backdrop {
  z-index: 0 !important;
  pointer-events: auto !important;
}

.puja-enquiry-modal:target .puja-enquiry-modal__dialog {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  pointer-events: auto !important;
  margin: 0 auto auto !important;
  width: min(100% - 28px, 520px) !important;
  max-height: calc(100dvh - clamp(54px, 12vh, 110px)) !important;
  overflow-y: auto !important;
  background: #fffdf8 !important;
}


/* Mobile nav dropdown full-width open */
@media (max-width: 1200px) {
  .nav__item.is-dropdown-open {
    background: #fff7e8 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .nav__item.is-dropdown-open > .nav__dropdown-toggle {
    border-bottom-color: rgba(122, 31, 31, 0.12) !important;
    background: #fff7e8 !important;
    color: var(--maroon) !important;
  }

  .nav__item.is-dropdown-open > .nav__dropdown-toggle .caret {
    transform: rotate(180deg) !important;
  }

  .nav__item.is-dropdown-open > .dropdown {
    width: 100% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fffaf2 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav__item.is-dropdown-open > .dropdown li {
    width: 100% !important;
  }

  .nav__item.is-dropdown-open > .dropdown a {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    min-height: 42px !important;
    padding: 11px 12px 11px 34px !important;
    border-bottom: 1px solid rgba(232, 216, 194, 0.78) !important;
    color: var(--ink) !important;
    font-size: 0.95rem !important;
    line-height: 1.25 !important;
    white-space: normal !important;
  }

  .nav__item.is-dropdown-open > .dropdown a:hover,
  .nav__item.is-dropdown-open > .dropdown a:active {
    background: #ffe9c2 !important;
    color: var(--maroon) !important;
  }
}

@media (max-width: 480px) {
  .nav__item.is-dropdown-open > .dropdown a {
    padding-left: 24px !important;
    font-size: 0.92rem !important;
  }
}

@media (max-width: 560px) {
  .devotee-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section--alt .two-col .home-about-photo {
    height: clamp(340px, 110vw, 500px) !important;
  }
}

/* Phone top header language select fix */
@media (max-width: 720px) {
  .topbar {
    font-size: 0.72rem !important;
    padding: 5px 0 !important;
    overflow: visible !important;
  }

  .topbar__row {
    width: min(100% - 14px, 1480px) !important;
    align-items: center !important;
    gap: 5px 8px !important;
  }

  .topbar__left {
    flex: 1 1 120px !important;
    min-width: 0 !important;
  }

  .topbar__right {
    flex: 0 0 auto !important;
    gap: 5px !important;
  }

  .topbar__tagline {
    max-width: min(48vw, 180px) !important;
    line-height: 1.25 !important;
  }

  .google-translate-wrap {
    max-width: none !important;
    min-width: 118px !important;
    margin-right: 0 !important;
    gap: 4px !important;
  }

  #google_translate_element,
  #google_translate_element .goog-te-gadget {
    max-width: none !important;
  }

  .goog-te-combo,
  #google_translate_element .goog-te-gadget .goog-te-combo {
    width: 108px !important;
    max-width: 108px !important;
    min-width: 108px !important;
    height: 27px !important;
    min-height: 27px !important;
    padding: 3px 5px !important;
    font-size: 0.68rem !important;
    line-height: 1.15 !important;
    border-radius: 6px !important;
  }

  .topbar__link--cta {
    padding: 3px 8px !important;
    font-size: 0.68rem !important;
  }
}

@media (max-width: 380px) {
  .topbar {
    font-size: 0.66rem !important;
  }

  .topbar__row {
    width: min(100% - 10px, 1480px) !important;
    gap: 4px !important;
  }

  .topbar__tagline {
    max-width: 112px !important;
  }

  .google-translate-wrap {
    min-width: 104px !important;
  }

  .goog-te-combo,
  #google_translate_element .goog-te-gadget .goog-te-combo {
    width: 98px !important;
    max-width: 98px !important;
    min-width: 98px !important;
    height: 25px !important;
    min-height: 25px !important;
    font-size: 0.62rem !important;
  }
}

/* Phone topbar final fit: keep tagline from covering login/translate controls. */
@media (max-width: 720px) {
  .topbar__row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    overflow: hidden !important;
  }

  .topbar__left {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .topbar__right {
    min-width: max-content !important;
    max-width: 54vw !important;
    overflow: visible !important;
  }

  .topbar__tagline {
    display: block !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .topbar__tagline .ic {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .topbar__right {
    max-width: 58vw !important;
  }

  .topbar__tagline {
    max-width: 100% !important;
  }
}

/* Phone hamburger menu: right-side drawer */
@media (max-width: 1200px) {
  .nav {
    overflow: visible !important;
  }

  .nav__row {
    position: relative !important;
  }

  .nav__menu {
    left: auto !important;
    right: 4px !important;
    width: min(94vw, 380px) !important;
    max-width: calc(100vw - 8px) !important;
    margin: 0 !important;
    transform: none !important;
    padding: 12px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(122, 31, 31, 0.14) !important;
    background: #fffdf8 !important;
    box-shadow: 0 22px 46px rgba(60, 26, 18, 0.24) !important;
  }
}

@media (max-width: 480px) {
  .nav__menu {
    right: 2px !important;
    width: calc(100vw - 4px) !important;
    max-width: calc(100vw - 4px) !important;
  }
}

/* Phone hamburger drawer link polish */
@media (max-width: 1200px) {
  .nav__menu.is-open {
    padding: 12px !important;
  }

  .nav__menu.is-open > a,
  .nav__menu.is-open .nav__item > a {
    border-radius: 8px !important;
    margin: 2px 0 !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    background: #fff !important;
    border: 1px solid rgba(122, 31, 31, 0.08) !important;
  }

  .nav__menu.is-open .dropdown a {
    border-radius: 7px !important;
    margin: 2px 0 !important;
    padding-left: 24px !important;
    padding-right: 10px !important;
  }
}

/* Phone: keep all home service groups one per row. */
@media (max-width: 720px) {
  .home-services-section--popular .grid--4 {
    grid-template-columns: 1fr !important;
  }

  .home-services-section--popular .service-card {
    max-width: 420px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-services-section--other .grid--4 {
    grid-template-columns: 1fr !important;
  }
}

/* Send Enquiry button and modal safety */
.home-enquiry-trigger,
a[href="#home-enquiry"],
a[href="#about-enquiry"],
a[href="#puja-enquiry"],
a[href="#blog-enquiry"] {
  position: relative !important;
  z-index: 2 !important;
  cursor: pointer !important;
  text-align: center !important;
}

.home-about-form > .home-enquiry-trigger {
  display: flex !important;
  width: 100% !important;
  justify-content: center !important;
  margin-bottom: 12px !important;
}

.puja-enquiry-modal {
  z-index: 12000 !important;
}

.puja-enquiry-modal__dialog {
  z-index: 12001 !important;
}

@media (max-width: 720px) {
  .home-enquiry-trigger,
  a[href="#about-enquiry"],
  a[href="#puja-enquiry"],
  a[href="#blog-enquiry"] {
    min-height: 42px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .puja-enquiry-modal {
    align-items: flex-start !important;
    padding: 12px 10px !important;
    overflow-y: auto !important;
  }

  .puja-enquiry-modal__dialog {
    width: min(100%, 520px) !important;
    max-height: calc(100dvh - 24px) !important;
    padding: 18px !important;
    margin-top: 0 !important;
  }
}

/* Phone desktop-mode: About and FAQ width correction */
@media (pointer: coarse) and (min-width: 700px) and (max-width: 1200px) {
  body:has(.hero) > main > .section--alt:first-of-type {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body:has(.hero) > main > .section--alt:first-of-type .container.two-col {
    width: min(100% - 24px, 760px) !important;
    max-width: 760px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body:has(.hero) > main > .section--alt:first-of-type .container.two-col > div,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-card,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-form {
    width: 100% !important;
    max-width: 640px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo {
    width: min(100%, 520px) !important;
    height: auto !important;
    max-height: 520px !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-faq .container.home-faq__wrap {
    width: min(100% - 24px, 780px) !important;
    max-width: 780px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-faq__intro,
  .home-faq__list {
    width: 100% !important;
    max-width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-faq__intro {
    text-align: center !important;
  }
}

/* Phone hamburger menu full header width */
@media (max-width: 1200px) {
  .nav {
    position: sticky !important;
    top: 0 !important;
    overflow: visible !important;
  }

  .nav__row {
    position: static !important;
  }

  .nav__menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    background: #fffdf8 !important;
  }

  .nav__menu.is-open {
    display: flex !important;
    flex-direction: column !important;
  }

  .nav__menu.is-open > a,
  .nav__menu.is-open .nav__item > a {
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 18px !important;
    border-radius: 0 !important;
  }
}

/* Phone "Desktop site" final QA layout */
@media (pointer: coarse) and (min-width: 700px) and (max-width: 1200px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .container {
    width: min(100% - 24px, 1120px) !important;
  }

  .topbar__row,
  .nav__row {
    width: min(100% - 20px, 1120px) !important;
  }

  .hero {
    min-height: 520px !important;
    height: 66vh !important;
  }

  .hero-content {
    width: min(92%, 720px) !important;
  }

  .section {
    padding: 42px 0 !important;
  }

  .section--alt .two-col {
    grid-template-columns: 1fr !important;
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: 16px !important;
    text-align: center !important;
  }

  .section--alt .two-col > div,
  .home-about-card,
  .home-about-form {
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .home-about-form .form-card {
    text-align: left !important;
  }

  .home-services-section .grid--4,
  .home-blog-section .grid--3,
  .section--alt .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .home-services-section .grid--4 > .service-card:nth-child(n+4) {
    display: flex !important;
  }

  .home-services-section .service-card__media,
  .home-blog-card__media {
    height: 210px !important;
  }

  .home-faq__wrap {
    grid-template-columns: 1fr !important;
    max-width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: 14px !important;
  }

  .home-faq__intro {
    text-align: center !important;
  }

  .home-faq__list summary {
    font-size: 0.86rem !important;
    line-height: 1.24 !important;
  }

  .home-faq__list p {
    font-size: 0.78rem !important;
    line-height: 1.34 !important;
  }
}

/* Final home Pandit Ji section width fix */
body:has(.hero) > main > .section--alt:first-of-type .container.two-col {
  width: min(100% - 28px, 1320px) !important;
  max-width: 1320px !important;
  grid-template-columns: minmax(260px, 0.95fr) minmax(360px, 1.25fr) minmax(280px, 0.95fr) !important;
  gap: clamp(18px, 2.5vw, 34px) !important;
  align-items: stretch !important;
}

body:has(.hero) > main > .section--alt:first-of-type .home-about-card,
body:has(.hero) > main > .section--alt:first-of-type .home-about-form {
  width: 100% !important;
  max-width: none !important;
}

body:has(.hero) > main > .section--alt:first-of-type .home-about-card .heading {
  font-size: clamp(1.35rem, 1.7vw, 1.9rem) !important;
}

body:has(.hero) > main > .section--alt:first-of-type .home-about-card .lead {
  font-size: clamp(0.9rem, 1vw, 1.05rem) !important;
}

body:has(.hero) > main > .section--alt:first-of-type .home-about-card .about-preview,
body:has(.hero) > main > .section--alt:first-of-type .online-puja-note p {
  font-size: clamp(0.84rem, 0.9vw, 0.96rem) !important;
  line-height: 1.55 !important;
}

body:has(.hero) > main > .section--alt:first-of-type .online-puja-note p {
  font-size: clamp(0.78rem, 0.82vw, 0.88rem) !important;
  line-height: 1.48 !important;
}

body:has(.hero) > main > .section--alt:first-of-type .online-puja-note p strong {
  padding: 1px 6px !important;
  font-size: 0.92em !important;
}

body:has(.hero) > main > .section--alt:first-of-type .home-about-media {
  position: relative !important;
  padding-bottom: 66px !important;
}

body:has(.hero) > main > .section--alt:first-of-type .home-about-media::before {
  content: "" !important;
  position: absolute !important;
  left: -18px !important;
  top: 28px !important;
  width: 78% !important;
  height: calc(100% - 78px) !important;
  background: #eef8f3 !important;
  border-radius: 0 52px 0 52px !important;
}

body:has(.hero) > main > .section--alt:first-of-type .home-about-photo {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  width: 80% !important;
  min-height: 390px !important;
  height: clamp(390px, 32vw, 520px) !important;
  object-fit: cover !important;
  border-radius: 0 64px 0 64px !important;
  box-shadow: 0 24px 50px rgba(23, 60, 45, 0.18) !important;
}

body:has(.hero) > main > .section--alt:first-of-type .home-about-photo-badge {
  position: absolute !important;
  z-index: 2 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: min(260px, 72%) !important;
  padding: 18px 20px !important;
  background: #7a1f1f !important;
  color: #fff !important;
  box-shadow: 0 18px 34px rgba(122, 31, 31, 0.22) !important;
}

body:has(.hero) > main > .section--alt:first-of-type .home-about-photo-badge span {
  display: inline-flex !important;
  width: fit-content !important;
  margin: 0 0 8px !important;
  padding: 4px 8px !important;
  background: rgba(255, 225, 165, 0.16) !important;
  color: #ffe1a5 !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

body:has(.hero) > main > .section--alt:first-of-type .home-about-photo-badge strong {
  display: block !important;
  color: #ffe1a5 !important;
  font-size: 1.28rem !important;
  line-height: 1.2 !important;
}

@media (pointer: coarse) and (min-width: 700px) and (max-width: 1200px) {
  body:has(.hero) > main > .section--alt:first-of-type .container.two-col {
    width: min(100% - 18px, 980px) !important;
    max-width: 980px !important;
    grid-template-columns: minmax(190px, 0.85fr) minmax(300px, 1.25fr) minmax(210px, 0.9fr) !important;
    gap: 12px !important;
    text-align: left !important;
  }

  body:has(.hero) > main > .section--alt:first-of-type .container.two-col > div {
    max-width: none !important;
    text-align: left !important;
  }

  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo {
    width: 82% !important;
    min-height: 340px !important;
    height: clamp(340px, 44vw, 420px) !important;
  }
}

@media (max-width: 699px) {
  body:has(.hero) > main > .section--alt:first-of-type .container.two-col {
    grid-template-columns: 1fr !important;
    width: min(100% - 22px, 560px) !important;
  }

  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo {
    width: 88% !important;
    min-height: 280px !important;
    height: clamp(280px, 70vw, 340px) !important;
    border-radius: 0 42px 0 42px !important;
  }

  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo-badge {
    width: min(240px, 78%) !important;
    padding: 14px 16px !important;
  }
}

/* Home Explore Puja + Blog section */
.home-explore-section {
  padding: clamp(34px, 5vw, 64px) 0;
  background: linear-gradient(135deg, #fff8ec 0%, #eef8f3 58%, #fff 100%);
  border-bottom: 1px solid rgba(122, 31, 31, 0.08);
}

.home-explore-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
}

.home-explore-head {
  position: sticky;
  top: 92px;
}

.home-explore-head span {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(122, 31, 31, 0.09);
  color: #7a1f1f;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-explore-head h2 {
  margin: 12px 0 10px;
  color: #173c2d;
  font-family: "Cinzel", "Poppins", serif;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 1.1;
}

.home-explore-head p {
  margin: 0 0 18px;
  color: #5d5149;
  line-height: 1.7;
}

.home-explore-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-explore-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.home-explore-block {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(122, 31, 31, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(90, 26, 26, 0.08);
}

.home-explore-block__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.home-explore-block__head h3 {
  margin: 0;
  color: #7a1f1f;
  font-size: 1.05rem;
}

.home-explore-block__head a {
  color: #0f7d59;
  font-size: 0.84rem;
  font-weight: 800;
}

.home-explore-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-explore-item {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  padding: 12px;
  border: 1px solid rgba(122, 31, 31, 0.09);
  border-radius: 8px;
  background: #fff;
  color: #3f3028;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.home-explore-item:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 159, 112, 0.26);
  box-shadow: 0 14px 24px rgba(23, 60, 45, 0.10);
}

.home-explore-item span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff2d7;
  color: #9c4e00;
}

.home-explore-item--blog span {
  background: #e9f7f0;
  color: #0f7d59;
}

.home-explore-item strong {
  min-width: 0;
  color: #173c2d;
  font-size: 0.94rem;
  line-height: 1.22;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-explore-item small {
  min-width: 0;
  color: #6a5a4f;
  font-size: 0.76rem;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 900px) {
  .home-explore-wrap {
    grid-template-columns: 1fr;
  }

  .home-explore-head {
    position: static;
    text-align: center;
  }

  .home-explore-actions {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .home-explore-section {
    padding: 28px 0;
  }

  .home-explore-head h2 {
    font-size: 1.42rem;
  }

  .home-explore-head p {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .home-explore-block {
    padding: 12px;
  }

  .home-explore-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-explore-item {
    padding: 10px;
  }

  .home-explore-item strong {
    font-size: 0.86rem;
  }

  .home-explore-item small {
    font-size: 0.7rem;
  }
}

/* Compact searchable explore section */
.home-explore-section {
  padding: clamp(24px, 4vw, 42px) 0 !important;
}

.home-explore-wrap {
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr) !important;
  gap: clamp(16px, 3vw, 34px) !important;
  align-items: center !important;
}

.home-explore-head {
  position: static !important;
}

.home-explore-head h2 {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem) !important;
}

.home-explore-head p {
  margin-bottom: 0 !important;
}

.home-explore-search {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(122, 31, 31, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(90, 26, 26, 0.08);
}

.home-explore-search form {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 8px;
  border: 1px solid rgba(122, 31, 31, 0.14);
  border-radius: 8px;
  background: #fff;
}

.home-explore-search form i {
  color: #b66d00;
  padding-left: 6px;
}

.home-explore-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: #35251f;
  font: inherit;
}

.home-explore-search button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  background: #7a1f1f;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.home-explore-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.home-explore-chips a {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(122, 31, 31, 0.10);
  border-radius: 999px;
  background: #fffaf2;
  color: #50342d;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-explore-actions {
  margin-top: 12px;
}

.home-explore-actions a {
  display: inline-flex;
  margin-right: 12px;
  color: #0f7d59;
  font-size: 0.86rem;
  font-weight: 900;
}

@media (max-width: 900px) {
  .home-explore-wrap {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .home-explore-section {
    padding: 22px 0 !important;
  }

  .home-explore-head {
    text-align: center !important;
  }

  .home-explore-search {
    padding: 10px;
  }

  .home-explore-search form {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .home-explore-search button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .home-explore-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .home-explore-chips a {
    flex: 0 0 auto;
    max-width: 78vw;
    font-size: 0.76rem;
  }

  .home-explore-actions {
    text-align: center;
  }
}

/* Final phone dropdown behavior inside hamburger drawer */
@media (max-width: 1200px) {
  .nav__menu {
    max-height: calc(100vh - 86px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .nav__menu .nav__item {
    width: 100% !important;
    position: static !important;
    display: block !important;
    margin: 0 !important;
  }

  .nav__menu .nav__item > a {
    width: 100% !important;
    justify-content: space-between !important;
  }

  .nav__menu .nav__item > .dropdown {
    position: static !important;
    inset: auto !important;
    min-width: 0 !important;
    width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    margin: 0 0 6px !important;
    padding: 4px 0 !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: #fff7e8 !important;
    box-shadow: none !important;
  }

  .nav__menu .nav__item:hover > .dropdown,
  .nav__menu .nav__item:focus-within > .dropdown {
    display: none !important;
  }

  .nav__menu .nav__item.is-dropdown-open > .dropdown {
    display: block !important;
  }

  .nav__menu .nav__item.is-dropdown-open > a {
    background: #fff0d8 !important;
    color: var(--maroon) !important;
  }

  .nav__menu .nav__item.is-dropdown-open > a .caret {
    transform: rotate(180deg) !important;
  }

  .nav__menu .dropdown li {
    width: 100% !important;
    margin: 0 !important;
  }

  .nav__menu .dropdown a {
    width: 100% !important;
    display: block !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    margin: 0 !important;
    padding: 9px 12px 9px 26px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(122, 31, 31, 0.08) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #51342c !important;
    font-size: 0.88rem !important;
    line-height: 1.25 !important;
  }

  .nav__menu .dropdown li:last-child a {
    border-bottom: 0 !important;
  }
}

/* Final mobile menu: open full screen width under header */
@media (max-width: 1200px) {
  .nav {
    overflow: visible !important;
  }

  .nav__row {
    position: static !important;
  }

  .nav__menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 10px 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
    background: #fffdf8 !important;
    box-shadow: 0 16px 32px rgba(60, 26, 18, 0.20) !important;
    max-height: calc(100vh - 64px) !important;
    overflow-y: auto !important;
    z-index: 9999 !important;
  }

  .nav__menu.is-open {
    display: flex !important;
    flex-direction: column !important;
  }

  .nav__menu.is-open > a,
  .nav__menu.is-open .nav__item > a {
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 18px !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 0 !important;
    border-radius: 0 !important;
  }

  .nav__menu .nav__item > .dropdown {
    border-radius: 0 !important;
    margin: 0 !important;
  }

  .nav__menu .dropdown a {
    padding-left: 34px !important;
  }
}

/* Phone dropdown: open downward and keep menu scrollable */
@media (max-width: 1200px) {
  .nav__menu.is-open {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    max-height: calc(100dvh - 64px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .nav__menu.is-open .nav__item {
    width: 100% !important;
    flex: 0 0 auto !important;
    position: relative !important;
  }

  .nav__menu.is-open .nav__item > .dropdown {
    position: static !important;
    display: none !important;
    width: 100% !important;
    max-height: 46vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  .nav__menu.is-open .nav__item.is-dropdown-open > .dropdown {
    display: block !important;
  }

  .nav__menu.is-open .nav__item.is-dropdown-open {
    order: initial !important;
  }
}

/* Final mobile nav edge fix: no side gap after hamburger click */
@media (max-width: 1200px) {
  .nav__menu,
  .nav__menu.is-open {
    left: 50% !important;
    right: auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    transform: translateX(-50vw) !important;
    border-left: 0 !important;
    border-right: 0 !important;
  }

  .nav__menu.is-open > a,
  .nav__menu.is-open .nav__item,
  .nav__menu.is-open .nav__item > a,
  .nav__menu.is-open .dropdown,
  .nav__menu.is-open .dropdown li,
  .nav__menu.is-open .dropdown a {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0 !important;
  }
}

/* Final home service grid: desktop 3, tablet 2, phone 1. */
.home-services-section .grid--3,
.home-services-section .grid--4 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

.home-services-section .grid--3 > .service-card,
.home-services-section .grid--4 > .service-card {
  display: flex !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .home-services-section .grid--3,
  .home-services-section .grid--4,
  .home-services-section--popular .grid--3,
  .home-services-section--popular .grid--4,
  .home-services-section--other .grid--3,
  .home-services-section--other .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }
}

@media (max-width: 767px) {
  .home-services-section .grid--3,
  .home-services-section .grid--4,
  .home-services-section--popular .grid--3,
  .home-services-section--popular .grid--4,
  .home-services-section--other .grid--3,
  .home-services-section--other .grid--4 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .home-services-section .service-card {
    width: 100% !important;
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-services-section .service-card__media {
    height: clamp(210px, 56vw, 320px) !important;
  }
}

/* Final blog grids: readable cards, admin images, 3 desktop / 1 mobile-tablet. */
.home-blog-section .grid--3 {
  display: grid !important;
  grid-auto-flow: row !important;
  grid-auto-columns: auto !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
  overflow: visible !important;
  padding: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.home-blog-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.home-blog-card__media {
  height: 230px !important;
  flex: 0 0 auto !important;
}

.home-blog-card__media img,
.blog-card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

@media (max-width: 900px) {
  .home-blog-section .grid--3 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .home-blog-card {
    width: 100% !important;
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-blog-card__media {
    height: clamp(210px, 56vw, 320px) !important;
  }

  .blog-hero .container {
    text-align: center !important;
  }

  .blog-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
    line-height: 1.12 !important;
  }

  .blog-hero p {
    max-width: 36rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(0.9rem, 3.8vw, 1rem) !important;
    line-height: 1.5 !important;
  }
}

@media (max-width: 720px) {
  .home-blog-section .grid--3 {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(250px, 82vw) !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior-inline: contain !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    padding: 4px 14px 14px !important;
    margin-left: -14px !important;
    margin-right: -14px !important;
    scrollbar-width: none !important;
  }

  .home-blog-section .grid--3::-webkit-scrollbar {
    display: none !important;
  }

  .home-blog-section .home-blog-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    scroll-snap-align: start !important;
  }

  .home-blog-section .home-blog-card__media {
    height: clamp(180px, 50vw, 240px) !important;
  }
}

/* Final puja/services listing cards: desktop 3, tablet 2, phone 1. */
.service-listing-section .grid--3,
.service-listing-section .grid--4 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

.service-listing-section .service-card {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  border: 1px solid rgba(122, 31, 31, 0.10) !important;
  box-shadow: 0 14px 34px rgba(90, 26, 26, 0.09) !important;
  background: #fff !important;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
}

.service-listing-section .service-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(201, 112, 0, 0.28) !important;
  box-shadow: 0 18px 42px rgba(90, 26, 26, 0.13) !important;
}

.service-listing-section .service-card__media {
  position: relative !important;
  width: 100% !important;
  height: 240px !important;
  aspect-ratio: auto !important;
  flex: 0 0 auto !important;
  background: #f5ead7 !important;
}

.service-listing-section .service-card__media::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 0 0 !important;
  height: 44% !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(58, 24, 10, 0.36)) !important;
  pointer-events: none !important;
}

.service-listing-section .service-card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform .35s ease, filter .35s ease !important;
}

.service-listing-section .service-card:hover .service-card__media img {
  transform: scale(1.045) !important;
  filter: brightness(1.04) saturate(1.05) !important;
}

.service-listing-section .service-card__body {
  min-height: 0 !important;
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  gap: 11px !important;
  padding: 0 16px 16px !important;
  background: linear-gradient(180deg, #fff, #fffaf2) !important;
}

.service-listing-section .service-card .badge {
  order: 1 !important;
  width: max-content !important;
  margin: -15px auto 0 !important;
  padding: 6px 13px !important;
  border: 1px solid rgba(240, 138, 0, 0.20) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #8a4d00 !important;
  box-shadow: 0 8px 18px rgba(90, 26, 26, 0.13) !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.service-listing-section .service-card h3 {
  position: relative !important;
  order: 2 !important;
  min-height: 0 !important;
  display: block !important;
  margin: 0 !important;
  padding: 13px 14px !important;
  border: 1px solid rgba(122, 31, 31, 0.10) !important;
  border-radius: 11px !important;
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.98), rgba(255, 255, 255, 0.98)),
    #fff !important;
  color: #651818 !important;
  font-family: 'Cinzel', serif !important;
  font-size: clamp(1.08rem, 1.3vw, 1.28rem) !important;
  line-height: 1.28 !important;
  text-align: center !important;
  box-shadow: 0 8px 18px rgba(90, 26, 26, 0.06) !important;
  overflow: visible !important;
  transition: transform .22s ease, color .22s ease, box-shadow .22s ease, border-color .22s ease !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: initial !important;
}

.service-listing-section .service-card h3::after {
  content: "" !important;
  display: block !important;
  width: 42px !important;
  height: 2px !important;
  margin: 9px auto 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #7a1f1f, #f08a00) !important;
  transform: scaleX(0.55) !important;
  transform-origin: center !important;
  transition: transform .25s ease, width .25s ease !important;
}

.service-listing-section .service-card p {
  order: 3 !important;
  min-height: 0 !important;
  display: block !important;
  margin: 0 !important;
  padding: 12px 13px !important;
  border: 1px solid rgba(122, 31, 31, 0.08) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.84) !important;
  overflow: visible !important;
  color: #4f453d !important;
  font-size: 0.94rem !important;
  line-height: 1.62 !important;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease, color .22s ease !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: initial !important;
}

.service-listing-section .service-card .muted.small {
  order: 4 !important;
  min-height: 0 !important;
  display: block !important;
  margin: 0 !important;
  padding: 12px 13px !important;
  border: 1px solid rgba(201, 112, 0, 0.14) !important;
  border-left: 4px solid rgba(201, 112, 0, 0.42) !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #fff7e8, #fffdf8) !important;
  color: #6b5c54 !important;
  font-size: 0.86rem !important;
  line-height: 1.62 !important;
  overflow: visible !important;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease, border-color .22s ease !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: initial !important;
}

.service-listing-section .service-card:hover h3 {
  transform: translateY(-2px) !important;
  color: #8a1f1f !important;
  border-color: rgba(240, 138, 0, 0.20) !important;
  box-shadow: 0 12px 24px rgba(90, 26, 26, 0.09) !important;
}

.service-listing-section .service-card:hover h3::after {
  width: 68px !important;
  transform: scaleX(1) !important;
}

.service-listing-section .service-card:hover p {
  transform: translateY(-1px) !important;
  color: #3f3329 !important;
  box-shadow: 0 8px 18px rgba(90, 26, 26, 0.05) !important;
}

.service-listing-section .service-card:hover .muted.small {
  transform: translateY(-1px) !important;
  border-color: rgba(201, 112, 0, 0.22) !important;
  background: linear-gradient(135deg, #fff2d8, #fffdf8) !important;
  box-shadow: 0 8px 18px rgba(201, 112, 0, 0.08) !important;
}

/* Services page custom tiles: separate from the shared service-card design. */
.service-listing-section .service-tile {
  position: relative !important;
  display: grid !important;
  grid-template-rows: 230px 1fr !important;
  min-width: 0 !important;
  height: 100% !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  background: #fffaf2 !important;
  border: 1px solid rgba(122, 31, 31, 0.12) !important;
  box-shadow: 0 16px 38px rgba(90, 26, 26, 0.10) !important;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease !important;
}

.service-listing-section .service-tile::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.30), transparent 38%) !important;
  opacity: .9 !important;
  z-index: 2 !important;
}

.service-listing-section .service-tile:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(240, 138, 0, 0.30) !important;
  box-shadow: 0 22px 52px rgba(90, 26, 26, 0.16) !important;
}

.service-listing-section .service-tile__media {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 230px !important;
  overflow: hidden !important;
  background: #ead8bd !important;
}

.service-listing-section .service-tile__media::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(58, 24, 10, 0.42)),
    radial-gradient(circle at 22% 18%, rgba(255, 231, 163, 0.28), transparent 36%) !important;
  pointer-events: none !important;
}

.service-listing-section .service-tile__media img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  transition: transform .45s ease, filter .45s ease !important;
}

.service-listing-section .service-tile:hover .service-tile__media img {
  transform: scale(1.06) !important;
  filter: saturate(1.08) contrast(1.03) !important;
}

.service-listing-section .service-tile__body {
  position: relative !important;
  z-index: 3 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 7px !important;
  min-width: 0 !important;
  padding: 14px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.98)),
    #fff !important;
}

.service-listing-section .service-tile__head {
  margin-top: 0 !important;
  padding: 8px 6px 7px !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(122, 31, 31, 0.10) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  text-align: center !important;
  transition: transform .24s ease, box-shadow .24s ease !important;
}

.service-listing-section .service-tile:hover .service-tile__head {
  transform: none !important;
  box-shadow: none !important;
}

.service-listing-section .service-tile__head h3 {
  margin: 0 !important;
  color: #651818 !important;
  font-family: 'Cinzel', serif !important;
  font-size: clamp(1.08rem, 1.28vw, 1.26rem) !important;
  line-height: 1.24 !important;
  letter-spacing: 0 !important;
}

.service-listing-section .service-tile__summary,
.service-listing-section .service-tile__description {
  margin: 0 !important;
  overflow: visible !important;
  color: #44382f !important;
  line-height: 1.66 !important;
}

.service-listing-section .service-tile__summary {
  padding: 10px 12px !important;
  border-radius: 13px !important;
  background: #fff !important;
  border: 1px solid rgba(122, 31, 31, 0.08) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
}

.service-listing-section .service-tile__description {
  padding: 10px 12px !important;
  border-radius: 13px !important;
  background: linear-gradient(135deg, #fff7e8, #fffdf8) !important;
  border: 1px solid rgba(201, 112, 0, 0.15) !important;
  border-left: 4px solid rgba(201, 112, 0, 0.46) !important;
  color: #6b5c54 !important;
  font-size: 0.88rem !important;
}

.service-listing-section .service-tile .btn-row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin-top: auto !important;
  padding-top: 2px !important;
}

.service-listing-section .service-tile .btn-wa,
.service-listing-section .service-tile .btn-call {
  width: 100% !important;
  min-height: 40px !important;
  justify-content: center !important;
  border-radius: 11px !important;
  font-weight: 900 !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .service-listing-section .grid--3,
  .service-listing-section .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .service-listing-section .service-tile {
    grid-template-rows: clamp(220px, 58vw, 320px) 1fr !important;
    max-width: 540px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .service-listing-section .service-tile__media {
    height: clamp(220px, 58vw, 320px) !important;
  }

  .service-listing-section .service-tile__body {
    padding: 16px !important;
  }
}

.service-listing-section .service-card .btn-row {
  order: 5 !important;
  margin-top: auto !important;
  padding-top: 2px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 9px !important;
}

.service-listing-section .service-card .btn-call,
.service-listing-section .service-card .btn-wa {
  min-height: 38px !important;
  border-radius: 9px !important;
  justify-content: center !important;
  font-weight: 800 !important;
}

@media (max-width: 767px) {
  .service-listing-section .grid--3,
  .service-listing-section .grid--4 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .service-listing-section .service-card {
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .service-listing-section .service-card__media {
    height: clamp(210px, 58vw, 310px) !important;
  }

  .service-listing-section .service-card__body {
    min-height: 0 !important;
  }

  .service-listing-section .service-card h3,
  .service-listing-section .service-card p,
  .service-listing-section .service-card .muted.small {
    min-height: 0 !important;
  }
}

/* Home View all buttons: compact premium CTA with shine hover. */
.home-services-section .section-head-row__btn,
.home-blog-section .text-center .btn-outline,
.home-gallery .btn-gallery {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  min-height: 40px !important;
  padding: 9px 18px !important;
  border: 1px solid rgba(122, 31, 31, 0.18) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #fff7e8, #fff) !important;
  color: #651818 !important;
  box-shadow: 0 8px 20px rgba(90, 26, 26, 0.10) !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease !important;
}

.home-services-section .section-head-row__btn::before,
.home-blog-section .text-center .btn-outline::before,
.home-gallery .btn-gallery::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  background: linear-gradient(135deg, #7a1f1f, #c97000) !important;
  opacity: 0 !important;
  transition: opacity .2s ease !important;
}

.home-services-section .section-head-row__btn::after,
.home-blog-section .text-center .btn-outline::after,
.home-gallery .btn-gallery::after {
  content: "" !important;
  position: absolute !important;
  top: -40% !important;
  left: -80% !important;
  width: 42% !important;
  height: 180% !important;
  transform: rotate(22deg) !important;
  background: rgba(255, 255, 255, 0.38) !important;
  transition: left .45s ease !important;
}

.home-services-section .section-head-row__btn:hover,
.home-blog-section .text-center .btn-outline:hover,
.home-gallery .btn-gallery:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(201, 112, 0, 0.36) !important;
  color: #fff !important;
  box-shadow: 0 13px 28px rgba(122, 31, 31, 0.18) !important;
}

.home-services-section .section-head-row__btn:hover::before,
.home-blog-section .text-center .btn-outline:hover::before,
.home-gallery .btn-gallery:hover::before {
  opacity: 1 !important;
}

.home-services-section .section-head-row__btn:hover::after,
.home-blog-section .text-center .btn-outline:hover::after,
.home-gallery .btn-gallery:hover::after {
  left: 125% !important;
}

/* Home hero title: larger and stronger, still responsive on phone. */
.hero-content h1 {
  font-size: clamp(2.65rem, 6.6vw, 5.9rem) !important;
  line-height: 1.03 !important;
  letter-spacing: 0 !important;
  margin-bottom: 14px !important;
  color: #ffe7a3 !important;
  transform: perspective(800px) translateZ(16px) !important;
  text-shadow:
    0 1px 0 #b87500,
    0 2px 0 #8c4f00,
    0 4px 10px rgba(0, 0, 0, 0.88),
    0 0 14px rgba(255, 231, 163, 0.92),
    0 0 30px rgba(240, 138, 0, 0.78),
    0 0 52px rgba(255, 200, 70, 0.46) !important;
  animation: heroTitleGoldPulse 2.4s ease-in-out infinite alternate !important;
}

@keyframes heroTitleGoldPulse {
  from {
    filter: brightness(1) saturate(1.05);
    text-shadow:
      0 1px 0 #b87500,
      0 2px 0 #8c4f00,
      0 4px 10px rgba(0, 0, 0, 0.88),
      0 0 12px rgba(255, 231, 163, 0.82),
      0 0 24px rgba(240, 138, 0, 0.62),
      0 0 42px rgba(255, 200, 70, 0.34);
  }
  to {
    filter: brightness(1.12) saturate(1.16);
    text-shadow:
      0 1px 0 #d28a00,
      0 3px 0 #8c4f00,
      0 6px 14px rgba(0, 0, 0, 0.92),
      0 0 18px rgba(255, 242, 190, 1),
      0 0 38px rgba(240, 138, 0, 0.86),
      0 0 68px rgba(255, 200, 70, 0.56);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: clamp(2.15rem, 11vw, 3.35rem) !important;
    line-height: 1.08 !important;
  }
}

/* About page styles moved from about.css */
/* About page: profile story layout */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 92px) 0;
  background:
    linear-gradient(90deg, #fff8ec 0%, #fff 46%, #eef8f3 100%);
  border-bottom: 1px solid rgba(27, 68, 52, 0.10);
  text-align: left;
}

.about-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(122, 31, 31, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 38px rgba(255, 236, 197, 0.55);
}

.about-hero .container,
.about-detail__grid,
.about-online-box,
.about-process__grid {
  width: min(100% - 32px, 1120px);
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 7px 11px;
  border-left: 3px solid #7a1f1f;
  background: #fff;
  color: #7a1f1f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(90, 26, 26, 0.07);
}

.about-hero h1 {
  max-width: 760px;
  margin: 0 0 10px;
  color: #173c2d;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  line-height: 1.02;
}

.about-hero p {
  margin: 0;
  color: #8d4f00;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 800;
}

.about-detail {
  padding: clamp(42px, 6vw, 78px) 0;
  background: #fff;
}

.about-detail__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.about-detail__media {
  position: relative;
  padding-bottom: 66px;
}

.about-detail__media::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 28px;
  width: 78%;
  height: calc(100% - 78px);
  background: #eef8f3;
  border-radius: 0 52px 0 52px;
}

.about-detail .about-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 86%;
  min-height: 480px;
  object-fit: cover;
  border-radius: 0 64px 0 64px;
  box-shadow: 0 24px 50px rgba(23, 60, 45, 0.18);
}

.about-detail__badge {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(260px, 72%);
  padding: 18px 20px;
  background: #7a1f1f;
  color: #fff;
  box-shadow: 0 18px 34px rgba(122, 31, 31, 0.22);
}

.about-detail__badge strong,
.about-detail__badge span {
  display: block;
}

.about-detail__badge strong {
  color: #ffe1a5;
  font-size: 1.28rem;
  line-height: 1.2;
}

.about-detail__badge span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 700;
}

.about-detail__badge .about-detail__badge-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 8px;
  padding: 4px 8px;
  background: rgba(255, 225, 165, 0.16);
  color: #ffe1a5;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-detail__content {
  padding-top: 10px;
}

.about-online-section {
  padding: 0 0 clamp(36px, 5vw, 58px);
  background: #fff;
}

.about-online-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border: 1px solid rgba(122, 31, 31, 0.14);
  border-left: 4px solid #7a1f1f;
  background: #fff8ec;
  box-shadow: 0 14px 28px rgba(23, 60, 45, 0.08);
}

.about-online-box i {
  flex: 0 0 auto;
  color: #7a1f1f;
  font-size: 1.1rem;
}

.about-online-box p {
  margin: 0;
  color: #46382f;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.about-online-box strong {
  color: #7a1f1f;
}

.about-detail__kicker {
  color: #a35d00;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-detail__content .section__title {
  margin: 9px 0 10px;
  text-align: left;
  color: #173c2d;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
}

.about-detail__content .lead {
  margin: 0 0 18px;
  color: #7a1f1f;
  font-weight: 800;
}

.about-bio {
  max-width: 72ch;
  color: #46382f;
  font-size: 1rem;
  line-height: 1.88;
}

.about-bio p {
  margin: 0;
}

.about-trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.about-trust-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  border-bottom: 2px solid #d9f1e7;
  background: #fbfffd;
  color: #235342;
  font-size: 0.82rem;
  font-weight: 800;
}

.about-trust-list i {
  color: #0f9f70;
}

.about-detail .stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 24px;
}

.about-detail .stat-row div {
  padding: 0 18px 0 0;
  border-right: 1px solid #ead8bd;
}

.about-detail .stat-row div + div {
  padding-left: 18px;
}

.about-detail .stat-row div:last-child {
  border-right: 0;
}

.about-detail .stat-row strong {
  display: block;
  color: #7a1f1f;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1;
}

.about-detail .stat-row span {
  display: block;
  margin-top: 6px;
  color: #5d5149;
  font-size: 0.8rem;
  font-weight: 800;
}

.about-detail .about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-detail .about-cta-row .btn {
  min-height: 46px;
  border-radius: 4px;
}

.about-process {
  padding: clamp(36px, 5vw, 64px) 0;
  background: linear-gradient(90deg, #173c2d, #235342);
  color: #fff;
}

.about-process__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 4vw, 50px);
  align-items: start;
}

.about-process__label {
  display: block;
  margin-bottom: 8px;
  color: #ffe1a5;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-process h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.about-process__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-process__steps article {
  padding: 18px;
  border: 1px solid rgba(255, 225, 165, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.about-process__steps span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: #ffe1a5;
  color: #173c2d;
  font-weight: 900;
}

.about-process__steps h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1rem;
}

.about-process__steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about-detail__grid,
  .about-process__grid {
    grid-template-columns: 1fr;
  }

  .about-detail__media {
    width: min(100%, 480px);
    margin: 0 auto;
  }

  .about-detail .about-photo {
    width: 90%;
    min-height: 420px;
  }

}

@media (max-width: 560px) {
  .about-hero .container,
  .about-detail__grid,
  .about-online-box,
  .about-process__grid {
    width: min(100% - 24px, 1120px);
  }

  .about-hero {
    padding: 42px 0;
    text-align: center;
  }

  .about-hero__eyebrow {
    border-left: 0;
  }

  .about-detail {
    padding: 34px 0 42px;
  }

  .about-detail__media {
    padding-bottom: 54px;
  }

  .about-detail .about-photo {
    width: 92%;
    min-height: 330px;
    border-radius: 0 42px 0 42px;
  }

  .about-online-box {
    align-items: flex-start;
    padding: 14px 16px;
  }

  .about-detail .about-detail__badge {
    width: min(240px, 78%);
    padding: 14px 16px;
  }

  .about-detail__content .section__title,
  .about-detail__content .lead,
  .about-detail__kicker {
    text-align: center;
  }

  .about-trust-list,
  .about-detail .stat-row,
  .about-process__steps {
    grid-template-columns: 1fr;
  }

  .about-detail .stat-row div {
    border-right: 0;
    border-bottom: 1px solid #ead8bd;
  }

  .about-detail .stat-row div:last-child {
    border-bottom: 0;
  }

  .about-detail .stat-row div,
  .about-detail .stat-row div + div {
    padding: 13px 0;
    text-align: center;
  }

  .about-detail .about-cta-row .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Final home About layout: keep photo, content, and form in one line on wider screens. */
.home-about-section > .section__title,
body:has(.hero) > main > .section--alt:first-of-type > .section__title {
  width: min(100% - 20px, 1320px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: clamp(24px, 3vw, 38px) !important;
  text-align: left !important;
}

.home-about-section .home-about-media,
body:has(.hero) > main > .section--alt:first-of-type .home-about-media {
  top: auto !important;
  margin-top: -18px !important;
  padding: 0 0 54px !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.home-about-section .home-about-card .lead,
body:has(.hero) > main > .section--alt:first-of-type .home-about-card .lead {
  font-size: clamp(0.82rem, 0.9vw, 0.95rem) !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  opacity: 0.86 !important;
}

.home-about-section .home-about-card .heading,
body:has(.hero) > main > .section--alt:first-of-type .home-about-card .heading {
  font-size: clamp(1.05rem, 1.25vw, 1.45rem) !important;
  line-height: 1.18 !important;
}

@media (min-width: 700px) {
  .home-about-section .container.two-col,
  body:has(.hero) > main > .section--alt:first-of-type .container.two-col {
    display: grid !important;
    width: min(100% - 20px, 1320px) !important;
    max-width: 1320px !important;
    grid-template-columns: minmax(170px, 0.72fr) minmax(280px, 1.2fr) minmax(220px, 0.86fr) !important;
    gap: clamp(10px, 1.7vw, 28px) !important;
    align-items: start !important;
  }

  .home-about-section .container.two-col > div,
  .home-about-section .home-about-card,
  .home-about-section .home-about-form,
  body:has(.hero) > main > .section--alt:first-of-type .container.two-col > div,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-card,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-form {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .home-about-section .home-about-media,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-media {
    margin-top: -28px !important;
  }
}

@media (max-width: 699px) {
  .home-about-section {
    overflow-x: hidden !important;
  }

  .home-about-section .container.two-col {
    display: grid !important;
    grid-template-columns: 190px 310px 250px !important;
    gap: 12px !important;
    width: calc(100% - 18px) !important;
    max-width: none !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    align-items: start !important;
    padding-bottom: 10px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .home-about-section .container.two-col > div,
  .home-about-section .home-about-card,
  .home-about-section .home-about-form {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  body:has(.hero) > main > .section--alt:first-of-type .container.two-col {
    grid-template-columns: 190px 310px 250px !important;
  }

  .home-about-section .home-about-media,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-media {
    margin-top: -10px !important;
  }
}

/* Final site fit pass: home About, header, and footer alignment. */
.home-about-section {
  overflow: hidden !important;
  background: #fffaf2 !important;
}

.home-about-section > .section__title {
  width: min(100% - 28px, 1320px) !important;
  margin: 0 auto clamp(22px, 2.8vw, 34px) !important;
  text-align: left !important;
}

.home-about-section .container.two-col {
  display: grid !important;
  width: min(100% - 28px, 1320px) !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
  grid-template-columns: minmax(230px, .86fr) minmax(340px, 1.18fr) minmax(270px, .92fr) !important;
  gap: clamp(16px, 2vw, 30px) !important;
  align-items: start !important;
  text-align: left !important;
}

.home-about-section .container.two-col > * {
  min-width: 0 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.home-about-section .home-about-media {
  position: relative !important;
  align-self: stretch !important;
  min-height: 0 !important;
  padding: 0 0 58px !important;
  margin: 0 !important;
  top: auto !important;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.home-about-section .home-about-media::before {
  content: "" !important;
  position: absolute !important;
  z-index: 0 !important;
  left: 0 !important;
  top: 24px !important;
  width: 76% !important;
  height: calc(100% - 86px) !important;
  background: #eef8f3 !important;
  border-radius: 0 42px 0 42px !important;
}

.home-about-section .home-about-photo {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  width: calc(100% - 34px) !important;
  max-width: none !important;
  height: clamp(360px, 31vw, 500px) !important;
  min-height: 0 !important;
  margin: 0 34px 0 0 !important;
  object-fit: cover !important;
  object-position: center top !important;
  border: 0 !important;
  border-radius: 0 52px 0 52px !important;
  box-shadow: 0 20px 42px rgba(23, 60, 45, .16) !important;
  transform: none !important;
}

.home-about-section .home-about-photo-badge {
  position: absolute !important;
  z-index: 2 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: min(245px, 78%) !important;
  padding: 14px 16px !important;
  background: #7a1f1f !important;
  color: #fff !important;
  box-shadow: 0 16px 30px rgba(122, 31, 31, .22) !important;
}

.home-about-section .home-about-photo-badge span,
.home-about-section .home-about-photo-badge strong {
  display: block !important;
}

.home-about-section .home-about-photo-badge span {
  margin: 0 0 7px !important;
  color: rgba(255, 255, 255, .86) !important;
  font-size: .76rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.home-about-section .home-about-photo-badge strong {
  color: #ffe1a5 !important;
  font-size: clamp(.98rem, 1.15vw, 1.18rem) !important;
  line-height: 1.25 !important;
}

.home-about-section .home-about-card {
  padding-top: 2px !important;
}

.home-about-section .home-about-card .heading {
  font-size: clamp(1.28rem, 1.65vw, 1.86rem) !important;
  line-height: 1.18 !important;
}

.home-about-section .home-kaal-sarp-note,
.home-about-section .about-preview,
.home-about-section .online-puja-note p {
  font-size: clamp(.82rem, .88vw, .96rem) !important;
  line-height: 1.58 !important;
}

.home-about-section .online-puja-note {
  grid-template-columns: 34px minmax(0, 1fr) !important;
  gap: 10px !important;
  padding: 12px !important;
  margin: 14px 0 !important;
}

.home-about-section .online-puja-note i {
  width: 34px !important;
  height: 34px !important;
}

.home-about-section .stat-row {
  gap: 9px !important;
  margin: 16px 0 8px !important;
}

.home-about-section .stat-row div {
  padding: 11px 8px !important;
  border-radius: 10px !important;
}

.home-about-section .stat-row strong {
  font-size: clamp(1.05rem, 1.15vw, 1.28rem) !important;
}

.home-about-section .about-cta-row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.home-about-section .about-cta-row .btn-call,
.home-about-section .about-cta-row .btn-wa {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 40px !important;
  padding: 9px 10px !important;
  border-radius: 10px !important;
  white-space: nowrap !important;
}

.home-about-section .home-about-form .form-card {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  padding: clamp(14px, 1.6vw, 20px) !important;
  border-radius: 12px !important;
  transform: none !important;
}

.home-about-section .form-card input,
.home-about-section .form-card textarea,
.home-about-section .captcha-box {
  margin-bottom: 10px !important;
  font-size: .9rem !important;
}

.home-about-section .form-card textarea {
  min-height: 84px !important;
  resize: vertical !important;
}

@media (min-width: 1181px) and (max-width: 1320px) {
  .home-about-section .container.two-col {
    grid-template-columns: minmax(210px, .82fr) minmax(320px, 1.16fr) minmax(250px, .9fr) !important;
    gap: 16px !important;
  }

  .home-about-section .home-about-photo {
    height: clamp(340px, 30vw, 430px) !important;
  }
}

@media (max-width: 1180px) {
  .home-about-section .container.two-col {
    width: min(100% - 20px, 980px) !important;
    max-width: none !important;
    grid-template-columns: minmax(185px, .78fr) minmax(300px, 1.18fr) minmax(220px, .88fr) !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    overscroll-behavior-inline: contain !important;
    scroll-snap-type: x proximity !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 10px !important;
  }

  .home-about-section .container.two-col > * {
    scroll-snap-align: start !important;
  }

  .home-about-section .home-about-photo {
    width: calc(100% - 22px) !important;
    height: 330px !important;
    margin-right: 22px !important;
    border-radius: 0 38px 0 38px !important;
  }

  .home-about-section .home-about-media {
    padding-bottom: 52px !important;
  }

  .home-about-section .home-about-photo-badge {
    width: min(218px, 82%) !important;
    padding: 12px 13px !important;
  }

  .home-about-section .home-about-card .heading {
    font-size: 1.28rem !important;
  }

  .home-about-section .home-kaal-sarp-note,
  .home-about-section .about-preview,
  .home-about-section .online-puja-note p {
    font-size: .82rem !important;
    line-height: 1.48 !important;
  }
}

@media (max-width: 699px) {
  .home-about-section {
    overflow-x: hidden !important;
  }

  .home-about-section > .section__title {
    width: min(100% - 20px, 560px) !important;
    text-align: center !important;
  }

  .home-about-section .container.two-col {
    grid-template-columns: minmax(180px, 44vw) minmax(288px, 74vw) minmax(246px, 64vw) !important;
    width: calc(100% - 14px) !important;
    gap: 10px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .home-about-section .home-about-photo {
    height: clamp(250px, 72vw, 330px) !important;
  }

  .home-about-section .stat-row {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .home-about-section .stat-row strong {
    font-size: .98rem !important;
  }

  .home-about-section .stat-row span {
    font-size: .66rem !important;
  }

  .home-about-section .about-cta-row {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 380px) {
  .home-about-section .container.two-col {
    grid-template-columns: 170px 276px 232px !important;
  }
}

@media (max-width: 900px) {
  .topbar {
    padding: 0 !important;
    overflow: hidden !important;
  }

  .topbar__row {
    width: 100% !important;
    min-height: 36px !important;
    padding: 4px 10px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px !important;
  }

  .topbar__left,
  .topbar__right {
    min-width: 0 !important;
    gap: 8px !important;
  }

  .topbar__left .topbar__link[href^="mailto:"],
  .topbar__left .topbar__link[href^="tel:"] {
    display: none !important;
  }

  .topbar__tagline {
    display: block !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .nav {
    box-shadow: 0 8px 22px rgba(90, 26, 26, .14) !important;
  }

  .nav__row {
    width: 100% !important;
    min-height: 58px !important;
    padding: 6px 10px !important;
    gap: 8px !important;
  }

  .brand {
    min-width: 0 !important;
    max-width: calc(100% - 50px) !important;
  }

  .brand img {
    width: min(64vw, 230px) !important;
    height: 46px !important;
    max-height: 46px !important;
  }

  .nav__burger {
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px !important;
    border-radius: 6px !important;
  }

  .nav__menu {
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: calc(100vh - 96px) !important;
    overflow-y: auto !important;
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
  }
}

@media (max-width: 430px) {
  .topbar__right {
    max-width: 56vw !important;
  }

  .google-translate-wrap {
    max-width: 70px !important;
  }

  #google_translate_element .goog-te-gadget .goog-te-combo {
    max-width: 62px !important;
    width: 62px !important;
  }

  .topbar__link--cta {
    padding: 2px 7px !important;
  }

  .brand img {
    width: min(60vw, 205px) !important;
  }
}

@media (max-width: 900px) {
  .footer__grid {
    width: min(100% - 20px, 720px) !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    text-align: center !important;
  }

  .footer .brand,
  .footer .brand__txt,
  .footer h4,
  .footer__links,
  .footer .social {
    text-align: center !important;
    justify-content: center !important;
  }

  .footer__links a,
  .footer__link {
    justify-content: center !important;
  }

  .footer h4::after {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer__bar {
    width: min(100% - 20px, 720px) !important;
  }
}

/* Admin-style full bleed header/footer: no left-right container padding. */
.topbar__row,
.nav__row,
.footer__grid,
.footer__bar {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.topbar__row,
.nav__row,
.footer__grid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.footer {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.footer__bar {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.footer__bar .container {
  width: 100% !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Home About photo: match the About page portrait treatment. */
.home-about-section .home-about-media {
  position: relative !important;
  top: auto !important;
  align-self: start !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 0 66px !important;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: none !important;
}

.home-about-section .home-about-media::before {
  content: "" !important;
  position: absolute !important;
  z-index: 0 !important;
  left: -18px !important;
  top: 28px !important;
  width: 78% !important;
  height: calc(100% - 78px) !important;
  background: #eef8f3 !important;
  border-radius: 0 52px 0 52px !important;
}

.home-about-section .home-about-photo {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  width: 86% !important;
  max-width: none !important;
  min-height: 480px !important;
  height: auto !important;
  aspect-ratio: 4 / 5 !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center top !important;
  border: 0 !important;
  border-radius: 0 64px 0 64px !important;
  box-shadow: 0 24px 50px rgba(23, 60, 45, 0.18) !important;
  transform: none !important;
}

.home-about-section .home-about-photo-badge {
  position: absolute !important;
  z-index: 2 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: min(260px, 72%) !important;
  padding: 18px 20px !important;
  background: #7a1f1f !important;
  color: #fff !important;
  box-shadow: 0 18px 34px rgba(122, 31, 31, 0.22) !important;
}

.home-about-section .home-about-photo-badge span,
.home-about-section .home-about-photo-badge strong {
  display: block !important;
}

.home-about-section .home-about-photo-badge span {
  margin: 0 0 6px !important;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.home-about-section .home-about-photo-badge strong {
  color: #ffe1a5 !important;
  font-size: 1.28rem !important;
  line-height: 1.2 !important;
}

@media (max-width: 1180px) {
  .home-about-section .home-about-photo {
    width: 90% !important;
    min-height: 420px !important;
    border-radius: 0 52px 0 52px !important;
  }
}

@media (max-width: 699px) {
  .home-about-section .home-about-media {
    padding-bottom: 54px !important;
  }

  .home-about-section .home-about-photo {
    width: 92% !important;
    min-height: 330px !important;
    border-radius: 0 42px 0 42px !important;
  }

  .home-about-section .home-about-photo-badge {
    width: min(240px, 78%) !important;
    padding: 14px 16px !important;
  }

  .home-about-section .home-about-photo-badge strong {
    font-size: 1.05rem !important;
  }
}

/* Home About photo hover: same feel as the About page portrait. */
@media (hover: hover) and (pointer: fine) {
  .home-about-section .home-about-media {
    transform-style: preserve-3d !important;
    backface-visibility: hidden !important;
    transition:
      transform 0.28s ease,
      box-shadow 0.28s ease,
      filter 0.28s ease !important;
    will-change: transform !important;
  }

  .home-about-section .home-about-photo {
    transition:
      transform 0.32s ease,
      filter 0.32s ease !important;
    transform-origin: center !important;
  }

  .home-about-section .home-about-media:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg) translateZ(18px) !important;
    filter: drop-shadow(0 24px 42px rgba(90, 26, 26, 0.14)) !important;
  }

  .home-about-section .home-about-media:hover .home-about-photo {
    transform: scale(1.045) translateZ(16px) !important;
    filter: brightness(1.04) saturate(1.04) !important;
  }
}

/* Keep header desktop-style on tablets and larger screens. */
@media (min-width: 769px) {
  .nav__burger {
    display: none !important;
  }

  .nav__row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    min-height: 66px !important;
    gap: clamp(8px, 1vw, 16px) !important;
  }

  .brand {
    flex: 0 0 auto !important;
    max-width: none !important;
  }

  .brand img {
    width: clamp(165px, 18vw, 240px) !important;
    height: 58px !important;
    max-height: 58px !important;
  }

  .nav__menu {
    display: flex !important;
    position: static !important;
    flex: 1 1 auto !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    gap: clamp(3px, 0.45vw, 7px) !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .nav__menu > a,
  .nav__item > a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-height: 34px !important;
    padding: 6px clamp(5px, .55vw, 9px) !important;
    border: 1px solid rgba(122, 31, 31, .10) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .72) !important;
    box-shadow: 0 6px 16px rgba(122, 31, 31, .07) !important;
    color: var(--ink) !important;
    font-size: clamp(.62rem, .82vw, .82rem) !important;
    font-weight: 600 !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  .nav__menu i {
    display: none !important;
  }

  .nav__item {
    width: auto !important;
  }

  .dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    display: block !important;
    min-width: 240px !important;
    max-height: 70vh !important;
    overflow-y: auto !important;
    margin: 0 !important;
    padding: 8px 0 !important;
    border-top: 3px solid var(--saffron) !important;
    border-radius: 0 0 10px 10px !important;
    background: #fff !important;
    box-shadow: 0 8px 24px rgba(122, 31, 31, .15) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(8px) !important;
    pointer-events: none !important;
  }

  .nav__item:hover > .dropdown,
  .nav__item:focus-within > .dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  .dropdown a {
    display: block !important;
    padding: 10px 18px !important;
    font-size: .9rem !important;
    white-space: nowrap !important;
  }
}

@media (min-width: 769px) and (max-width: 980px) {
  .brand img {
    width: clamp(135px, 16vw, 170px) !important;
  }

  .nav__menu {
    gap: 2px !important;
  }

  .nav__menu > a,
  .nav__item > a {
    min-height: 30px !important;
    padding: 5px 4px !important;
    font-size: clamp(.52rem, .68vw, .66rem) !important;
  }
}

/* Mobile home About: stacked columns with enquiry button at 768px and below. */
.home-about-section .home-about-form > .home-enquiry-trigger {
  display: none !important;
}

@media (max-width: 768px) {
  .home-about-section {
    padding: 42px 0 !important;
    overflow: hidden !important;
  }

  .home-about-section > .section__title {
    width: min(100% - 24px, 560px) !important;
    margin: 0 auto 22px !important;
    text-align: center !important;
  }

  .home-about-section .container.two-col {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: min(100% - 24px, 560px) !important;
    max-width: 560px !important;
    gap: 22px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
    overflow: visible !important;
    text-align: center !important;
  }

  .home-about-section .container.two-col > *,
  .home-about-section .home-about-card,
  .home-about-section .home-about-form {
    width: 100% !important;
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-about-section .home-about-media {
    width: min(100%, 430px) !important;
    max-width: 430px !important;
    padding-bottom: 56px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-about-section .home-about-media::before {
    left: -10px !important;
    top: 22px !important;
    width: 76% !important;
    height: calc(100% - 72px) !important;
    border-radius: 0 42px 0 42px !important;
  }

  .home-about-section .home-about-photo {
    width: 90% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    max-height: 430px !important;
    border-radius: 0 44px 0 44px !important;
  }

  .home-about-section .home-about-photo-badge {
    width: min(235px, 78%) !important;
    padding: 14px 15px !important;
    text-align: left !important;
  }

  .home-about-section .home-about-photo-badge span {
    font-size: .78rem !important;
  }

  .home-about-section .home-about-photo-badge strong {
    font-size: 1.04rem !important;
  }

  .home-about-section .home-about-card {
    text-align: left !important;
  }

  .home-about-section .home-about-card .heading,
  .home-about-section .home-about-card .lead {
    text-align: center !important;
  }

  .home-about-section .home-about-card .heading {
    font-size: clamp(1.35rem, 6vw, 1.85rem) !important;
  }

  .home-about-section .home-kaal-sarp-note,
  .home-about-section .about-preview {
    font-size: .9rem !important;
    line-height: 1.62 !important;
  }

  .home-about-section .online-puja-note {
    grid-template-columns: 34px minmax(0, 1fr) !important;
    text-align: left !important;
  }

  .home-about-section .stat-row {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .home-about-section .stat-row div {
    padding: 10px 6px !important;
  }

  .home-about-section .stat-row strong {
    font-size: clamp(1rem, 4.5vw, 1.2rem) !important;
  }

  .home-about-section .about-cta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-about-section .home-about-form {
    display: block !important;
    text-align: center !important;
  }

  .home-about-section .home-about-form > .home-enquiry-trigger {
    display: inline-flex !important;
    width: min(100%, 360px) !important;
    min-height: 46px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 0 auto !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #f08a00, #c97000) !important;
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(122, 31, 31, .16) !important;
    font-weight: 800 !important;
  }

  .home-about-section .home-about-form .form-card {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .home-about-section .container.two-col {
    width: min(100% - 18px, 560px) !important;
  }

  .home-about-section .about-cta-row {
    grid-template-columns: 1fr !important;
  }

  .home-about-section .stat-row span {
    font-size: .64rem !important;
  }
}

/* Final home page fit: no side padding, taller large-screen presence. */
body:has(.hero) main > .section,
body:has(.hero) .home-about-section,
body:has(.hero) .home-services-section,
body:has(.hero) .home-gallery,
body:has(.hero) .home-blog-section,
body:has(.hero) .home-faq {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body:has(.hero) main > .section > .container,
body:has(.hero) .home-about-section > .section__title,
body:has(.hero) .home-about-section .container.two-col,
body:has(.hero) .home-faq__wrap {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (min-width: 1200px) {
  body:has(.hero) .hero {
    height: 92vh !important;
    min-height: 720px !important;
  }

  body:has(.hero) main > .section {
    padding-top: 78px !important;
    padding-bottom: 78px !important;
  }

  body:has(.hero) .home-about-section .home-about-photo {
    min-height: 540px !important;
  }
}

@media (min-width: 1600px) {
  body:has(.hero) .hero {
    height: 94vh !important;
    min-height: 820px !important;
  }

  body:has(.hero) main > .section {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }

  body:has(.hero) .home-about-section .home-about-photo {
    min-height: 620px !important;
  }
}

@media not all {
/* Legacy header/footer overrides moved to static/css/header.css and static/css/footer.css. */
/* Final header lock: desktop navigation from 769px upward. */
@media (min-width: 769px) {
  .nav__burger {
    display: none !important;
  }

  .nav__row {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }

  .nav__menu {
    display: flex !important;
    position: static !important;
    flex: 1 1 auto !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav__menu > a,
  .nav__item > a {
    display: inline-flex !important;
    width: auto !important;
    white-space: nowrap !important;
    border-radius: 999px !important;
  }
}

/* Final global gutter + tablet/desktop header correction. */
:root {
  --page-gutter: clamp(10px, 1.1vw, 22px);
}

body {
  padding-left: var(--page-gutter) !important;
  padding-right: var(--page-gutter) !important;
}

.topbar,
.nav,
.footer {
  margin-left: calc(-1 * var(--page-gutter)) !important;
  margin-right: calc(-1 * var(--page-gutter)) !important;
  padding-left: var(--page-gutter) !important;
  padding-right: var(--page-gutter) !important;
}

main {
  width: 100% !important;
}

@media (min-width: 769px) {
  .nav__burger,
  #navBurger {
    display: none !important;
    visibility: hidden !important;
  }

  .nav__row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
  }

  .nav__menu,
  #navMenu {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    overflow: visible !important;
    transform: none !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
}

@media (max-width: 768px) {
  .nav__burger,
  #navBurger {
    display: flex !important;
    visibility: visible !important;
  }
}

/* Screenshot match pass: desktop header from 769px and photo layer fix. */
.home-about-section .home-about-media {
  isolation: isolate !important;
  z-index: 0 !important;
}

.home-about-section .home-about-media::before,
body:has(.hero) > main > .section--alt:first-of-type .home-about-media::before {
  z-index: -1 !important;
  pointer-events: none !important;
}

.home-about-section .home-about-photo,
body:has(.hero) > main > .section--alt:first-of-type .home-about-photo {
  position: relative !important;
  z-index: 2 !important;
}

.home-about-section .home-about-photo-badge,
body:has(.hero) > main > .section--alt:first-of-type .home-about-photo-badge {
  z-index: 4 !important;
}

@media (min-width: 769px) {
  .topbar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: visible !important;
    font-size: 0.92rem !important;
  }

  .topbar__row {
    width: 100% !important;
    min-height: 40px !important;
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 18px !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .topbar__left,
  .topbar__right {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 18px !important;
    min-width: 0 !important;
    max-width: none !important;
    overflow: visible !important;
  }

  .topbar__left {
    flex: 1 1 auto !important;
  }

  .topbar__right {
    flex: 0 0 auto !important;
  }

  .topbar__tagline,
  .topbar__link,
  .google-translate-wrap {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    font-size: inherit !important;
    line-height: 1.3 !important;
  }

  .topbar__left .topbar__link[href^="mailto:"],
  .topbar__left .topbar__link[href^="tel:"],
  .topbar__right .topbar__link {
    display: inline-flex !important;
  }

  .google-translate-wrap {
    max-width: none !important;
    margin-right: 10px !important;
  }

  #google_translate_element .goog-te-gadget .goog-te-combo {
    width: 200px !important;
    max-width: 200px !important;
    min-height: 34px !important;
    padding: 5px 12px !important;
    font-size: 0.9rem !important;
  }

  .nav {
    overflow: visible !important;
  }

  .nav__row {
    width: 100% !important;
    min-height: 106px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: clamp(12px, 2vw, 28px) !important;
    position: relative !important;
    overflow: visible !important;
  }

  .brand {
    flex: 0 0 auto !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .brand img {
    width: clamp(215px, 20vw, 285px) !important;
    height: 72px !important;
    max-height: 72px !important;
    object-fit: contain !important;
  }

  .nav__burger,
  #navBurger {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .nav__menu,
  #navMenu {
    display: flex !important;
    position: static !important;
    flex: 1 1 auto !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    gap: clamp(5px, .62vw, 10px) !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    transform: none !important;
  }

  .nav__menu > a,
  .nav__item > a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-height: 46px !important;
    padding: 10px clamp(8px, .72vw, 14px) !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow: 0 12px 26px rgba(70, 34, 18, .08) !important;
    color: #1d1410 !important;
    font-size: clamp(.72rem, .82vw, .92rem) !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  .nav__menu > a.is-active,
  .nav__menu > a:hover,
  .nav__item > a:hover,
  .nav__dropdown-toggle.is-active {
    color: var(--maroon) !important;
    background: #fff7e8 !important;
    box-shadow: 0 0 0 2px rgba(240, 138, 0, .18), 0 12px 26px rgba(70, 34, 18, .08) !important;
  }

  .nav__menu i {
    display: none !important;
  }

  .nav__item {
    width: auto !important;
    position: relative !important;
  }

  .dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    display: block !important;
    min-width: 240px !important;
    max-height: 70vh !important;
    overflow-y: auto !important;
    margin: 0 !important;
    padding: 8px 0 !important;
    border-top: 3px solid var(--saffron) !important;
    border-radius: 0 0 10px 10px !important;
    background: #fff !important;
    box-shadow: 0 8px 24px rgba(122, 31, 31, .15) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(8px) !important;
    pointer-events: none !important;
  }

  .nav__item:hover > .dropdown,
  .nav__item:focus-within > .dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .topbar {
    font-size: clamp(.7rem, 1.15vw, .86rem) !important;
  }

  .topbar__row,
  .topbar__left,
  .topbar__right {
    gap: 8px !important;
  }

  #google_translate_element .goog-te-gadget .goog-te-combo {
    width: clamp(130px, 18vw, 190px) !important;
    max-width: clamp(130px, 18vw, 190px) !important;
  }

  .nav__row {
    min-height: 92px !important;
    gap: 8px !important;
  }

  .brand img {
    width: clamp(160px, 22vw, 240px) !important;
    height: 62px !important;
    max-height: 62px !important;
  }

  .nav__menu,
  #navMenu {
    gap: 3px !important;
  }

  .nav__menu > a,
  .nav__item > a {
    min-height: 38px !important;
    padding: 8px clamp(5px, .55vw, 9px) !important;
    font-size: clamp(.56rem, .9vw, .78rem) !important;
  }
}

/* Final correction: desktop header/footer from 769px, no overlap, no photo crop. */
@media (min-width: 769px) {
  .topbar__row,
  .nav__row,
  .footer__grid,
  .footer__bar {
    width: 100% !important;
    max-width: none !important;
  }

  .nav {
    background: #fff !important;
    overflow: visible !important;
  }

  .nav__row {
    min-height: 92px !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: clamp(190px, 18vw, 285px) minmax(0, 1fr) !important;
    align-items: center !important;
    gap: clamp(10px, 1.4vw, 24px) !important;
  }

  .brand {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  .brand img {
    width: 100% !important;
    height: clamp(54px, 5vw, 72px) !important;
    max-height: 72px !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  .nav__burger,
  #navBurger {
    display: none !important;
  }

  .nav__menu,
  #navMenu {
    display: flex !important;
    position: static !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    gap: clamp(3px, .45vw, 9px) !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav__menu > a,
  .nav__item > a {
    min-width: 0 !important;
    width: auto !important;
    min-height: 40px !important;
    padding: 8px clamp(6px, .62vw, 12px) !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow: 0 10px 22px rgba(70, 34, 18, .07) !important;
    color: #1d1410 !important;
    font-size: clamp(.58rem, .82vw, .88rem) !important;
    font-weight: 700 !important;
    line-height: 1.12 !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  .nav__dropdown-toggle > span:first-child {
    min-width: 0 !important;
    white-space: nowrap !important;
  }

  .nav__menu > a.is-active,
  .nav__menu > a:hover,
  .nav__item > a:hover,
  .nav__dropdown-toggle.is-active {
    background: #fff7e8 !important;
    color: #7a1f1f !important;
    box-shadow: 0 0 0 2px rgba(240, 138, 0, .18), 0 10px 22px rgba(70, 34, 18, .07) !important;
  }

  .footer__grid {
    display: grid !important;
    grid-template-columns: minmax(260px, 1.35fr) minmax(170px, .9fr) minmax(170px, .9fr) minmax(230px, 1.15fr) !important;
    gap: clamp(22px, 3vw, 42px) !important;
    text-align: left !important;
    align-items: start !important;
  }

  .footer__col--brand {
    grid-column: auto !important;
  }

  .footer .brand,
  .footer .brand__txt,
  .footer h4,
  .footer__links,
  .footer .social {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .footer h4::after {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .footer__links a,
  .footer__link {
    justify-content: flex-start !important;
    text-align: left !important;
  }
}

@media (min-width: 769px) and (max-width: 1120px) {
  .nav__row {
    grid-template-columns: clamp(145px, 17vw, 205px) minmax(0, 1fr) !important;
    min-height: 82px !important;
    gap: 7px !important;
  }

  .nav__menu,
  #navMenu {
    gap: 2px !important;
  }

  .nav__menu > a,
  .nav__item > a {
    min-height: 34px !important;
    padding: 7px 4px !important;
    font-size: clamp(.48rem, .82vw, .7rem) !important;
    box-shadow: none !important;
  }
}

/* Header/footer final fit: scope brand rules and prevent nav overlap. */
@media (min-width: 769px) {
  .nav .nav__row {
    display: grid !important;
    grid-template-columns: clamp(170px, 18vw, 270px) minmax(0, 1fr) !important;
    column-gap: clamp(8px, 1vw, 18px) !important;
    min-height: clamp(76px, 7vw, 106px) !important;
    align-items: center !important;
    overflow: visible !important;
  }

  .nav .brand {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .nav .brand img {
    width: 100% !important;
    height: clamp(50px, 5vw, 72px) !important;
    max-height: 72px !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  .nav__menu,
  #navMenu {
    min-width: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(3px, .45vw, 8px) !important;
    overflow: visible !important;
  }

  .nav__menu > a,
  .nav__item > a {
    flex: 0 1 auto !important;
    min-width: max-content !important;
    max-width: none !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    line-height: 1.1 !important;
    min-height: 40px !important;
    padding: 8px clamp(6px, .6vw, 12px) !important;
    font-size: clamp(.58rem, .78vw, .9rem) !important;
  }

  .nav__dropdown-toggle > span:first-child,
  .nav__menu > a,
  .nav__item > a span {
    white-space: nowrap !important;
  }

  .footer .brand,
  .footer .brand--light {
    width: auto !important;
    max-width: 100% !important;
    justify-content: flex-start !important;
  }

  .footer .brand img,
  .footer .brand--light img {
    width: clamp(180px, 18vw, 260px) !important;
    height: auto !important;
    max-height: 72px !important;
    object-fit: contain !important;
    object-position: left center !important;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .nav .nav__row {
    grid-template-columns: clamp(124px, 15vw, 180px) minmax(0, 1fr) !important;
    column-gap: 5px !important;
    min-height: 76px !important;
  }

  .nav .brand img {
    height: clamp(44px, 5vw, 58px) !important;
  }

  .nav__menu,
  #navMenu {
    gap: 1px !important;
  }

  .nav__menu > a,
  .nav__item > a {
    min-height: 32px !important;
    padding: 6px 3px !important;
    font-size: clamp(.43rem, .73vw, .64rem) !important;
    box-shadow: none !important;
  }

  .nav__item > a .caret {
    margin-left: 2px !important;
    font-size: .82em !important;
  }
}

@media (min-width: 1181px) {
  .nav__menu > a,
  .nav__item > a {
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow: 0 10px 22px rgba(70, 34, 18, .07) !important;
  }
}

@media (max-width: 768px) {
  .footer .brand,
  .footer .brand--light {
    width: auto !important;
    justify-content: center !important;
  }

  .footer .brand img,
  .footer .brand--light img {
    width: min(64vw, 220px) !important;
    height: auto !important;
    max-height: 64px !important;
    object-fit: contain !important;
  }
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .footer .brand,
  .footer .brand__txt,
  .footer h4,
  .footer__links,
  .footer .social {
    justify-content: center !important;
    text-align: center !important;
  }

  .footer h4::after {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
}

/* Final non-header layout helpers. Header rules live in static/css/header.css. */
:root {
  --page-gutter: clamp(10px, 1.1vw, 22px);
}

body {
  padding-left: var(--page-gutter) !important;
  padding-right: var(--page-gutter) !important;
}

main {
  width: 100% !important;
}

/* ============================================================
   FIXED: Hero full-width + About photo mobile responsive
   ============================================================ */

/* Hero: body padding se jo side gap aa raha tha usse hataya */
.hero {
  margin-left: calc(-1 * var(--page-gutter, 12px)) !important;
  margin-right: calc(-1 * var(--page-gutter, 12px)) !important;
}

/* Site marquee bhi full width */
.site-marquee {
  margin-left: calc(-1 * var(--page-gutter, 12px)) !important;
  margin-right: calc(-1 * var(--page-gutter, 12px)) !important;
  width: calc(100% + 2 * var(--page-gutter, 12px)) !important;
}

/* About photo: object-fit cover rakha — photo full fill ho
   (contain se white gap aata tha, cover se theek dikhta hai) */
.home-about-section .home-about-photo,
body:has(.hero) > main > .section--alt:first-of-type .home-about-photo,
.about-detail .about-photo {
  object-fit: cover !important;
  object-position: top center !important;
  background: #f9f5ef !important;
}

/* Desktop (769px+): portrait ratio with proper dimensions */
@media (min-width: 769px) {
  .home-about-section .home-about-photo,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo {
    width: 86% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 5 !important;
    object-fit: cover !important;
    object-position: top center !important;
  }
}

/* Mobile (768px aur neeche): photo properly visible aur responsive */
@media (max-width: 768px) {
  /* About media wrapper: photo ke liye space aur badge ke liye padding */
  body:has(.hero) > main > .section--alt:first-of-type .home-about-media {
    max-width: 380px !important;
    width: 100% !important;
    margin: 0 auto 24px !important;
    padding-bottom: 64px !important;
    overflow: visible !important;
  }

  /* Photo: portrait ratio, cover, visible */
  .home-about-section .home-about-photo,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo {
    width: 88% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 4 / 5 !important;
    object-fit: cover !important;
    object-position: top center !important;
    display: block !important;
    visibility: visible !important;
    margin: 0 auto !important;
  }

  /* Badge: photo ke neeche theek se */
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo-badge {
    width: min(250px, 82%) !important;
    padding: 14px 16px !important;
    right: 0 !important;
    bottom: 0 !important;
  }

  /* ::before decorative background: mobile pe hide karo taaki photo dhake nahi */
  body:has(.hero) > main > .section--alt:first-of-type .home-about-media::before {
    display: none !important;
  }

  /* Two-col: single column, centered */
  body:has(.hero) > main > .section--alt:first-of-type .container.two-col {
    grid-template-columns: 1fr !important;
    width: min(100% - 22px, 500px) !important;
    align-items: center !important;
    text-align: center !important;
  }
}

/* Final home About photo sizing: stable portrait frame on every screen. */
.home-about-section .home-about-media {
  width: min(100%, 430px) !important;
  max-width: 430px !important;
  margin: 0 auto !important;
  padding-bottom: 74px !important;
}

.home-about-section .home-about-photo,
body:has(.hero) .home-about-section .home-about-photo,
body:has(.hero) > main > .section--alt:first-of-type .home-about-photo {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: 4 / 5 !important;
  object-fit: cover !important;
  object-position: top center !important;
  margin: 0 auto !important;
}

.home-about-section .home-about-photo-badge,
body:has(.hero) > main > .section--alt:first-of-type .home-about-photo-badge {
  right: 8px !important;
  bottom: 8px !important;
  width: min(270px, 82%) !important;
}

@media (min-width: 1200px) {
  .home-about-section .home-about-media {
    width: min(28vw, 430px) !important;
    max-width: 430px !important;
  }

  .home-about-section .home-about-photo,
  body:has(.hero) .home-about-section .home-about-photo,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
  }
}

@media (max-width: 768px) {
  .home-about-section .home-about-media,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-media {
    width: min(82vw, 260px) !important;
    max-width: 260px !important;
    padding-bottom: 46px !important;
  }

  .home-about-section .home-about-photo,
  body:has(.hero) .home-about-section .home-about-photo,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: 320px !important;
    aspect-ratio: 4 / 5 !important;
  }

  .home-about-section .home-about-photo-badge,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo-badge {
    right: 50% !important;
    bottom: 0 !important;
    width: min(245px, 84%) !important;
    transform: translateX(50%) !important;
  }
}

@media (max-width: 420px) {
  .home-about-section .home-about-media,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-media {
    width: min(78vw, 230px) !important;
    max-width: 230px !important;
    padding-bottom: 42px !important;
  }

  .home-about-section .home-about-photo,
  body:has(.hero) .home-about-section .home-about-photo,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo {
    max-height: 288px !important;
  }

  .home-about-section .home-about-photo-badge,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo-badge {
    width: min(210px, 88%) !important;
    padding: 10px 12px !important;
  }
}

/* Phone polish: compact notice line and smaller About portrait below 768px. */
@media (max-width: 768px) {
  .site-marquee {
    display: block !important;
    width: calc(100% + (2 * var(--page-gutter, 12px))) !important;
    margin-left: calc(-1 * var(--page-gutter, 12px)) !important;
    margin-right: calc(-1 * var(--page-gutter, 12px)) !important;
    padding: 7px 12px !important;
    min-height: 34px !important;
    line-height: 20px !important;
    font-size: .82rem !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
  }

  .home-about-section .home-about-media,
  body:has(.hero) .home-about-section .home-about-media,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-media {
    width: min(48vw, 150px) !important;
    max-width: 150px !important;
    padding-bottom: 30px !important;
    margin: 0 auto 14px !important;
  }

  .home-about-section .home-about-photo,
  body:has(.hero) .home-about-section .home-about-photo,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo {
    width: 100% !important;
    max-height: 188px !important;
    aspect-ratio: 4 / 5 !important;
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease !important;
  }

  .about-detail .about-detail__media {
    width: min(72vw, 230px) !important;
    max-width: 230px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-bottom: 40px !important;
  }

  .about-detail .about-photo {
    width: 100% !important;
    height: auto !important;
    max-height: 285px !important;
    aspect-ratio: 4 / 5 !important;
    object-fit: cover !important;
    object-position: top center !important;
  }

  .home-about-section .home-about-photo-badge,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo-badge,
  .about-detail .about-detail__badge {
    width: min(165px, 96%) !important;
    padding: 7px 8px !important;
    right: 50% !important;
    bottom: 0 !important;
    transform: translateX(50%) !important;
  }

  .home-about-section .home-about-photo-badge span,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo-badge span {
    font-size: .62rem !important;
  }

  .home-about-section .home-about-photo-badge strong,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo-badge strong {
    font-size: .74rem !important;
    line-height: 1.15 !important;
  }

  .home-about-section .home-about-media:hover .home-about-photo,
  .home-about-section .home-about-media:focus-within .home-about-photo,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-media:hover .home-about-photo,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-media:focus-within .home-about-photo {
    transform: translateY(-2px) scale(1.025) !important;
    box-shadow: 0 12px 24px rgba(122, 31, 31, .18) !important;
    filter: saturate(1.04) contrast(1.02) !important;
  }
}

@media (max-width: 420px) {
  .site-marquee {
    padding: 6px 10px !important;
    min-height: 30px !important;
    line-height: 18px !important;
    font-size: .75rem !important;
  }

  .home-about-section .home-about-media,
  body:has(.hero) .home-about-section .home-about-media,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-media {
    width: min(46vw, 130px) !important;
    max-width: 130px !important;
    padding-bottom: 28px !important;
  }

  .about-detail .about-detail__media {
    width: min(64vw, 190px) !important;
    max-width: 190px !important;
    padding-bottom: 34px !important;
  }

  .home-about-section .home-about-photo,
  body:has(.hero) .home-about-section .home-about-photo,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo {
    max-height: 162px !important;
  }

  .about-detail .about-photo {
    max-height: 238px !important;
  }

  .home-about-section .home-about-photo-badge,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo-badge {
    width: min(145px, 98%) !important;
    padding: 6px 7px !important;
  }

  .about-detail .about-detail__badge {
    width: min(174px, 92%) !important;
    padding: 8px 10px !important;
  }
}

/* Hero notice line: transparent overlay above the slider image. */
.site-marquee {
  display: block !important;
  width: calc(100% + (2 * var(--page-gutter, 12px))) !important;
  margin: 0 calc(-1 * var(--page-gutter, 12px)) !important;
  padding: 8px 14px !important;
  min-height: 36px !important;
  line-height: 20px !important;
  box-sizing: border-box !important;
  background: transparent !important;
  border: 0 !important;
  color: #fff7df !important;
  font-size: .9rem !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  position: absolute !important;
  top: 12px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 5 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .82) !important;
}

@media (max-width: 768px) {
  .site-marquee {
    padding: 7px 12px !important;
    min-height: 32px !important;
    line-height: 18px !important;
    font-size: .78rem !important;
  }
}

/* Phone About photo: make Pandit Ji portrait a little larger. */
@media (max-width: 768px) {
  .home-about-section .home-about-media,
  body:has(.hero) .home-about-section .home-about-media,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-media {
    width: min(64vw, 220px) !important;
    max-width: 220px !important;
    padding-bottom: 58px !important;
  }

  .home-about-section .home-about-photo,
  body:has(.hero) .home-about-section .home-about-photo,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo {
    max-height: 275px !important;
  }

  .home-about-section .home-about-photo-badge,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo-badge {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 9px 10px !important;
    text-align: center !important;
    overflow: hidden !important;
    white-space: normal !important;
  }

  .home-about-section .home-about-photo-badge span,
  .home-about-section .home-about-photo-badge strong,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo-badge span,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo-badge strong {
    min-width: 0 !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    text-align: center !important;
    line-height: 1.18 !important;
  }
}

@media (max-width: 420px) {
  .home-about-section .home-about-media,
  body:has(.hero) .home-about-section .home-about-media,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-media {
    width: min(60vw, 210px) !important;
    max-width: 210px !important;
    padding-bottom: 62px !important;
  }

  .home-about-section .home-about-photo,
  body:has(.hero) .home-about-section .home-about-photo,
  body:has(.hero) > main > .section--alt:first-of-type .home-about-photo {
    max-height: 262px !important;
  }
}
