/* =====================================================================
   STYLE.CSS — Nashik Pandit Ji (Shree Satyanarayan Puja Seva)
   सेक्शन के हिसाब से बंटा हुआ है, ऊपर comment पढ़कर अपना हिस्सा ढूंढें।
   ===================================================================== */

/* ---------- 1. DESIGN TOKENS ---------- */
:root{
  --bg:        #FBF6EC;
  --bg-alt:    #F3E7D2;
  --surface:   #FFFFFF;
  --ink:       #2B1810;
  --ink-soft:  #5B4636;
  --maroon:    #6E1423;
  --maroon-deep:#4A0E18;
  --gold:      #B4832F;
  --gold-light:#E8C873;
  --marigold:  #D9711E;
  --line:      rgba(110,20,35,0.14);
  --shadow:    0 14px 34px rgba(74,14,24,0.14);
  --radius-arch: 160px 160px 14px 14px;
  --radius: 14px;
  --font-head: 'Cormorant Garamond','Mukta',serif;
  --font-body: 'Mukta','Noto Sans Devanagari',sans-serif;
}

[data-theme="dark"]{
  --bg:        #17100D;
  --bg-alt:    #211712;
  --surface:   #271B15;
  --ink:       #F3E7D2;
  --ink-soft:  #D3BFA9;
  --maroon:    #E1697A;
  --maroon-deep:#C4495B;
  --gold:      #E3BD70;
  --gold-light:#F1D699;
  --marigold:  #F0954E;
  --line:      rgba(227,189,112,0.18);
  --shadow:    0 14px 34px rgba(0,0,0,0.45);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  transition:background .35s ease, color .35s ease;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--font-head); color:var(--maroon-deep); margin:0 0 .5em; font-weight:600; line-height:1.15; }
[data-theme="dark"] h1,[data-theme="dark"] h2,[data-theme="dark"] h3,[data-theme="dark"] h4{ color:var(--gold-light); }
p{ margin:0 0 1em; color:var(--ink-soft); max-width:66ch; }
ul{ padding-left:1.2em; }
.wrap{ max-width:1180px; margin:0 auto; padding:0 24px; }

/* icons: always render at a sane, visible size with currentColor */
.icon{ width:20px; height:20px; min-width:20px; min-height:20px; fill:none; stroke:currentColor; flex-shrink:0; display:inline-block; vertical-align:middle; }
.icon--sm{ width:16px; height:16px; min-width:16px; min-height:16px; }

/* ---------- 2. ACCESSIBILITY / SKIP LINK ---------- */
.skip-link{
  position:absolute; left:-999px; top:auto;
  background:var(--maroon); color:#fff; padding:10px 16px; z-index:999; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; top:0; }
:focus-visible{ outline:3px solid var(--marigold); outline-offset:2px; }
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; transition-duration:0.001ms !important; }
}

/* ---------- 3. TOP STRIP ---------- */
.top-strip{ background:var(--maroon-deep); color:var(--gold-light); font-size:13px; }
.top-strip__inner{ display:flex; justify-content:space-between; align-items:center; padding:6px 24px; gap:12px; flex-wrap:wrap; }
.top-strip__phone{ display:flex; align-items:center; gap:6px; color:var(--gold-light); }
.top-strip__phone .icon{ color:var(--gold-light); }
.top-strip__phone a{ color:#fff; font-weight:600; }

/* ---------- 4. HEADER / NAV ---------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:var(--bg); border-bottom:1px solid var(--line);
  backdrop-filter:blur(6px);
}
.site-header__inner{ display:flex; align-items:center; gap:16px; padding:12px 24px; }
.brand{ display:flex; align-items:center; gap:12px; margin-right:auto; flex-shrink:0; }
.brand__logo{ width:52px; height:52px; border-radius:50%; object-fit:cover; border:2px solid var(--gold); }
.brand__text{ display:flex; flex-direction:column; line-height:1.2; }
.brand__title{ font-family:var(--font-head); font-size:20px; font-weight:700; color:var(--maroon-deep); }
[data-theme="dark"] .brand__title{ color:var(--gold-light); }
.brand__sub{ font-size:12px; color:var(--ink-soft); letter-spacing:.03em; }

.main-nav{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.main-nav a{ font-weight:600; font-size:14.5px; color:var(--ink); position:relative; padding:6px 0; white-space:nowrap; }
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--marigold);
  transition:width .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after{ width:100%; }

/* nav dropdown (पूजा सेवाएँ) */
.nav-item-dropdown{ position:relative; }
.nav-item-dropdown .dropdown-toggle{
  font-weight:600; font-size:14.5px; color:var(--ink); cursor:pointer; padding:6px 0; display:inline-block;
}
.nav-item-dropdown .dropdown-toggle.active{ color:var(--marigold); }
.nav-dropdown-menu{
  position:absolute; top:100%; right:0; min-width:210px; background:var(--surface);
  border:1px solid var(--line); border-radius:12px; box-shadow:var(--shadow);
  padding:8px; display:none; flex-direction:column; gap:2px; z-index:50;
}
.nav-dropdown-menu a{ padding:9px 10px; border-radius:8px; font-size:14px; }
.nav-dropdown-menu a:hover{ background:var(--bg-alt); }
.nav-dropdown-menu a::after{ display:none; }
.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu,
.nav-item-dropdown.is-open .nav-dropdown-menu{ display:flex; }

.header-actions{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.theme-toggle, .btn--icon-only{
  width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:var(--surface); border:1px solid var(--line); cursor:pointer; color:var(--maroon); flex-shrink:0;
}
[data-theme="dark"] .theme-toggle,[data-theme="dark"] .btn--icon-only{ color:var(--gold); }
.header-call{ background:var(--maroon); color:#fff !important; border:none; }
.header-call .icon{ color:#fff; stroke:#fff; }
[data-theme="dark"] .header-call{ background:var(--maroon); }

.hamburger{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.hamburger span{ width:24px; height:2px; background:var(--ink); display:block; border-radius:2px; }

/* ---------- language switch (replaces default Google Translate look) ---------- */
.lang-switch{ position:relative; }
.lang-switch__btn{
  display:flex; align-items:center; gap:6px; height:40px; padding:0 14px; border-radius:20px;
  background:var(--surface); border:1px solid var(--line); color:var(--maroon); cursor:pointer;
  font-family:var(--font-body); font-size:13.5px; font-weight:600;
}
[data-theme="dark"] .lang-switch__btn{ color:var(--gold); }
.lang-switch__menu{
  position:absolute; top:calc(100% + 8px); right:0; background:var(--surface); border:1px solid var(--line);
  border-radius:12px; box-shadow:var(--shadow); padding:6px; display:none; flex-direction:column; min-width:140px; z-index:60;
}
.lang-switch.is-open .lang-switch__menu{ display:flex; }
.lang-switch__menu button{
  background:none; border:none; text-align:right; padding:9px 12px; border-radius:8px; cursor:pointer;
  font-family:var(--font-body); font-size:14px; color:var(--ink);
}
.lang-switch__menu button:hover{ background:var(--bg-alt); }
/* hide Google's own default chrome entirely; we drive it via our own button */
#google_translate_element{ display:none !important; }
.goog-te-banner-frame, .goog-te-gadget-icon{ display:none !important; }
body{ top:0 !important; }
.goog-tooltip{ display:none !important; }
.goog-tooltip:hover{ display:none !important; }
.goog-text-highlight{ background:none !important; box-shadow:none !important; }

/* ---------- 5. BUTTONS ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px; padding:13px 24px; border-radius:40px;
  font-weight:700; font-size:15px; border:2px solid transparent; cursor:pointer; white-space:nowrap;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn--gold{ background:linear-gradient(135deg,var(--gold-light),var(--gold)); color:var(--maroon-deep); box-shadow:0 10px 24px rgba(180,131,47,.35); }
.btn--maroon{ background:var(--maroon); color:#fff; box-shadow:0 10px 24px rgba(110,20,35,.3); }
.btn--whatsapp{ background:#25D366; color:#08380f; box-shadow:0 10px 24px rgba(37,211,102,.3); }
.btn--whatsapp .icon{ color:#08380f; }
.btn--outline{ background:transparent; border-color:var(--maroon); color:var(--maroon); }
[data-theme="dark"] .btn--outline{ border-color:var(--gold); color:var(--gold); }
.btn--block{ width:100%; justify-content:center; }

/* ---------- 6. HERO ---------- */
.hero{ padding:64px 0 40px; overflow:hidden; }
.hero__inner{ display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center; }
.hero__eyebrow-row{ display:flex; align-items:center; gap:10px; color:var(--marigold); font-weight:700; margin-bottom:14px; }
.hero h1{ font-size:clamp(34px,4.6vw,54px); font-style:italic; }
.hero h1 em{ font-style:normal; color:var(--marigold); }
.hero p.lead{ font-size:18px; max-width:52ch; }
.hero__cta{ display:flex; gap:16px; margin:26px 0; flex-wrap:wrap; }
.hero__stats{ display:flex; gap:30px; margin-top:20px; flex-wrap:wrap; }
.hero__stat b{ display:block; font-family:var(--font-head); font-size:28px; color:var(--maroon); }
[data-theme="dark"] .hero__stat b{ color:var(--gold); }
.hero__stat span{ font-size:13px; color:var(--ink-soft); }

.hero__art{ position:relative; }
.hero__frame{
  border-radius:var(--radius-arch); overflow:hidden; border:6px solid var(--gold);
  box-shadow:var(--shadow); aspect-ratio:3/4;
}
.hero__frame img{ width:100%; height:100%; object-fit:cover; object-position:top center; }
.hero__badge{
  position:absolute; bottom:-18px; left:-18px; background:var(--surface); border:1px solid var(--line);
  border-radius:16px; padding:14px 18px; box-shadow:var(--shadow); display:flex; gap:10px; align-items:center;
  max-width:230px;
}
.hero__badge .icon{ color:var(--marigold); width:26px; height:26px; flex-shrink:0; }
.hero__badge strong{ display:block; font-size:14px; }
.hero__badge span{ font-size:12px; color:var(--ink-soft); }

/* ---------- 7. SECTION SCAFFOLDING ---------- */
section{ padding:64px 0; }
.section-head{ max-width:640px; margin-bottom:40px; }
.section-head h2{ font-size:clamp(26px,3.4vw,38px); }
.alt-bg{ background:var(--bg-alt); }

/* ---------- 8. BENEFIT / FEATURE CARDS ---------- */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }
.card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:28px; box-shadow:var(--shadow);
}
.card .icon-wrap{
  width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,var(--gold-light),var(--gold)); color:var(--maroon-deep); margin-bottom:16px;
}
.card h3{ font-size:20px; margin-bottom:8px; }
.card p{ font-size:14.5px; margin:0 0 14px; }

/* ---------- 9. PROCESS TIMELINE ---------- */
.timeline{ position:relative; padding-left:34px; border-left:2px dashed var(--gold); }
.timeline__step{ position:relative; padding-bottom:34px; }
.timeline__step:last-child{ padding-bottom:0; }
.timeline__dot{
  position:absolute; left:-45px; top:0; width:24px; height:24px; border-radius:50%;
  background:var(--maroon); color:#fff; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700;
  border:3px solid var(--bg);
}
.timeline__step h4{ font-size:18px; margin-bottom:4px; }
.timeline__step p{ font-size:14.5px; }

/* ---------- 10. PANDIT SECTION ---------- */
.pandit-block{ display:grid; grid-template-columns:.8fr 1.2fr; gap:44px; align-items:center; }
.pandit-photo{ border-radius:var(--radius-arch); overflow:hidden; border:5px solid var(--gold); box-shadow:var(--shadow); aspect-ratio:3/4; }
.pandit-photo img{ width:100%; height:100%; object-fit:cover; }
.pandit-info .credentials{ display:flex; gap:20px; margin:20px 0; flex-wrap:wrap; }
.pandit-info .credentials li{ list-style:none; display:flex; gap:8px; align-items:center; font-weight:600; font-size:14.5px; }
.pandit-info .credentials{ padding:0; }
.pandit-info .credentials .icon{ color:var(--marigold); }

/* ---------- 11. PACKAGES ---------- */
.package-card{ position:relative; }
.package-card.is-popular{ border-color:var(--gold); transform:scale(1.03); }
.package-card .ribbon{
  position:absolute; top:-12px; right:20px; background:var(--marigold); color:#fff; font-size:12px;
  padding:5px 14px; border-radius:20px; font-weight:700;
}
.package-card ul{ list-style:none; padding:0; margin:18px 0; }
.package-card li{ display:flex; gap:10px; align-items:flex-start; margin-bottom:10px; font-size:14.5px; color:var(--ink-soft); }
.package-card li .icon{ color:var(--maroon); flex-shrink:0; margin-top:3px; }
[data-theme="dark"] .package-card li .icon{ color:var(--gold); }

/* ---------- 12. GALLERY ---------- */
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.gallery-grid a, .gallery-grid .g-item{
  display:block; border-radius:12px; overflow:hidden; aspect-ratio:1/1; position:relative;
  border:1px solid var(--line); cursor:zoom-in;
}
.gallery-grid img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.gallery-grid a:hover img{ transform:scale(1.08); }
.gallery-cta{ text-align:center; margin-top:30px; }

.lightbox{
  position:fixed; inset:0; background:rgba(10,5,3,.92); display:none; align-items:center; justify-content:center;
  z-index:999; padding:30px;
}
.lightbox.is-open{ display:flex; }
.lightbox img{ max-width:min(900px,92vw); max-height:86vh; border-radius:10px; border:4px solid var(--gold); }
.lightbox__close{
  position:absolute; top:22px; right:26px; background:none; border:none; color:#fff; font-size:34px; cursor:pointer;
  line-height:1;
}

/* ---------- 13. TESTIMONIALS ---------- */
.testi-card{ position:relative; }
.testi-card .icon{ color:var(--gold); width:30px; height:30px; margin-bottom:10px; }
.testi-card .who{ display:flex; align-items:center; gap:10px; margin-top:14px; }
.testi-card .who b{ display:block; font-size:14.5px; }
.testi-card .who span{ font-size:12.5px; color:var(--ink-soft); }
.stars{ display:flex; gap:2px; color:var(--marigold); margin-bottom:10px; }
.stars .icon{ width:16px; height:16px; margin:0; }

/* ---------- 14. FAQ / ACCORDION ---------- */
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; text-align:right; background:none; border:none; padding:18px 4px; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; font-weight:700; font-size:16px; color:var(--ink);
  text-align:left; gap:14px;
}
.faq-q .icon{ transition:transform .25s ease; color:var(--marigold); flex-shrink:0; }
.faq-item.is-open .faq-q .icon{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-a p{ padding:0 4px 18px; font-size:14.5px; }
.faq-item.is-open .faq-a{ max-height:400px; }

/* ---------- 15. CTA STRIP ---------- */
.cta-strip{ background:linear-gradient(120deg,var(--maroon-deep),var(--maroon)); padding:44px 0; }
.cta-strip__inner{ display:flex; justify-content:space-between; align-items:center; gap:26px; flex-wrap:wrap; }
.cta-strip h2{ color:#fff; font-size:26px; margin-bottom:6px; }
.cta-strip p{ color:var(--gold-light); margin:0; }
.cta-strip__btns{ display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- 16. FOOTER ---------- */
.site-footer{ background:var(--maroon-deep); color:var(--gold-light); padding:56px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1.1fr; gap:34px; padding-bottom:40px; border-bottom:1px solid rgba(232,200,115,.2); }
.footer-col h3{ color:#fff; font-family:var(--font-body); font-size:15px; letter-spacing:.02em; margin-bottom:14px; }
.footer-col a{ display:flex; align-items:center; gap:8px; color:var(--gold-light); font-size:14.5px; padding:5px 0; }
.footer-col a .icon{ color:var(--gold-light); }
.footer-col a:hover{ color:#fff; }
.footer-col a:hover .icon{ color:#fff; }
.footer-tagline{ color:var(--gold-light); font-size:14.5px; margin:14px 0 10px; }
.footer-addr{ display:flex; gap:8px; font-size:13.5px; color:var(--gold-light); align-items:flex-start; }
.footer-addr .icon{ color:var(--gold-light); margin-top:2px; }
.footer-area{ font-size:13.5px; color:var(--gold-light); margin:0; }
.footer-bottom{ display:flex; justify-content:space-between; padding:20px 24px; font-size:13px; flex-wrap:wrap; gap:8px; color:var(--gold-light); }
.footer-credit strong{ color:#fff; }

/* ---------- 17. FLOATING ACTION BUTTONS ---------- */
/* WhatsApp stays bottom-right (standard convention); Call is bottom-left, so the two never overlap */
.fab{ position:fixed; bottom:22px; z-index:90; }
.fab a{
  width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px rgba(0,0,0,.28); color:#fff; animation:fab-pulse 2.6s ease-in-out infinite;
}
.fab .icon{ width:26px; height:26px; color:#fff; stroke:#fff; }
.fab--whatsapp{ right:20px; }
.fab--whatsapp a{ background:#25D366; }
.fab--call{ left:20px; }
.fab--call a{ background:var(--maroon); animation-delay:.4s; }
@keyframes fab-pulse{ 0%,100%{ transform:scale(1); } 50%{ transform:scale(1.07); } }

/* ---------- 18. CONTACT PAGE ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
.form-field{ margin-bottom:18px; }
.form-field label{ display:block; font-weight:600; margin-bottom:6px; font-size:14.5px; }
.form-field input, .form-field select, .form-field textarea{
  width:100%; padding:13px 14px; border-radius:10px; border:1px solid var(--line); background:var(--surface);
  color:var(--ink); font-family:var(--font-body); font-size:15px;
}
.form-field textarea{ min-height:120px; resize:vertical; }
.map-frame{ border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); height:320px; margin-top:20px; }
.map-frame iframe{ width:100%; height:100%; border:0; }
.contact-info-list{ list-style:none; padding:0; }
.contact-info-list li{ display:flex; gap:14px; margin-bottom:18px; align-items:flex-start; }
.contact-info-list .icon-wrap{ width:44px; height:44px; border-radius:12px; background:var(--bg-alt); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-info-list .icon-wrap .icon{ color:var(--maroon); }
[data-theme="dark"] .contact-info-list .icon-wrap .icon{ color:var(--gold); }
.form-note{ font-size:13px; color:var(--ink-soft); }

/* ---------- 19. INNER PAGE HERO ---------- */
.page-hero{ padding:44px 0 20px; text-align:center; }
.page-hero h1{ font-size:clamp(28px,4vw,42px); }
.breadcrumbs{ font-size:13px; color:var(--ink-soft); margin-bottom:10px; }
.breadcrumbs a{ color:var(--marigold); font-weight:600; }

/* ---------- 20. SAMAGRI / VIDHI CONTENT ---------- */
.article-body h2{ margin-top:44px; font-size:26px; }
.article-body h3{ margin-top:26px; font-size:20px; }
.samagri-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px 26px; list-style:none; padding:0; }
.samagri-grid li{ display:flex; gap:10px; align-items:center; font-size:14.5px; padding:8px 0; border-bottom:1px dashed var(--line); }
.samagri-grid li .icon{ color:var(--marigold); width:16px; height:16px; flex-shrink:0; }
.callout{
  background:var(--bg-alt); border-right:4px solid var(--marigold); border-radius:10px; padding:18px 22px; margin:24px 0;
}
[dir] .callout{ border-right:none; border-left:4px solid var(--marigold); }

/* ---------- 21. UTILITIES ---------- */
.center{ text-align:center; }
.mt-0{ margin-top:0; }
.tag-pill{
  display:inline-flex; align-items:center; gap:8px; background:var(--bg-alt); color:var(--maroon);
  padding:8px 16px; border-radius:30px; font-size:13px; font-weight:700; margin-bottom:16px;
}
[data-theme="dark"] .tag-pill{ color:var(--gold); }
.tag-pill .icon{ width:16px; height:16px; }

/* ---------- 22. RESPONSIVE ---------- */
@media (max-width:1180px){
  .main-nav{ gap:14px; }
  .main-nav a, .nav-item-dropdown .dropdown-toggle{ font-size:13.5px; }
}
@media (max-width:1024px){
  .hero__inner, .pandit-block, .contact-grid{ grid-template-columns:1fr; }
  .hero__art{ order:-1; max-width:420px; margin:0 auto; }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .gallery-grid{ grid-template-columns:repeat(3,1fr); }
  .samagri-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:900px){
  .main-nav{ display:none; }
  .main-nav.is-open{ display:flex; }
}
@media (max-width:820px){
  .main-nav{
    position:fixed; top:0; right:0; height:100vh; width:78%; max-width:320px; background:var(--surface);
    flex-direction:column; align-items:flex-start; padding:90px 30px; gap:18px; transform:translateX(100%); transition:transform .3s ease;
    box-shadow:-10px 0 30px rgba(0,0,0,.2); z-index:95; overflow-y:auto;
  }
  .main-nav.is-open{ transform:translateX(0); display:flex; }
  .hamburger{ display:flex; }
  .nav-item-dropdown{ width:100%; }
  .nav-dropdown-menu{ position:static; display:flex !important; box-shadow:none; border:none; padding:6px 0 0 14px; background:transparent; }
  .nav-dropdown-menu a{ padding:8px 0; }
  .lang-switch__code{ display:none; }
  .lang-switch__btn{ padding:0 10px; width:40px; justify-content:center; }
  .grid-3, .grid-2{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .cta-strip__inner{ flex-direction:column; text-align:center; }
  .footer-grid{ grid-template-columns:1fr; text-align:center; }
  .footer-col a, .footer-addr{ justify-content:center; }
  .footer-bottom{ flex-direction:column; text-align:center; justify-content:center; }
}
@media (max-width:520px){
  .samagri-grid{ grid-template-columns:1fr; }
  .hero__badge{ position:static; margin-top:16px; max-width:none; }
  .hero{ padding:36px 0 20px; }
  section{ padding:44px 0; }
  .fab a{ width:50px; height:50px; }
  .fab--whatsapp{ right:14px; bottom:16px; }
  .fab--call{ left:14px; bottom:16px; }
}

/* Keep the header from overflowing on narrow phones: shrink brand + actions to fit */
@media (max-width:430px){
  .site-header__inner{ padding:10px 14px; gap:8px; }
  .brand{ gap:8px; }
  .brand__logo{ width:38px; height:38px; }
  .brand__title{ font-size:15px; }
  .brand__sub{ display:none; }
  .header-actions{ gap:6px; }
  .theme-toggle, .btn--icon-only, .lang-switch__btn{ width:34px; height:34px; min-width:34px; }
  .lang-switch__btn{ padding:0; justify-content:center; }
  .header-actions .icon{ width:17px; height:17px; min-width:17px; min-height:17px; }
  .hamburger{ padding:6px 2px; }
  .top-strip__inner{ padding:6px 14px; font-size:11.5px; }
}
