/* ============================================================
   Himdarsh Global — Stylesheet
   Lightweight, modern, accessible. No frameworks.
   ============================================================ */

:root {
  --bg:        #ffffff;
  --bg-alt:    #fdf8f0;
  --ink:       #25121a;
  --ink-soft:  #6a4750;
  --line:      #ecdfcf;
  --brand:     #a8132b;   /* refined heritage red */
  --brand-2:   #82101f;
  --accent:    #d99a2b;   /* rich gold */
  --accent-2:  #f0c24a;   /* warm yellow-gold */
  --whatsapp:  #25d366;
  --white:     #ffffff;
  --radius:    16px;
  --radius-sm: 10px;
  --maxw:      1140px;
  --shadow:    0 14px 34px -14px rgba(168, 19, 43, 0.26);
  --shadow-sm: 0 6px 16px -8px rgba(168, 19, 43, 0.28);
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; margin: 0; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: .98rem; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-primary { background: var(--accent); color: #1c1605; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--brand); }
.brand-logo { height: 58px; width: auto; display: block; }
.brand-mark { color: var(--brand); flex: none; }
.brand-text { font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; letter-spacing: -.02em; color: var(--brand); }
.brand-text strong { font-weight: 600; color: var(--accent); margin-left: 2px; }

.nav-menu { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { font-weight: 500; font-size: .96rem; color: var(--ink-soft); position: relative; padding: 4px 0; }
.nav-menu a:not(.nav-cta):hover { color: var(--brand); }
.nav-menu a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--accent); transition: width .25s ease;
}
.nav-menu a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { background: var(--brand); color: #fff !important; padding: 9px 18px !important; border-radius: 999px; }
.nav-cta:hover { background: var(--brand-2); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--brand); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 520px at 85% -10%, rgba(217,154,43,.30), transparent 60%),
    radial-gradient(680px 500px at 0% 115%, rgba(217,154,43,.16), transparent 60%),
    linear-gradient(155deg, #a8132b 0%, #850f1f 55%, #650a18 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px; opacity: .6;
}
.hero-inner { position: relative; z-index: 1; padding: 96px 24px 104px; max-width: 880px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 600;
  color: var(--accent-2); margin: 0 0 18px;
}
.eyebrow-light { color: var(--accent-2); }
.hero-title { font-size: clamp(2.3rem, 6vw, 4rem); margin-bottom: 22px; }
.hero-title span { color: var(--accent-2); font-style: italic; }
.hero-lead { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: rgba(255,255,255,.82); max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 0; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 38px; list-style: none; margin: 52px 0 0; padding: 28px 0 0;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-head); font-size: 1.7rem; color: #fff; }
.hero-stats span { font-size: .85rem; color: rgba(255,255,255,.65); letter-spacing: .02em; }

/* ---------- Hero split layout (business pages: text + side illustration) ---------- */
.hero-flex { display: grid; grid-template-columns: 70% 30%; gap: 48px; align-items: center; }
.hero--media .hero-flex { padding: 88px 0 96px; }
.hero--media .hero-inner { padding: 0; max-width: none; }
.hero-visual { position: relative; width: 100%; min-width: 0; }
.hero-visual::before {
  content: ""; position: absolute; inset: -18px;
  background: linear-gradient(135deg, rgba(240,194,74,.24), rgba(240,194,74,.03));
  border-radius: 28px; transform: rotate(-3deg); z-index: 0;
}
.hero-visual img {
  position: relative; z-index: 1; display: block; width: 100%; height: auto;
  max-width: 100%; object-fit: contain;
  border-radius: 22px; box-shadow: 0 30px 60px -18px rgba(20,8,12,.55);
}
.hero--left .hero-flex { grid-template-columns: 30% 70%; }
.hero--left .hero-visual { order: -1; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-alt { background: var(--bg-alt); }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 18px; }
.section-head { max-width: 640px; margin: 0 auto 54px; text-align: center; }
.section-sub { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: start; }
.about-copy p { color: var(--ink-soft); }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; }
.check-list li { position: relative; padding-left: 34px; margin-bottom: 14px; font-weight: 500; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/16px no-repeat;
}
.about-card {
  background: var(--brand); color: #fff; border-radius: var(--radius); padding: 34px 32px;
  box-shadow: var(--shadow);
}
.about-card h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--accent-2); }
.about-card dl { margin: 0; }
.about-card dt { font-weight: 700; font-family: var(--font-head); font-size: 1.05rem; }
.about-card dd { margin: 4px 0 18px; color: rgba(255,255,255,.78); font-size: .96rem; }
.about-card dd:last-child { margin-bottom: 0; }

.mission-vision-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 30px 0 8px; }
.mv-card { padding: 22px 22px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-alt); }
.mv-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border-radius: 50%; background: rgba(168,19,43,.08); color: var(--brand); margin-bottom: 12px;
}
.mv-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.mv-card p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ---------- Services / Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--accent); }
.card-media { position: relative; aspect-ratio: 400 / 260; overflow: hidden; background: var(--bg-alt); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-tag {
  position: absolute; top: 12px; left: 12px; background: var(--accent-2); color: #4a2c00;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.card-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card-body p { color: var(--ink-soft); margin: 0 0 18px; font-size: .97rem; }
.card-link {
  margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: .92rem; color: var(--brand);
}
.card-link svg { transition: transform .2s ease; }
.card-link:hover { color: var(--brand-2); }
.card-link:hover svg { transform: translateX(4px); }

.card-cta {
  justify-content: center;
  background: linear-gradient(150deg, var(--brand) 0%, var(--brand-2) 100%);
  border-color: transparent; color: #fff;
}
.card-cta .card-body { justify-content: center; }
.card-cta h3 { color: #fff; }
.card-cta p { color: rgba(255,255,255,.85); }
.card-cta .card-link { color: var(--accent-2); }
.card-cta .card-link:hover { color: #fff; }

/* WhatsApp button */
.btn-whatsapp { background: var(--whatsapp); color: #053d22; border-color: var(--whatsapp); }
.btn-whatsapp:hover { background: #1fbe5b; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-whatsapp svg { flex: none; }

/* ---------- Vision ---------- */
.vision { position: relative; color: #fff; overflow: hidden; background: var(--brand); }
.vision::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(720px 400px at 100% 0%, rgba(217,154,43,.24), transparent 60%),
    radial-gradient(600px 400px at -10% 120%, rgba(101,10,24,.7), transparent 55%);
}
.vision-inner { position: relative; max-width: 820px; }
.vision .section-title { color: #fff; }
.vision-lead { color: rgba(255,255,255,.82); font-size: 1.15rem; max-width: 680px; }
.vision-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 46px; }
.pillar { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-sm); padding: 24px 22px; }
.pillar h3 { color: var(--accent-2); font-size: 1.15rem; margin-bottom: 8px; }
.pillar p { color: rgba(255,255,255,.78); font-size: .95rem; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-copy p { color: var(--ink-soft); }
.contact-wa { margin: 6px 0 8px; }
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; }
.contact-list li { display: flex; flex-direction: column; padding: 16px 0; border-top: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); margin-bottom: 4px; }
.contact-list a { color: var(--brand); font-weight: 600; }
.contact-list a:hover { color: var(--accent); }

.contact-form {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; display: grid; gap: 18px;
}
.field { display: grid; gap: 7px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  font: inherit; font-size: .96rem; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: #fff; color: var(--ink); resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(12,59,58,.12);
}
.contact-form .btn { width: 100%; }
.form-note { margin: 0; font-size: .9rem; min-height: 1.2em; color: var(--brand-2); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: #3a0a12; color: rgba(255,255,255,.74); padding: 56px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand-text { color: #fff; font-size: 1.3rem; }
.footer-brand .brand-text strong { color: var(--accent-2); }
.footer-brand p { margin: 12px 0 0; max-width: 420px; font-size: .95rem; }
.footer-col h3 { color: #fff; font-size: .92rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 16px; }
.footer-nav { display: flex; flex-direction: column; flex-wrap: wrap; gap: 12px; align-content: start; }
.footer-nav a { font-weight: 500; font-size: .95rem; }
.footer-nav a:hover { color: var(--accent-2); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; padding-top: 22px; font-size: .88rem; }
.footer-bottom p { margin: 0; }
.back-top:hover { color: var(--accent-2); }

/* ---------- Nav dropdown ("Our Businesses") ---------- */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; cursor: pointer;
  font: inherit; font-weight: 500; font-size: .96rem; color: var(--ink-soft); padding: 4px 0;
}
.nav-dropdown-toggle:hover { color: var(--brand); }
.nav-dropdown-toggle svg { transition: transform .2s ease; flex: none; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translate(-50%, -8px);
  min-width: 300px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); list-style: none; margin: 0; padding: 10px; display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 40;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.nav-dropdown.open .nav-dropdown-toggle svg,
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu a {
  display: flex; flex-direction: column; gap: 1px; padding: 9px 12px; border-radius: 8px;
  font-weight: 600; font-size: .94rem; color: var(--ink);
}
.nav-dropdown-menu a:hover { background: var(--bg-alt); color: var(--brand); }
.nav-dropdown-menu a small { font-weight: 500; font-size: .8rem; color: var(--ink-soft); }
.nav-dropdown-menu a[aria-current="page"] { background: var(--bg-alt); color: var(--brand); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .88rem;
  color: var(--ink-soft); padding: 18px 0 0;
}
.breadcrumb a { font-weight: 600; color: var(--brand); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span[aria-current] { color: var(--ink-soft); }

/* ---------- Offer grid (per-page service offerings) ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.offer-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }
.offer-num {
  display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border-radius: 50%; background: var(--bg-alt); color: var(--brand); font-family: var(--font-head);
  font-weight: 600; font-size: 1rem; margin-bottom: 14px;
}
.offer-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.offer-card p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; list-style: none; margin: 0; padding: 0; }
.step { position: relative; padding-top: 56px; }
.step-num {
  position: absolute; top: 0; left: 0; width: 42px; height: 42px; border-radius: 50%;
  background: var(--brand); color: #fff; font-family: var(--font-head); font-weight: 600;
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: .94rem; margin: 0; }

/* ---------- FAQ accordion (native details/summary) ---------- */
.faq { display: grid; gap: 12px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 22px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; font-weight: 600; font-size: 1.02rem; padding: 18px 30px 18px 0;
  position: relative; font-family: var(--font-head);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 2px; top: 50%; width: 12px; height: 12px;
  transform: translateY(-50%) rotate(45deg); border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(225deg); }
.faq-item p { color: var(--ink-soft); margin: 0 0 18px; font-size: .97rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(150deg, var(--brand) 0%, var(--brand-2) 100%); color: #fff;
  border-radius: var(--radius); padding: 48px 44px; text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.84); max-width: 560px; margin: 0 auto 26px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Business hero side illustration is now an <img> inside .hero-visual (see above) ---------- */

/* ---------- Mobile sticky Call + WhatsApp bar ---------- */
.mobile-actions {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  gap: 1px; background: var(--line); padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -8px 24px -10px rgba(37,18,26,.25);
}
.mobile-actions a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 10px; font-weight: 700; font-size: .96rem; color: #fff;
}
.mobile-actions .ma-call { background: var(--brand); }
.mobile-actions .ma-whatsapp { background: var(--whatsapp); color: #053d22; }
.mobile-actions svg { flex: none; }

/* ---------- Reveal on scroll ---------- */
.section, .card, .pillar, .offer-card, .step, .faq-item { will-change: opacity, transform; }
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-flex, .hero--left .hero-flex { grid-template-columns: 1fr; gap: 36px; padding: 64px 0 56px; }
  .hero-visual, .hero--left .hero-visual { order: -1; max-width: 280px; margin: 0 auto; }
  .about-grid, .contact-grid, .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .vision-pillars { grid-template-columns: 1fr; }
  .cards, .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-nav { justify-content: flex-start; }

  /* Collapse the primary nav into a menu button earlier to avoid crowding */
  .nav-toggle { display: flex; z-index: 60; }
  .nav-menu {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; gap: 0; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 24px 24px;
    transform: translateY(-130%); transition: transform .3s ease; box-shadow: var(--shadow);
    overflow-y: auto; max-height: calc(100vh - 78px);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 14px 0; font-size: 1.05rem; }
  .nav-cta { text-align: center; margin-top: 8px; }

  /* Dropdown becomes an inline expanding list inside the mobile menu (click-controlled only) */
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 14px 0; font-size: 1.05rem; }
  .nav-dropdown-menu {
    position: static; transform: none; min-width: 0; box-shadow: none; border: 0; background: var(--bg-alt);
    opacity: 1; visibility: visible; display: none; margin: 0 0 6px; padding: 6px;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: grid; }

  /* Sticky call/WhatsApp bar appears on mobile only */
  .mobile-actions { display: flex; }
  body { padding-bottom: 64px; }
}
@media (max-width: 720px) {
  .cards, .offer-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .mission-vision-row { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .hero-inner { padding: 72px 24px 80px; }
  .hero-stats { gap: 26px; }
  .cta-banner { padding: 36px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
