/* =========================================================
   Shri Anand Services — Brand Stylesheet
   Clean Spaces. Better Places.
   Palette: Navy #0a1f44 · Gold #c8962a / #e0b13a
   ========================================================= */

:root {
  --navy: #2b4a7e;
  --navy-deep: #1f3a66;
  --navy-light: #3a5d97;
  --gold: #d3a64a;
  --gold-light: #e7c270;
  --gold-soft: #fbf2dd;
  --ink: #3a4250;
  --muted: #7a8398;
  --line: #eef1f7;
  --bg: #ffffff;
  --bg-soft: #f7f9fd;
  --bg-tint: #fcfdff;
  --white: #ffffff;
  --green: #36b56e;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(43, 74, 126, .05);
  --shadow: 0 14px 40px rgba(43, 74, 126, .10);
  --shadow-gold: 0 10px 26px rgba(211, 166, 74, .25);
  --max: 1180px;
  --font: "Segoe UI", "Poppins", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --serif: "Georgia", "Times New Roman", serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--navy); font-weight: 700; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.section { padding: 76px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #dfe6f2; }
.section--navy h2, .section--navy h3 { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 50px;
  font-weight: 600; font-size: .96rem; cursor: pointer;
  border: 2px solid transparent; transition: .25s ease;
  white-space: nowrap;
}
.btn--gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #fff; box-shadow: var(--shadow-gold); }
.btn--gold:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn--ghost { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn--ghost:hover { background: var(--gold); color: #fff; }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-deep); color: #cbd6ea;
  font-size: .82rem; padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar a { color: #cbd6ea; transition: .2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar__left span, .topbar__right a { display: inline-flex; align-items: center; gap: 6px; margin-right: 18px; }
.topbar__right a { margin-right: 0; margin-left: 16px; }
.topbar .badge-off { color: #ffd87a; font-weight: 700; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 50px; height: 50px; border-radius: 50%; flex: 0 0 50px;
  background: radial-gradient(circle at 35% 30%, var(--navy-light), var(--navy-deep));
  display: grid; place-items: center; position: relative;
  border: 2px solid var(--gold); box-shadow: inset 0 0 0 2px rgba(255,255,255,.04);
}
.brand__mark span { font-family: var(--serif); font-weight: 700; font-size: 1.32rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand__mark::after { content: "✦"; position: absolute; top: 4px; right: 8px; font-size: .6rem; color: var(--gold-light); }
.brand__name { font-size: 1.18rem; font-weight: 800; color: var(--navy); letter-spacing: .5px; line-height: 1; }
.brand__name b { color: var(--gold); }
.brand__tag { font-size: .64rem; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; display: block; margin-top: 3px; }

.menu { display: flex; align-items: center; gap: 6px; }
.menu a {
  padding: 9px 14px; font-weight: 600; font-size: .92rem; color: var(--ink);
  border-radius: 8px; transition: .2s; position: relative;
}
.menu a:hover { color: var(--gold); }
.menu a.active { color: var(--navy); }
.menu a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 1.6rem; color: var(--navy); }

/* dropdown */
.has-drop { position: relative; }
.has-drop > a::after { content: " ▾"; font-size: .7rem; }
.drop {
  position: absolute; top: 100%; left: 0; min-width: 230px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s;
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: 9px 12px; border-radius: 8px; font-size: .88rem; }
.drop a:hover { background: var(--bg-soft); color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #44506a; overflow: hidden;
  background:
    radial-gradient(700px 420px at 92% 8%, rgba(231,194,112,.22), transparent 70%),
    radial-gradient(680px 520px at -5% 100%, rgba(58,93,151,.12), transparent 70%),
    linear-gradient(120deg, #f8fafe 0%, #eef3fb 50%, #fbf4e2 100%);
  padding: 92px 0 100px;
}
.hero::before {
  content: ""; position: absolute; top: -90px; right: -60px; width: 320px; height: 320px;
  border-radius: 50%; border: 38px solid rgba(231,194,112,.10); z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(211,166,74,.16); color: #b8852b;
  border: 1px solid rgba(211,166,74,.4); padding: 7px 16px; border-radius: 50px;
  font-size: .82rem; font-weight: 600; margin-bottom: 22px;
}
.hero h1 { color: var(--navy-deep); font-size: 3rem; line-height: 1.12; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: #c79a3c; }
.hero p.lead { font-size: 1.12rem; color: var(--muted); max-width: 540px; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero__stats div b { display: block; font-size: 1.8rem; color: #c79a3c; font-weight: 800; }
.hero__stats div span { font-size: .82rem; color: var(--muted); }
.hero__card {
  background: rgba(255,255,255,.75); border: 1px solid rgba(43,74,126,.10);
  border-radius: 18px; padding: 30px; backdrop-filter: blur(6px); box-shadow: var(--shadow);
}
.hero__card h3 { color: var(--navy); margin-bottom: 18px; font-size: 1.2rem; }
.hero__card ul li { display: flex; gap: 11px; align-items: flex-start; padding: 9px 0; color: var(--ink); border-bottom: 1px dashed var(--line); }
.hero__card ul li:last-child { border-bottom: 0; }
.hero__card .tick { color: var(--gold); font-weight: 700; }

/* ---------- Section heading ---------- */
.head { text-align: center; max-width: 660px; margin: 0 auto 48px; }
.head .kicker { color: var(--gold); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: .8rem; }
.head h2 { font-size: 2.1rem; margin: 10px 0 12px; }
.head p { color: var(--muted); font-size: 1.02rem; }
.head--left { text-align: left; margin-left: 0; }

/* ---------- Feature strip ---------- */
.promise { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.promise__item { text-align: center; padding: 26px 16px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: .25s; }
.promise__item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.promise__ic { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--gold-light); font-size: 1.55rem;
  box-shadow: 0 8px 18px rgba(43,74,126,.25); transition: .3s; }
.promise__item:hover .promise__ic { transform: translateY(-3px) scale(1.05); }
.promise__item h4 { margin-bottom: 6px; font-size: 1.04rem; }
.promise__item p { font-size: .88rem; color: var(--muted); }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff; border-radius: 18px; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: .3s cubic-bezier(.2,.7,.3,1);
  display: flex; flex-direction: column; position: relative;
}
.card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold)); transform: scaleX(0);
  transform-origin: left; transition: transform .3s; z-index: 3;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 22px 48px rgba(43,74,126,.16); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__top {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 24px 22px; display: flex; align-items: center; gap: 14px; position: relative; overflow: hidden;
}
.card__top::after {
  content: "✦"; position: absolute; right: -6px; bottom: -14px; font-size: 4.5rem;
  color: rgba(255,255,255,.06); line-height: 1;
}
.card__ic {
  width: 58px; height: 58px; border-radius: 16px;
  background: #fff; box-shadow: 0 6px 16px rgba(0,0,0,.20);
  display: grid; place-items: center; font-size: 1.75rem; flex: 0 0 58px;
  transition: .3s;
}
.card:hover .card__ic { transform: rotate(-6deg) scale(1.08); }
.card__top h3 { color: #fff; font-size: 1.12rem; position: relative; z-index: 2; }
.card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card__body p { color: var(--muted); font-size: .92rem; margin-bottom: 16px; }
.card__price {
  font-weight: 800; color: var(--navy); font-size: 1.2rem; margin-bottom: 16px;
  padding: 12px 14px; border-radius: 12px; background: var(--bg-soft); border: 1px dashed var(--line);
}
.card__price::before { content: "From "; font-size: .68rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; display: block; }
.card__price s { color: #aeb6c5; font-weight: 500; font-size: .9rem; margin-right: 6px; }
.card__price small { color: var(--green); font-weight: 600; font-size: .78rem; }

/* meta line (used when a card has no price, to balance height) */
.card__meta { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.card__meta span { display: flex; align-items: center; gap: 9px; font-size: .86rem; color: var(--ink); }
.card__meta span .dot { width: 20px; height: 20px; flex: 0 0 20px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; font-size: .7rem; font-weight: 700; }

.card__actions { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); display: flex; gap: 9px; }
.card__actions .btn { flex: 1; justify-content: center; padding: 11px 12px; font-size: .9rem; }
.card__body > .btn { margin-top: auto; }

/* WhatsApp button */
.btn--wa { background: #25d366; color: #fff; flex: 0 0 auto !important; padding: 11px 15px !important; }
.btn--wa svg { width: 16px; height: 16px; }
.btn--wa:hover { background: #1eb858; transform: translateY(-2px); }

/* ---------- Rate list table ---------- */
.rate-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.rate { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.rate__head { background: var(--navy); color: #fff; padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.rate__head .ic { font-size: 1.3rem; color: var(--gold-light); }
.rate__head h3 { color: #fff; font-size: 1.06rem; }
.rate table { width: 100%; border-collapse: collapse; }
.rate td { padding: 12px 20px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.rate tr:last-child td { border-bottom: 0; }
.rate td:first-child { color: var(--ink); font-weight: 500; }
.rate td:last-child { text-align: right; font-weight: 700; color: var(--navy); white-space: nowrap; }
.rate td s { color: #b3b9c6; font-weight: 500; margin-right: 6px; }
.rate__foot { padding: 14px 20px; }

.ribbon { display: inline-block; background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--navy-deep); font-weight: 800; padding: 7px 18px; border-radius: 50px; font-size: .85rem; letter-spacing: .3px; box-shadow: var(--shadow-gold); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { text-align: center; padding: 14px; }
.step__num { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); font-weight: 800; font-size: 1.4rem; display: grid; place-items: center; border: 2px dashed var(--gold); }
.step h4 { margin-bottom: 7px; }
.step p { color: var(--muted); font-size: .9rem; }

/* ---------- Split / About ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.checklist li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; }
.checklist .tick { width: 24px; height: 24px; flex: 0 0 24px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; font-size: .8rem; font-weight: 700; }
.stat-row { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 24px; }
.stat-row div b { display: block; font-size: 2rem; color: var(--gold); font-weight: 800; }
.stat-row div span { color: var(--muted); font-size: .86rem; }

/* ---------- Testimonials ---------- */
.quote { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.quote .stars { color: var(--gold-light); margin-bottom: 12px; }
.quote p { color: var(--ink); font-style: italic; margin-bottom: 16px; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .av { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--gold-light); display: grid; place-items: center; font-weight: 700; }
.quote .who b { display: block; color: var(--navy); }
.quote .who span { font-size: .82rem; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy-light));
  border-radius: 20px; padding: 48px; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-banner::before { content: "✦"; position: absolute; font-size: 12rem; color: rgba(200,150,42,.07); top: -30px; right: 20px; }
.cta-banner h2 { color: #fff; font-size: 2rem; margin-bottom: 12px; }
.cta-banner p { color: #c7d2e6; margin-bottom: 26px; }
.cta-banner .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 18px 22px; font-size: 1.02rem; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q .pm { color: var(--gold); font-size: 1.4rem; transition: .25s; flex: 0 0 auto; }
.faq__item.open .pm { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 22px 20px; color: var(--muted); }

/* ---------- Forms ---------- */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; }
.form-card h3 { margin-bottom: 6px; }
.form-card .sub { color: var(--muted); font-size: .92rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; color: var(--ink); }
.field label .req { color: #c0392b; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .95rem; color: var(--ink); background: var(--bg-tint); transition: .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(200,150,42,.12); }
.field textarea { resize: vertical; min-height: 110px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.alert { padding: 13px 16px; border-radius: var(--radius-sm); font-size: .9rem; margin-bottom: 18px; display: none; }
.alert--ok { background: #e7f7ee; color: #137a44; border: 1px solid #b7e6cb; }
.alert--err { background: #fdeaea; color: #b3322b; border: 1px solid #f3c4c1; }
.alert.show { display: block; }

.info-card { background: var(--navy); color: #d7e0f0; border-radius: var(--radius); padding: 32px; }
.info-card h3 { color: #fff; margin-bottom: 18px; }
.info-card .row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px dashed rgba(255,255,255,.14); }
.info-card .row:last-child { border-bottom: 0; }
.info-card .ic { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 10px; background: rgba(200,150,42,.2); color: var(--gold-light); display: grid; place-items: center; font-size: 1.1rem; }
.info-card .row b { color: #fff; display: block; font-size: .88rem; }
.info-card .row span, .info-card .row a { color: #c7d2e6; font-size: .92rem; }

/* ---------- Auth ---------- */
.auth-wrap { min-height: 70vh; display: grid; place-items: center; padding: 50px 0;
  background: linear-gradient(120deg, var(--bg-soft), #eef2fa); }
.auth-card { background: #fff; width: 100%; max-width: 430px; border-radius: 18px; box-shadow: var(--shadow); padding: 38px; }
.auth-card .brand { justify-content: center; margin-bottom: 8px; }
.auth-card h2 { text-align: center; font-size: 1.5rem; margin-bottom: 4px; }
.auth-card .sub { text-align: center; color: var(--muted); font-size: .9rem; margin-bottom: 26px; }
.auth-tabs { display: flex; background: var(--bg-soft); border-radius: 50px; padding: 5px; margin-bottom: 24px; }
.auth-tabs button { flex: 1; padding: 10px; border: 0; background: none; border-radius: 50px; font-weight: 600; cursor: pointer; color: var(--muted); transition: .2s; }
.auth-tabs button.active { background: var(--navy); color: #fff; }
.auth-alt { text-align: center; margin-top: 18px; font-size: .9rem; color: var(--muted); }
.auth-alt a { color: var(--gold); font-weight: 600; }
.muted-link { display: block; text-align: right; font-size: .82rem; color: var(--gold); margin-top: -8px; margin-bottom: 14px; }

/* ---------- Table (enquiry history) ---------- */
.table-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.data-table th { background: var(--navy); color: #fff; text-align: left; padding: 14px 18px; font-size: .82rem; letter-spacing: .5px; text-transform: uppercase; }
.data-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: .9rem; }
.data-table tr:last-child td { border-bottom: 0; }
.data-table tbody tr:hover { background: var(--bg-tint); }
.tag { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: .76rem; font-weight: 700; }
.tag--new { background: #e8effb; color: #2f5fb3; }
.tag--progress { background: #fff3da; color: #a9772a; }
.tag--done { background: #e7f7ee; color: #137a44; }
.tag--cancel { background: #fdeaea; color: #b3322b; }

.page-hero { background: linear-gradient(120deg, var(--navy-deep), var(--navy-light)); color: #fff; padding: 60px 0; text-align: center; }
.page-hero h1 { color: #fff; font-size: 2.4rem; }
.page-hero p { color: #c7d2e6; margin-top: 10px; }
.breadcrumb { font-size: .85rem; color: #9fb0cf; margin-top: 14px; }
.breadcrumb a:hover { color: var(--gold-light); }

.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.toolbar .filters { display: flex; gap: 10px; flex-wrap: wrap; }
.toolbar select, .toolbar input { padding: 9px 12px; border: 1.5px solid var(--line); border-radius: 8px; font-family: inherit; }

/* ---------- Footer ---------- */
.footer {
  position: relative; color: #c2cde0; padding: 64px 0 0;
  background:
    radial-gradient(900px 300px at 85% -10%, rgba(211,166,74,.10), transparent 60%),
    linear-gradient(180deg, var(--navy-deep), #16294a);
  border-top: 4px solid var(--gold);
}
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 38px; padding-bottom: 42px; }
.footer h4 { color: #fff; margin-bottom: 20px; font-size: 1.04rem; position: relative; padding-bottom: 10px; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; border-radius: 3px; background: var(--gold); }
.footer a { color: #b6c2d8; transition: .2s; }
.footer a:hover { color: var(--gold-light); }
.footer__links li { padding: 6px 0; }
.footer__links li a { display: inline-flex; align-items: center; gap: 8px; }
.footer__links li a::before { content: "›"; color: var(--gold); font-weight: 700; transition: .2s; }
.footer__links li a:hover::before { transform: translateX(3px); }
.footer .brand__mark { width: 46px; height: 46px; flex: 0 0 46px; }
.footer .brand__name { color: #fff; }
.footer p { font-size: .9rem; margin: 16px 0; max-width: 320px; color: #aab6cd; }
.footer .contact-li { display: flex; gap: 11px; padding: 8px 0; font-size: .9rem; align-items: flex-start; }
.footer .contact-li .ic { color: var(--gold-light); flex: 0 0 auto; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); display: grid; place-items: center; transition: .25s; }
.socials a:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-3px); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; font-size: .84rem; color: #93a1bd;
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.footer__bottom b { color: var(--gold-light); font-weight: 600; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 20px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center; font-size: 1.7rem; z-index: 90;
  box-shadow: 0 8px 24px rgba(37,211,102,.5); transition: .25s; }
.wa-float:hover { transform: scale(1.08); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.hide { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero__grid, .split, .form-wrap { grid-template-columns: 1fr; }
  .cards, .promise, .steps, .rate-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.3rem; }
  .nav__toggle { display: block; }
  .menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: #fff; flex-direction: column; align-items: stretch; padding: 80px 18px 30px;
    box-shadow: var(--shadow); transition: right .3s ease; gap: 2px; overflow-y: auto;
  }
  .menu.open { right: 0; }
  .menu a { padding: 13px 14px; border-bottom: 1px solid var(--line); }
  .menu a.active::after { display: none; }
  .has-drop .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: 12px; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(6,21,51,.5); z-index: 99; display: none; }
  .nav-overlay.show { display: block; }
}
@media (max-width: 600px) {
  .cards, .promise, .steps, .rate-grid, .footer__grid, .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
  .hero h1 { font-size: 1.95rem; }
  .head h2, .page-hero h1 { font-size: 1.7rem; }
  .cta-banner { padding: 32px 22px; }
  .topbar__left span:nth-child(2) { display: none; }
}

/* =========================================================
   2026 UPDATE — Lead-gen, trust & SEO components
   ========================================================= */

/* ---------- Contact page (classy) ---------- */
.info-card { background: linear-gradient(160deg, var(--navy-deep), var(--navy-light)); }
.info-card .ic svg { display: block; }
.info-card .row b { letter-spacing: .2px; }
.contact-quick { display: flex; gap: 10px; margin-top: 22px; }
.contact-quick .btn { flex: 1; justify-content: center; gap: 8px; padding: 12px 14px; }
.contact-quick .btn svg { width: 16px; height: 16px; }
.gst-badge { margin-top: 16px; display: flex; align-items: center; gap: 9px; background: rgba(211,166,74,.15);
  color: #e7c270; border: 1px solid rgba(211,166,74,.32); padding: 11px 14px; border-radius: 12px; font-size: .84rem; font-weight: 600; }
.gst-badge svg { width: 18px; height: 18px; flex: 0 0 auto; }
.form-note svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 4px; color: var(--green); }

/* ---------- Service card image ---------- */
.card__img { width: 100%; height: 168px; object-fit: cover; display: block; background: var(--navy); }

/* ---------- Booking list (customer account) ---------- */
.booking-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow-sm); padding:20px 22px; margin-bottom:16px; transition:.2s; }
.booking-card:hover { box-shadow:var(--shadow); }
.booking-card .bk-top { display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap; }
.booking-card .bk-id { font-size:.78rem; color:var(--muted); }
.booking-card h4 { font-size:1.1rem; margin:4px 0; }
.booking-card .bk-meta { font-size:.86rem; color:var(--muted); }
.bk-status { padding:6px 14px; border-radius:50px; font-size:.78rem; font-weight:700; white-space:nowrap; display:inline-block; }
.bk-New { background:#e0f0ff; color:#2f5fb3; }
.bk-Contacted { background:#fff3da; color:#a9772a; }
.bk-Qualified { background:#ede9fe; color:#7c3aed; }
.bk-FollowUp { background:#fef3c7; color:#b45309; }
.bk-Won { background:#e7f7ee; color:#137a44; }
.bk-Lost { background:#fdeaea; color:#b3322b; }
.bk-track { display:flex; gap:6px; margin-top:14px; flex-wrap:wrap; }
.bk-track .tstep { flex:1; min-width:70px; text-align:center; font-size:.7rem; font-weight:600; color:var(--muted); padding:6px 4px; border-radius:8px; background:var(--bg-soft); border:1px solid var(--line); position:relative; }
.bk-track .tstep.done { background:var(--gold-soft); color:#b8852b; border-color:rgba(211,166,74,.4); }
.bk-track .tstep.cur { background:var(--navy); color:#fff; border-color:var(--navy); }
.live-dot { width:9px; height:9px; border-radius:50%; background:var(--green); display:inline-block; margin-right:6px; animation:pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.35;} }

/* ---------- Flash message ---------- */
.flash { position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 200;
  padding: 13px 22px; border-radius: 50px; font-size: .92rem; font-weight: 600; box-shadow: var(--shadow);
  transition: opacity .4s, transform .4s; max-width: 92%; }
.flash--ok { background: #e7f7ee; color: #137a44; border: 1px solid #b7e6cb; }
.flash--err { background: #fdeaea; color: #b3322b; border: 1px solid #f3c4c1; }
.flash--hide { opacity: 0; transform: translateX(-50%) translateY(-20px); pointer-events: none; }

/* ---------- Hero quote card (instant quote form) ---------- */
.quote-card {
  background: rgba(255,255,255,.92); border: 1px solid rgba(43,74,126,.12);
  border-radius: 18px; padding: 26px 26px 28px; box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}
.quote-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.quote-card__head h3 { font-size: 1.22rem; color: var(--navy); }
.quote-card__badge { background: var(--gold-soft); color: #b8852b; font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; border: 1px solid rgba(211,166,74,.4); }
.quote-card .sub { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.quote-card .field { margin-bottom: 12px; }
.quote-card .field input, .quote-card .field select { padding: 11px 13px; }
.quote-card .trust-line { display: flex; align-items: center; gap: 6px; justify-content: center; margin-top: 12px; font-size: .8rem; color: var(--muted); }
.quote-card .trust-line b { color: var(--green); }

/* ---------- Sticky mobile action bar ---------- */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; grid-template-columns: 1fr 1fr 1fr; gap: 0;
  background: #fff; box-shadow: 0 -6px 24px rgba(31,58,102,.16);
  border-top: 1px solid var(--line);
}
.action-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  padding: 10px 6px 11px; font-size: .74rem; font-weight: 700; color: var(--navy);
  text-align: center; border-right: 1px solid var(--line); line-height: 1.1;
}
.action-bar a:last-child { border-right: 0; }
.action-bar a .ab-ic { font-size: 1.15rem; line-height: 1; }
.action-bar a.ab-call { color: var(--navy); }
.action-bar a.ab-wa { color: #1eaa52; }
.action-bar a.ab-book { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #fff; }

/* ---------- Desktop floating action stack ---------- */
.float-stack { position: fixed; right: 20px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.float-stack a {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.55rem; color: #fff; box-shadow: 0 8px 22px rgba(31,58,102,.32); transition: .25s; position: relative;
}
.float-stack a:hover { transform: scale(1.08); }
.float-stack .fs-wa { background: #25d366; box-shadow: 0 8px 24px rgba(37,211,102,.5); }
.float-stack .fs-call { background: var(--navy); }
.float-stack .fs-book { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.float-stack a .fs-tip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--navy-deep); color: #fff; font-size: .76rem; font-weight: 600; white-space: nowrap;
  padding: 6px 12px; border-radius: 8px; opacity: 0; pointer-events: none; transition: .2s;
}
.float-stack a:hover .fs-tip { opacity: 1; right: 64px; }

/* ---------- Trust badges strip ---------- */
.trust-strip { background: var(--navy); padding: 22px 0; }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 30px; }
.trust-strip .ts-item { display: flex; align-items: center; gap: 9px; color: #dfe6f2; font-size: .92rem; font-weight: 600; }
.trust-strip .ts-item .ts-ic {
  width: 30px; height: 30px; border-radius: 50%; flex: 0 0 30px; display: grid; place-items: center;
  background: rgba(211,166,74,.18); color: var(--gold-light); font-size: .9rem;
}

/* ---------- Trust building cards ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.trust-box { text-align: center; padding: 26px 14px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: .25s; }
.trust-box:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(211,166,74,.4); }
.trust-box .tb-ic {
  width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 16px; display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold); font-size: 1.6rem;
}
.trust-box h4 { font-size: 1rem; margin-bottom: 6px; }
.trust-box p { font-size: .82rem; color: var(--muted); }

/* ---------- Google Reviews ---------- */
.greviews-top {
  display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 22px 28px; max-width: 640px; margin: 0 auto 40px;
}
.greviews-top .g-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.greviews-top .g-logo .g-badge {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 1.2rem;
  background: conic-gradient(#4285f4 0 25%, #ea4335 0 50%, #fbbc05 0 75%, #34a853 0); color: #fff;
  box-shadow: var(--shadow-sm); position: relative;
}
.greviews-top .g-badge span { background: #fff; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; color: #4285f4; }
.greviews-top .g-score { text-align: center; }
.greviews-top .g-score b { display: block; font-size: 2rem; color: var(--navy); line-height: 1; }
.greviews-top .g-score .g-stars { color: #fbbc05; font-size: 1.05rem; letter-spacing: 1px; }
.greviews-top .g-score small { color: var(--muted); font-size: .8rem; }
.greviews-top .g-cta { margin-left: auto; }
.review-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.review-card .rc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-card .rc-av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; flex: 0 0 44px; }
.review-card .rc-top b { display: block; color: var(--navy); font-size: .96rem; }
.review-card .rc-top .rc-meta { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.review-card .rc-stars { color: #fbbc05; margin-bottom: 8px; letter-spacing: 1px; }
.review-card p { color: var(--ink); font-size: .92rem; }
.review-card .rc-g { margin-left: auto; font-size: 1.2rem; flex: 0 0 auto; }

/* ---------- Before / After ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ba-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: .25s; }
.ba-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.ba-imgs figure { position: relative; margin: 0; }
.ba-imgs img { width: 100%; height: 180px; object-fit: cover; display: block; }
.ba-imgs figcaption {
  position: absolute; left: 8px; top: 8px; font-size: .68rem; font-weight: 700; letter-spacing: .5px;
  padding: 3px 9px; border-radius: 50px; text-transform: uppercase; color: #fff;
}
.ba-imgs figure.before figcaption { background: rgba(179,50,43,.92); }
.ba-imgs figure.after figcaption { background: rgba(54,181,110,.95); }
.ba-imgs::after {
  content: "➜"; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--gold); display: grid; place-items: center;
  font-weight: 700; box-shadow: var(--shadow); z-index: 2;
}
.ba-card .ba-body { padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ba-card .ba-body h4 { font-size: 1rem; }
.ba-card .ba-body span { font-size: .8rem; color: var(--green); font-weight: 600; }

/* ---------- Local areas / SEO chips ---------- */
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-chips a {
  background: #fff; border: 1px solid var(--line); padding: 9px 18px; border-radius: 50px;
  font-size: .88rem; font-weight: 600; color: var(--navy); box-shadow: var(--shadow-sm); transition: .2s;
  display: inline-flex; align-items: center; gap: 7px;
}
.area-chips a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.area-chips a::before { content: "📍"; font-size: .85rem; }

/* ---------- Service page intro split ---------- */
.svc-points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin: 18px 0 24px; }
.svc-points li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; }
.svc-points .tick { width: 22px; height: 22px; flex: 0 0 22px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; font-size: .72rem; font-weight: 700; }

/* ---------- Responsive (new components) ---------- */
@media (max-width: 940px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .float-stack { display: none; }
  .action-bar { display: grid; }
  body { padding-bottom: 62px; }
  .greviews-top { flex-direction: column; text-align: center; }
  .greviews-top .g-cta { margin: 0; }
  .wa-float { display: none; }
}
@media (max-width: 600px) {
  .trust-grid, .ba-grid, .svc-points { grid-template-columns: 1fr; }
  .trust-strip .container { gap: 12px 18px; }
  .trust-strip .ts-item { font-size: .84rem; }
}
