/* ============================================================
   Mosri Associates — mosri.in
   Design system: deep navy + saffron gradient, Poppins/Inter.
   ============================================================ */

:root {
  --navy:       #0A1B3D;
  --navy-deep:  #071129;
  --navy-soft:  #12295C;
  --orange:     #FF7A1A;
  --orange-deep:#F05E00;
  --amber:      #FFB300;
  --grad:       linear-gradient(120deg, #F05E00, #FF8A1E 55%, #FFB300);
  --bg:         #F5F7FC;
  --card:       #FFFFFF;
  --ink:        #1B2437;
  --muted:      #5A6478;
  --line:       #E3E8F2;
  --ink-inv:    #EAF0FB;
  --muted-inv:  #9FB0CC;
  --radius:     14px;
  --shadow:     0 10px 30px rgba(10, 27, 61, .10);
  --shadow-lg:  0 24px 60px rgba(10, 27, 61, .16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 16px; line-height: 1.65;
  color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: Poppins, Inter, sans-serif; line-height: 1.22; color: var(--navy); }
h1 { font-size: clamp(2rem, 4.6vw, 3.15rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); font-weight: 700; }
h3 { font-size: 1.18rem; font-weight: 600; }
p  { margin: 0; }
a  { color: var(--orange-deep); text-decoration: none; }
img, svg { max-width: 100%; vertical-align: middle; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); 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: 8px;
  font-family: Poppins, Inter, sans-serif; font-weight: 600; font-size: .97rem;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 22px rgba(240, 94, 0, .35); }
.btn-primary:hover { box-shadow: 0 12px 28px rgba(240, 94, 0, .45); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-ghost-light { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); }
.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.header-inner { display: flex; align-items: center; gap: 28px; height: 74px; }
.brand { display: inline-flex; flex-shrink: 0; }
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav > a, .nav-drop-btn {
  font-family: Poppins, Inter, sans-serif; font-weight: 500; font-size: .95rem;
  color: var(--ink-inv); padding: 10px 14px; border-radius: 8px;
  background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.main-nav > a:hover, .nav-drop-btn:hover { color: #fff; background: rgba(255,255,255,.08); }
.main-nav > a.is-active, .nav-drop.is-active .nav-drop-btn { color: var(--amber); }
.caret {
  width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); display: inline-block;
}
.nav-drop { position: relative; display: inline-flex; align-items: center; }
.nav-drop-btn { text-decoration: none; }
.nav-drop-caret {
  background: none; border: 0; cursor: pointer; color: var(--ink-inv);
  padding: 10px 12px 10px 4px; margin-left: -8px; border-radius: 8px;
  display: inline-flex; align-items: center;
}
.nav-drop-caret:hover { color: #fff; }
.nav-drop.is-active .nav-drop-btn { color: var(--amber); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 300px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 10px; display: none; z-index: 110;
}
/* Invisible bridge over the 10px gap so the pointer never leaves the
   dropdown while moving from the button into the menu. */
.nav-drop-menu::before {
  content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px;
}
.nav-drop.open .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; border-radius: 9px; color: var(--ink); font-weight: 500; font-size: .93rem;
}
.nav-drop-menu a:hover { background: var(--bg); color: var(--orange-deep); }
.nav-drop-icon { color: var(--orange-deep); display: inline-flex; }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-inv); font-weight: 600; font-size: .93rem; white-space: nowrap; }
.header-phone:hover { color: var(--amber); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(255, 122, 26, .22), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(18, 41, 92, .9), transparent 60%),
    var(--navy-deep);
  color: var(--ink-inv);
  padding: 84px 0 96px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; margin: 18px 0 20px; }
.hero h1 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 1.13rem; color: var(--muted-inv); max-width: 54ch; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* "Powered by RumbaHo.com" credit */
.powered-by { font-size: .8rem; color: var(--muted-inv); }
.powered-by a { color: var(--amber); font-weight: 600; }
.powered-by a:hover { text-decoration: underline; }
.hero-powered { display: inline-block; margin-top: 18px; letter-spacing: .2px; }
.footer-powered { color: var(--muted-inv); }
/* Centred credit pinned to the bottom border of an inner-page hero */
.hero-powered-bottom {
  position: absolute; left: 0; right: 0; bottom: 16px;
  text-align: center; letter-spacing: .2px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: Poppins, Inter, sans-serif; font-size: .8rem; font-weight: 600;
  letter-spacing: 2.2px; text-transform: uppercase; color: var(--amber);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad); border-radius: 2px; }
section .eyebrow { color: var(--orange-deep); }

.hero-visual { position: relative; min-height: 340px; }
.hv-card {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 18px 20px; color: var(--ink);
}
.hv-chart { right: 8%; top: 0; width: 240px; }
.hv-chart .hv-title { font-size: .8rem; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.hv-rupee { left: 0; bottom: 18%; display: flex; gap: 12px; align-items: center; }
.hv-rupee .hv-big { font-family: Poppins; font-weight: 700; font-size: 1.25rem; color: var(--navy); }
.hv-rupee .hv-small { font-size: .78rem; color: var(--muted); }
.hv-badge {
  right: 0; bottom: 0; background: var(--grad); color: #fff;
  font-family: Poppins; font-weight: 600; font-size: .9rem; border-radius: 999px; padding: 12px 22px;
}
.hv-icon-disc {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(240,94,0,.12);
  display: inline-flex; align-items: center; justify-content: center; color: var(--orange-deep);
}

/* ---------- Trust strip ---------- */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 26px 0; }
.trust-item { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: .93rem; color: var(--navy); }
.trust-item svg { color: var(--orange-deep); flex-shrink: 0; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: #fff; }
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head h2 { margin: 14px 0 12px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card h3 { margin-top: 4px; }
.svc-card p { color: var(--muted); font-size: .95rem; flex: 1; }
.svc-icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--grad); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(240,94,0,.3);
}
.svc-link { font-weight: 600; font-size: .93rem; display: inline-flex; align-items: center; gap: 6px; }
.svc-link::after { content: "\2192"; transition: transform .15s; }
.svc-card:hover .svc-link::after { transform: translateX(4px); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; position: relative;
}
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: Poppins; font-weight: 800; font-size: 2.4rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 10px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .92rem; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.why-item { display: flex; gap: 16px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.why-item svg { color: var(--orange-deep); flex-shrink: 0; margin-top: 3px; }
.why-item h3 { font-size: 1.03rem; margin-bottom: 6px; }
.why-item p { color: var(--muted); font-size: .93rem; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 32px 28px; display: flex; flex-direction: column; position: relative;
}
.price-card.popular { border: 2px solid var(--orange); box-shadow: var(--shadow-lg); }
.price-pop-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-family: Poppins; font-weight: 600;
  font-size: .74rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.price-name { font-family: Poppins; font-weight: 700; font-size: 1.1rem; color: var(--navy); }
.price-tag { font-size: .85rem; color: var(--muted); margin-top: 2px; }
.price-amount { margin: 18px 0 4px; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.price-amount .cur { font-family: Poppins; font-weight: 700; font-size: 1.3rem; color: var(--navy); }
.price-amount .num { font-family: Poppins; font-weight: 800; font-size: 2.3rem; color: var(--navy); letter-spacing: -.5px; }
.price-amount .unit { color: var(--muted); font-size: .9rem; }
.price-from { font-size: .8rem; color: var(--muted); }
.price-gst { font-size: .78rem; color: var(--muted); margin-bottom: 18px; }
.price-list { list-style: none; margin: 0 0 26px; padding: 18px 0 0; border-top: 1px solid var(--line); flex: 1; }
.price-list li { display: flex; gap: 10px; padding: 6px 0; font-size: .93rem; color: var(--ink); }
.price-list li svg { color: #1BA55C; flex-shrink: 0; margin-top: 4px; }
.price-section { margin-bottom: 70px; }
.price-section:last-child { margin-bottom: 0; }
.price-section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.price-section-head .svc-icon { width: 46px; height: 46px; border-radius: 12px; }
.price-section-head p { color: var(--muted); font-size: .95rem; }

/* ---------- Service page ---------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(800px 400px at 90% -20%, rgba(255,122,26,.2), transparent 60%),
    var(--navy-deep);
  color: var(--ink-inv); padding: 66px 0 52px;
}
.page-hero h1 { color: #fff; margin: 14px 0 14px; font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.page-hero p { color: var(--muted-inv); font-size: 1.08rem; max-width: 62ch; }
.page-hero .hero-actions { margin-top: 28px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-item {
  display: flex; gap: 12px; background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: 18px; font-size: .95rem; font-weight: 500;
}
.feature-item svg { color: #1BA55C; flex-shrink: 0; margin-top: 2px; }
.svc-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 44px; align-items: start; }
.svc-body h2 { margin-bottom: 14px; }
.svc-body > p { color: var(--muted); font-size: 1.03rem; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: Poppins; font-weight: 600; font-size: 1rem; color: var(--navy); padding: 18px 4px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--orange-deep); transition: transform .2s; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 4px 18px; color: var(--muted); font-size: .96rem; max-width: 75ch; }

/* ---------- Lead form ---------- */
.lead-form-card {
  background: var(--card); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 34px 30px;
}
.lead-form-card h3 { font-size: 1.3rem; }
.lead-form-note { color: var(--muted); font-size: .92rem; margin: 6px 0 20px; }
.form-row { margin-bottom: 15px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row label { display: block; font-weight: 600; font-size: .86rem; margin-bottom: 6px; color: var(--navy); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; font-size: .95rem; color: var(--ink); background: #fff;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,122,26,.15);
}
.form-privacy { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 12px; }
.hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-msg { border-radius: 10px; padding: 14px 16px; font-size: .95rem; margin-bottom: 16px; }
.form-msg-ok { background: #E8F7EF; color: #14663C; border: 1px solid #BFE8D2; }
.form-msg-err { background: #FDECEC; color: #8E2323; border: 1px solid #F5C6C6; }

/* Home contact split */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.contact-points { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 16px; }
.contact-points li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.contact-points svg { color: var(--orange-deep); flex-shrink: 0; margin-top: 3px; }
.contact-points strong { color: var(--navy); display: block; font-family: Poppins; font-size: .97rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad); color: #fff; padding: 52px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { opacity: .92; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: var(--muted-inv); }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 22px 44px;
}
.footer-brand p { font-size: .92rem; margin: 18px 0 22px; max-width: 40ch; }
.footer-social { display: flex; gap: 14px; align-items: center; }
.footer-social a { display: inline-flex; opacity: .95; }
.footer-social a:hover { opacity: 1; transform: translateY(-2px); }
.footer-col h3 {
  color: #fff; font-size: .85rem; letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a, .footer-col p { display: flex; align-items: center; gap: 9px; color: var(--muted-inv); font-size: .93rem; padding: 5px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; padding-bottom: 26px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: .82rem;
}
.footer-bottom > p { flex: 1 1 0; margin: 0; }
.fb-copy    { text-align: left; }
.fb-powered { text-align: center; }
.fb-prices  { text-align: right; }
/* Stack each on its own centred line on narrow screens */
@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer-bottom > p { flex: 0 0 auto; text-align: center; }
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .svc-grid, .price-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .svc-layout, .contact-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-phone span { display: none; }
}
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .hero { padding: 60px 0; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
  .svc-grid, .price-grid, .feature-grid, .steps, .why-grid, .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .nav-toggle { display: block; }
  .header-cta { margin-left: auto; gap: 8px; }
  .header-cta .btn { display: none; }
  .brand svg { height: 32px; width: auto; }
  .header-inner { height: 64px; }
  .main-nav { inset: 64px 0 auto 0; max-height: calc(100vh - 64px); }
  .main-nav {
    display: none; position: fixed; inset: 74px 0 auto 0; z-index: 99;
    background: var(--navy-deep); flex-direction: column; align-items: stretch;
    padding: 12px 18px 22px; gap: 2px; border-bottom: 1px solid rgba(255,255,255,.1);
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .nav-drop { display: block; }
  .nav-drop-menu {
    position: static; display: none; background: rgba(255,255,255,.05); box-shadow: none; min-width: 0;
  }
  .nav-drop.open .nav-drop-menu { display: block; }
  .nav-drop-menu a { color: var(--ink-inv); }
  .nav-drop-menu a:hover { background: rgba(255,255,255,.08); color: #fff; }
  /* Icon-only click-to-call button beside the hamburger */
  .header-phone {
    width: 42px; height: 42px; justify-content: center;
    border: 1.5px solid rgba(255,255,255,.25); border-radius: 50%;
  }
  .header-phone svg { width: 19px; height: 19px; }
}
