/* =========================================================
   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; }
}
