/* IslamabadCleaners design system v2
   Deep petrol + warm ivory + burnished gold. Dark header/hero for presence,
   warm light ground for readability, WhatsApp green reserved for WhatsApp.
   Type: Fraunces (display) + Figtree (body). One spacing scale, one shadow,
   one radius, one transition. */

/* ---------- fonts ---------- */
@font-face { font-family: "Fraunces"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/fraunces-v38-latin-600.woff2") format("woff2"); }
@font-face { font-family: "Fraunces"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/fraunces-v38-latin-700.woff2") format("woff2"); }
@font-face { font-family: "Figtree"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/figtree-v9-latin-regular.woff2") format("woff2"); }
@font-face { font-family: "Figtree"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/figtree-v9-latin-500.woff2") format("woff2"); }
@font-face { font-family: "Figtree"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/figtree-v9-latin-700.woff2") format("woff2"); }

/* ---------- tokens ---------- */
:root {
  --ink: #0F2E33;
  --ink-deep: #0A2126;
  --pine: #23695C;
  --cream: #FAF7F0;
  --sand: #F1EBDD;
  --gold: #D9A441;
  --paper: #ffffff;
  --wa: #25D366;
  --wa-deep: #1DAA53;
  --text: #33484D;
  --muted: #5F7276;
  --line: #E6DFCF;
  --on-ink: #EAF2EF;
  --on-ink-muted: #A9C6BF;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;

  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px;

  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 12px 32px rgba(15, 46, 51, .10);
  --tr: 200ms ease;
  --wrap: 1140px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
}
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pine); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--s5); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: var(--s3) var(--s4);
}
.skip-link:focus { left: 0; }

/* ---------- type ---------- */
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 600; color: var(--ink); line-height: 1.12; }
h1 { font-size: clamp(36px, 5.2vw, 58px); letter-spacing: -0.8px; }
h2 { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -0.4px; }
h3 { font-size: clamp(19px, 2.2vw, 22px); line-height: 1.3; }
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--pine); margin-bottom: var(--s4);
}
.eyebrow::before { content: ""; display: inline-block; width: 22px; height: 3px; background: var(--gold); border-radius: 2px; margin-right: var(--s3); vertical-align: middle; }
.lead { font-size: clamp(17px, 2vw, 19px); color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  font-family: var(--font-body); font-size: 16px; font-weight: 700; line-height: 1;
  padding: 17px 30px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; white-space: nowrap; transition: transform var(--tr), background var(--tr), color var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn svg { flex: none; }
.btn-wa { background: var(--wa); color: var(--ink-deep); box-shadow: 0 6px 18px rgba(37, 211, 102, .30); }
.btn-wa:hover { background: var(--wa-deep); color: #fff; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.on-ink .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.on-ink .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.cta-trust { font-size: 14px; color: var(--muted); margin-top: var(--s3); }
.on-ink .cta-trust { color: var(--on-ink-muted); }

/* ---------- header (dark) ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--ink-deep); }
.nav { display: flex; align-items: center; gap: var(--s5); min-height: 74px; }
.brand { display: flex; align-items: center; gap: var(--s3); font-family: var(--font-display); font-weight: 700; font-size: 24px; color: #fff; }
.brand:hover { text-decoration: none; }
.brand img { width: 34px; height: 34px; }
.nav-links { display: flex; align-items: center; gap: var(--s5); list-style: none; margin: 0 0 0 auto; padding: 0; }
.nav-links a { color: var(--on-ink); font-weight: 500; font-size: 16px; }
.nav-links a:hover { color: var(--gold); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--gold); font-weight: 700; }
.nav-cta { margin-left: var(--s2); }
.nav-cta .btn { padding: 12px 22px; font-size: 15px; box-shadow: none; }
.nav-phone { font-weight: 700; color: #fff; }
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 0; padding: var(--s2);
  cursor: pointer; color: #fff;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink-deep);
    padding: var(--s3) var(--s5) var(--s5); box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,.10); }
  .nav-links li:last-child, .nav-links li.nav-cta { border-bottom: 0; }
  .nav-links a { display: block; padding: var(--s4) 0; }
  .nav-cta { margin: var(--s4) 0 0; }
  .nav-cta .btn { width: 100%; }
}

/* ---------- hero (home, dark) ---------- */
.hero { background: var(--ink); padding: var(--s8) 0 var(--s9); }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s8); align-items: center; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: #fff; margin-bottom: var(--s5); }
.hero .lead { color: var(--on-ink-muted); margin-bottom: var(--s6); max-width: 34em; }
.cta-row { display: flex; flex-wrap: wrap; gap: var(--s4); align-items: center; }
.trust-row { display: flex; flex-wrap: wrap; gap: var(--s4) var(--s5); margin-top: var(--s6); padding-top: var(--s5); border-top: 1px solid rgba(255,255,255,.14); }
.trust-row li { list-style: none; display: flex; align-items: center; gap: var(--s2); font-size: 15px; font-weight: 500; color: var(--on-ink-muted); }
.trust-row svg { color: var(--gold); flex: none; }

/* The signature: arched photo on a solid gold offset backdrop */
.arch { position: relative; isolation: isolate; margin: 0 18px 18px 0; }
.arch img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 999px 999px var(--radius) var(--radius);
}
.arch::before {
  content: ""; position: absolute; inset: 0; transform: translate(18px, 18px);
  background: var(--gold);
  border-radius: 999px 999px var(--radius) var(--radius);
  z-index: -1;
}

@media (max-width: 960px) {
  .hero { padding: var(--s7) 0; }
  .hero .wrap { grid-template-columns: 1fr; gap: var(--s7); }
  .hero .arch { max-width: 420px; margin: 0 auto; }
}

/* ---------- sections ---------- */
.section { padding: var(--s9) 0; }
.section-mist { background: var(--sand); }
.section-ink { background: var(--ink); }
.section-ink h2, .section-ink h3 { color: #fff; }
.section-ink p, .section-ink li { color: var(--on-ink-muted); }
.section-ink .eyebrow { color: var(--gold); }
.section-head { max-width: 640px; margin-bottom: var(--s7); }
.section-head p { margin-top: var(--s4); color: var(--muted); }
.section-ink .section-head p { color: var(--on-ink-muted); }
@media (max-width: 700px) { .section { padding: var(--s8) 0; } }

/* ---------- service cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: var(--s5); }
.card {
  display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); text-decoration: none; }
.card img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; transition: transform var(--tr); }
.card:hover img { transform: scale(1.04); }
.card-body { display: flex; flex-direction: column; flex: 1; padding: var(--s5); background: var(--paper); position: relative; }
.card h3 { margin-bottom: var(--s2); }
.card p { font-size: 15px; color: var(--muted); flex: 1; }
.card .card-more { margin-top: var(--s4); font-weight: 700; font-size: 15px; color: var(--pine); }
.card:hover .card-more { text-decoration: underline; }
.grid-foot { margin-top: var(--s6); text-align: center; }

/* ---------- steps (how it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); counter-reset: step; list-style: none; padding: 0; }
.steps li { counter-increment: step; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 58px; line-height: 1; color: var(--gold); margin-bottom: var(--s4);
}
.steps h3 { margin-bottom: var(--s2); }
.steps p { font-size: 15.5px; color: var(--muted); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: var(--s7); } }

/* ---------- promise ---------- */
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.promise-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s6); }
.promise-card svg { color: var(--gold); margin-bottom: var(--s4); }
.promise-card h3 { margin-bottom: var(--s3); }
.promise-card p { font-size: 15.5px; color: var(--muted); }
@media (max-width: 860px) { .promise-grid { grid-template-columns: 1fr; } }

/* ---------- reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s5); }
.review-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s6); }
.review-card .stars { color: var(--gold); display: flex; gap: 3px; margin-bottom: var(--s3); }
.review-text { font-size: 16.5px; color: var(--text); margin-bottom: var(--s4); }
.review-who { font-size: 14.5px; font-weight: 700; color: var(--muted); }
@media (max-width: 700px) { .review-grid { grid-template-columns: 1fr; } }

/* ---------- areas ---------- */
.areas-cols { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s7); margin-top: var(--s6); }
.areas-cols h3 { color: var(--gold); font-size: 17px; letter-spacing: .5px; margin-bottom: var(--s4); }
.areas-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: var(--s2) var(--s3); }
.areas-list li {
  font-size: 14.5px; color: #fff; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16); border-radius: 100px; padding: 6px 14px;
}
@media (max-width: 700px) { .areas-cols { grid-template-columns: 1fr; gap: var(--s6); } }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: var(--s3); }
.cta-band p { max-width: 38em; margin: 0 auto var(--s6); }
.cta-band .cta-row { justify-content: center; }

/* ---------- page hero (inner pages, dark) ---------- */
.page-hero { background: var(--ink); padding: var(--s7) 0 var(--s8); }
.page-hero .wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--s8); align-items: center; }
.page-hero h1 { color: #fff; margin-bottom: var(--s4); }
.page-hero .lead { color: var(--on-ink-muted); margin-bottom: var(--s5); }
.page-hero .arch { max-width: 360px; justify-self: end; }
.page-hero .arch img { aspect-ratio: 1 / 1; }
.crumbs { list-style: none; display: flex; flex-wrap: wrap; gap: var(--s2); padding: 0; margin-bottom: var(--s5); font-size: 14px; }
.crumbs li + li::before { content: "/"; color: var(--on-ink-muted); margin-right: var(--s2); }
.crumbs a { color: var(--on-ink-muted); }
.crumbs [aria-current] { color: #fff; font-weight: 500; }
@media (max-width: 860px) {
  .page-hero .wrap { grid-template-columns: 1fr; gap: var(--s6); }
  .page-hero .arch { display: none; }
}

/* ---------- article + aside (service pages) ---------- */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: var(--s8); padding: var(--s8) 0; }
.article h2 { margin: var(--s7) 0 var(--s4); }
.article h2:first-child { margin-top: 0; }
.article h3 { margin: var(--s5) 0 var(--s2); }
.article p { margin-bottom: var(--s4); }
.article ul, .article ol { padding-left: 0; margin-bottom: var(--s4); }

.aside-box {
  position: sticky; top: 98px;
  background: var(--ink); color: #fff; border-radius: var(--radius);
  border-top: 4px solid var(--gold);
  padding: var(--s6);
}
.aside-box h2 { color: #fff; font-size: 24px; margin-bottom: var(--s3); }
.aside-box p { color: var(--on-ink-muted); font-size: 15px; margin-bottom: var(--s5); }
.aside-box .btn { width: 100%; margin-bottom: var(--s3); }
.aside-box .aside-phone { display: block; text-align: center; color: #fff; font-weight: 700; font-size: 18px; margin-top: var(--s2); }
.aside-box .cta-trust { color: var(--on-ink-muted); text-align: center; }
@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; }
  .aside-box { position: static; }
}

/* checklists */
.checklist, .exclist { list-style: none; }
.checklist li, .exclist li {
  display: flex; gap: var(--s3); align-items: flex-start;
  padding: var(--s3) 0; border-bottom: 1px solid var(--line); font-size: 16px;
}
.checklist svg, .exclist svg { flex: none; margin-top: 5px; }
.checklist svg { color: var(--pine); }
.exclist svg { color: var(--muted); }

/* numbered process */
.process { list-style: none; counter-reset: proc; }
.process li { counter-increment: proc; display: grid; grid-template-columns: 56px 1fr; gap: var(--s4); padding: var(--s4) 0; }
.process li::before {
  content: counter(proc, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 700; font-size: 34px;
  color: var(--gold); line-height: 1.1;
}
.process h3 { margin: 0 0 var(--s1); }
.process p { margin: 0; font-size: 15.5px; color: var(--muted); }

/* price factors */
.factors { list-style: none; }
.factors li { padding: var(--s4) 0; border-bottom: 1px solid var(--line); }
.factors h3 { margin: 0 0 var(--s1); font-size: 17px; font-family: var(--font-body); font-weight: 700; }
.factors p { margin: 0; font-size: 15.5px; color: var(--muted); }

/* FAQ */
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: var(--s4);
  align-items: center; padding: var(--s4) 0; font-weight: 700; font-size: 17px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 24px; color: var(--gold); flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 0 var(--s4); color: var(--muted); }

/* mid-article CTA */
.article-cta {
  background: var(--sand); border-radius: var(--radius);
  padding: var(--s6); margin: var(--s6) 0; text-align: center;
}
.article-cta p { font-weight: 500; color: var(--ink); margin-bottom: var(--s4); }

/* areas inline (service pages) */
.areas-inline { list-style: none; display: flex; flex-wrap: wrap; gap: var(--s2) var(--s3); }
.areas-inline li {
  font-size: 14.5px; color: var(--pine); background: var(--sand);
  border-radius: 100px; padding: 6px 14px;
}

/* related */
.related { padding: var(--s8) 0; border-top: 1px solid var(--line); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink-deep); color: var(--on-ink-muted); padding: var(--s8) 0 0; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: var(--s7); padding-bottom: var(--s7); }
.footer-grid .footer-title { color: var(--gold); font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 var(--s4); }
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: var(--s2); }
.footer-grid a { color: var(--on-ink-muted); }
.footer-grid a:hover { color: #fff; }
.footer-brand { display: flex; align-items: center; gap: var(--s3); font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #fff; margin-bottom: var(--s4); }
.footer-brand img { width: 30px; height: 30px; }
.footer-contact li { display: flex; gap: var(--s2); align-items: flex-start; }
.footer-contact svg { flex: none; margin-top: 4px; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: var(--s5) 0; display: flex; flex-wrap: wrap; gap: var(--s3); justify-content: space-between; font-size: 14px; }
.footer-bottom a { color: var(--on-ink-muted); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: var(--s6); } }

/* ---------- floating / sticky CTAs ---------- */
.float-wa {
  position: fixed; right: var(--s5); bottom: var(--s5); z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--wa); color: var(--ink-deep); box-shadow: 0 8px 24px rgba(37, 211, 102, .40);
  transition: transform var(--tr);
}
.float-wa:hover { transform: translateY(-3px); }
.mobile-bar { display: none; }
@media (max-width: 700px) {
  .float-wa { display: none; }
  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    display: grid; grid-template-columns: 1.4fr 1fr;
    box-shadow: 0 -6px 20px rgba(10, 33, 38, .25);
  }
  .mobile-bar a {
    display: flex; align-items: center; justify-content: center; gap: var(--s2);
    padding: 15px var(--s3); font-weight: 700; font-size: 16px;
  }
  .mobile-bar a:hover { text-decoration: none; }
  .mobile-bar .bar-wa { background: var(--wa); color: var(--ink-deep); }
  .mobile-bar .bar-call { background: var(--ink); color: #fff; }
  body { padding-bottom: 56px; }
}

/* ---------- 404 ---------- */
.page-404 { text-align: center; padding: var(--s9) 0; }
.page-404 .display { font-size: clamp(72px, 14vw, 140px); color: var(--sand); -webkit-text-stroke: 2px var(--gold); line-height: 1; }
.page-404 h1 { margin: var(--s4) 0; }
.page-404 p { color: var(--muted); margin-bottom: var(--s6); }
