/* ============================================================
   AFTR — Healthy Home Services · shared design system
   Palette keyed to logo (logo.webp): orange leaf/roof,
   aqua droplet, navy wordmark.  (CLAUDE-DESIGN.md §5)
   ============================================================ */

:root {
  --bg:        #FFFFFF;
  --surface:   #F4F8FA;   /* soft cool grey-white */
  --surface-2: #ECF3F6;
  --text:      #16252F;   /* logo navy */
  --muted:     #5C6B7A;   /* tagline grey-blue */
  --primary:   #F26A21;   /* AFTR orange */
  --primary-d: #D9550F;
  --secondary: #17A1BF;   /* aqua */
  --secondary-d:#0E7E97;
  --accent:    #FFB347;   /* warm amber */
  --border:    #E2E8ED;
  --focus:     #17A1BF;
  --ink-deep:  #0E1A22;   /* near-black navy for dark bands */

  --maxw: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(16,37,49,.06), 0 2px 6px rgba(16,37,49,.05);
  --shadow:    0 6px 18px rgba(16,37,49,.08), 0 2px 6px rgba(16,37,49,.05);
  --shadow-lg: 0 24px 60px rgba(16,37,49,.16), 0 8px 22px rgba(16,37,49,.08);

  --font-head: "Sora", system-ui, -apple-system, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: 24px; }
.section { padding-block: 72px; }
@media (min-width: 768px){ .section { padding-block: 104px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--secondary-d);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--secondary);
  display: inline-block; border-radius: 2px;
}
.eyebrow.is-center { }

.h-display { font-size: clamp(34px, 6vw, 60px); }
.h1 { font-size: clamp(30px, 5vw, 46px); }
.h2 { font-size: clamp(26px, 3.6vw, 38px); }
.h3 { font-size: clamp(20px, 2.4vw, 24px); }
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--muted); line-height: 1.6; }

.section-head { max-width: 640px; }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head .h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; }

/* ---------- buttons ---------- */
.btn {
  --b: var(--primary);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  line-height: 1; padding: 15px 24px; border-radius: 100px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  min-height: 50px; white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(242,106,33,.28); }
.btn-primary:hover { background: var(--primary-d); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(242,106,33,.34); }
.btn-wa { background: #25D366; color: #08331b; box-shadow: 0 8px 20px rgba(37,211,102,.26); }
.btn-wa:hover { background: #1fbb59; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(37,211,102,.32); color:#06280f; }
.btn-ghost { background: #fff; color: var(--text); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--secondary); color: var(--secondary-d); transform: translateY(-2px); }
.btn-outline-light { background: rgba(255,255,255,.08); color:#fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background:#fff; color: var(--ink-deep); transform: translateY(-2px); }
.btn-lg { padding: 17px 30px; font-size: 17px; min-height: 56px; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 0; flex: none; }
.brand img { height: 54px; width: auto; }
@media (max-width: 600px){ .brand img { height: 42px; } .header-inner { height: 66px; } }

.nav { display: none; margin-left: 14px; gap: 4px; }
.nav a {
  font-family: var(--font-head); font-weight: 500; font-size: 15px;
  color: var(--text); padding: 10px 14px; border-radius: 8px;
  transition: background .18s, color .18s; position: relative;
}
.nav a:hover { background: var(--surface); color: var(--secondary-d); }
.nav a.active { color: var(--primary); }
.header-cta { margin-left: auto; display: none; align-items: center; gap: 10px; }
@media (min-width: 1000px){ .nav { display: flex; } .header-cta { display: flex; } }

.header-call {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; color: var(--text);
}
.header-call small { display:block; font-weight:500; font-size:11px; color: var(--muted); letter-spacing:.04em; }
.header-call .ic { width:38px;height:38px;border-radius:50%;background:var(--surface);display:grid;place-items:center;color:var(--secondary-d); }
.header-call:hover { color: var(--secondary-d); }

/* mobile menu toggle */
.menu-btn {
  margin-left: auto; display: inline-flex; align-items:center; justify-content:center;
  width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--border);
  background: #fff; cursor: pointer; color: var(--text);
}
@media (min-width: 1000px){ .menu-btn { display: none; } }
.menu-btn svg { width: 24px; height: 24px; }

.mobile-nav {
  position: fixed; inset: 0; z-index: 70; background: rgba(14,26,34,.5);
  backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity .25s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: #fff; padding: 22px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .3s var(--ease); box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-panel .mn-head { display:flex; align-items:center; justify-content:space-between; margin-bottom: 12px; }
.mobile-nav-panel .mn-head img { height: 40px; }
.mobile-nav-panel a.mn-link {
  font-family: var(--font-head); font-weight: 600; font-size: 18px; padding: 14px 12px;
  border-radius: 10px; color: var(--text); border-bottom: 1px solid var(--border);
}
.mobile-nav-panel a.mn-link:hover { background: var(--surface); color: var(--primary); }
.mn-cta { margin-top: 18px; display: grid; gap: 10px; }
.close-x { width:42px;height:42px;border:1px solid var(--border);border-radius:10px;background:#fff;cursor:pointer;display:grid;place-items:center;color:var(--text); }

/* ---------- cards / pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 100px; font-size: 14px; font-weight: 500;
  color: var(--text);
}
.pill svg { width: 16px; height: 16px; color: var(--secondary-d); }

/* trust strip */
.trust { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 560px){ .trust { grid-template-columns: 1fr 1fr; } }
@media (min-width: 920px){ .trust { grid-template-columns: repeat(4,1fr); } }
.trust-item { background: #fff; padding: 26px 24px; display: flex; gap: 14px; align-items: flex-start; }
.trust-item .ic {
  width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: color-mix(in srgb, var(--secondary) 12%, #fff); color: var(--secondary-d);
}
.trust-item .ic svg { width: 24px; height: 24px; }
.trust-item h3 { font-size: 17px; }
.trust-item p { font-size: 14.5px; color: var(--muted); margin-top: 4px; }

/* service grid */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 600px){ .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px){ .svc-grid { grid-template-columns: repeat(3,1fr); } }
.svc-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb,var(--secondary) 40%, var(--border)); }
.svc-media { position: relative; aspect-ratio: 16/11; background: var(--surface); overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.05); }
.svc-tag {
  position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.94);
  color: var(--secondary-d); font-family: var(--font-head); font-weight: 600; font-size: 12px;
  padding: 6px 12px; border-radius: 100px; letter-spacing: .03em; box-shadow: var(--shadow-sm);
}
.svc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-size: 20px; }
.svc-body p { font-size: 15px; color: var(--muted); margin-top: 8px; flex: 1; }
.svc-link {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--primary);
}
.svc-link svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* before / after slider */
.ba {
  position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg);
  overflow: hidden; user-select: none; touch-action: none; box-shadow: var(--shadow);
  cursor: ew-resize; background: var(--surface);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba .after-wrap { position: absolute; inset: 0; overflow: hidden; width: 50%; }
.ba .after-wrap img { width: 100%; }
.ba .ba-label {
  position: absolute; bottom: 16px; z-index: 4; font-family: var(--font-head);
  font-weight: 600; font-size: 13px; padding: 7px 14px; border-radius: 100px;
  backdrop-filter: blur(4px); letter-spacing:.03em;
}
.ba .lbl-before { right: 16px; background: rgba(14,26,34,.7); color: #fff; }
.ba .lbl-after { left: 16px; background: var(--secondary); color: #fff; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; width: 3px; background: #fff; z-index: 5;
  transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}
.ba-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px; border-radius: 50%; background: #fff; box-shadow: var(--shadow);
  display: grid; place-items: center; color: var(--secondary-d);
}
.ba-grip svg { width: 24px; height: 24px; }

/* approach split */
.split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px){ .split { grid-template-columns: 1.05fr 1fr; gap: 64px; } .split.rev > :first-child { order: 2; } }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.check-list .ck {
  width: 26px; height: 26px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: color-mix(in srgb,var(--secondary) 14%,#fff); color: var(--secondary-d); margin-top: 1px;
}
.check-list .ck svg { width: 15px; height: 15px; }

/* areas */
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.chip {
  font-family: var(--font-head); font-weight: 500; font-size: 15px;
  padding: 11px 18px; border-radius: 100px; background: #fff; border: 1px solid var(--border);
  color: var(--text); transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--secondary); color: var(--secondary-d); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: var(--ink-deep); color: #fff; border-radius: var(--radius-lg); }
.cta-band .wrap { padding-block: 56px; position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.78); margin-top: 14px; }
.cta-band .glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; z-index: 1; }
.cta-band .g1 { width: 340px; height: 340px; background: var(--primary); top: -120px; right: -60px; }
.cta-band .g2 { width: 300px; height: 300px; background: var(--secondary); bottom: -140px; left: -50px; opacity:.5; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink-deep); color: rgba(255,255,255,.72); padding-block: 64px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 720px){ .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px){ .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer-brand img { height: 78px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; color: rgba(255,255,255,.62); max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-head); }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.72); font-size: 15px; padding: 5px 0; transition: color .18s; }
.footer-col a:hover { color: var(--accent); }
.footer-contact a { display:flex; gap:10px; align-items:flex-start; }
.footer-contact svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--secondary); }
.socials { display: flex; gap: 10px; margin-top: 6px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s; }
.socials a:hover { background: var(--primary); transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 52px; padding-block: 24px; }
.footer-bottom .wrap { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center; font-size: 13.5px; color: rgba(255,255,255,.5); }

/* ---------- sticky mobile action bar ---------- */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 65;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border); display: grid; grid-template-columns: repeat(3,1fr);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom)); gap: 8px;
  box-shadow: 0 -6px 20px rgba(16,37,49,.08);
}
@media (min-width: 1000px){ .mobile-bar { display: none; } }
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  padding: 9px 4px; border-radius: 12px; font-family: var(--font-head); font-weight: 600;
  font-size: 12.5px; min-height: 52px; color: var(--text);
}
.mobile-bar a svg { width: 21px; height: 21px; }
.mobile-bar .mb-wa { background: #25D366; color: #06280f; }
.mobile-bar .mb-call { background: var(--surface); color: var(--secondary-d); }
.mobile-bar .mb-book { background: var(--primary); color: #fff; }
body.has-mobile-bar { padding-bottom: 76px; }
@media (min-width: 1000px){ body.has-mobile-bar { padding-bottom: 0; } }

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

/* utility */
.note-box {
  background: color-mix(in srgb, var(--accent) 14%, #fff); border: 1px dashed color-mix(in srgb,var(--primary) 50%, var(--border));
  border-radius: var(--radius); padding: 16px 18px; font-size: 14px; color: var(--text);
  display: flex; gap: 12px; align-items: flex-start;
}
.note-box svg { width: 20px; height: 20px; color: var(--primary); flex: none; margin-top: 1px; }
.arabic { font-size: 15px; color: var(--secondary-d); font-weight: 600; }

/* ============================================================
   Inner pages
   ============================================================ */
/* page hero (sub-pages) */
.page-hero { position: relative; background: var(--ink-deep); overflow: hidden; color: #fff; }
.page-hero .ph-media { position: absolute; inset: 0; }
.page-hero .ph-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero .ph-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(10,18,24,.94) 0%, rgba(10,18,24,.80) 42%, rgba(10,18,24,.45) 78%, rgba(10,18,24,.25) 100%);
}
.page-hero .wrap { position: relative; z-index: 2; padding-block: 64px 72px; }
@media (min-width:768px){ .page-hero .wrap { padding-block: 92px 96px; } }
.page-hero.plain { background: var(--surface); color: var(--text); }
.page-hero.plain .wrap { padding-block: 56px 56px; }
@media (min-width:768px){ .page-hero.plain .wrap { padding-block: 80px 72px; } }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 13.5px; margin-bottom: 18px; font-family: var(--font-head); font-weight: 500; }
.crumbs a { opacity: .8; } .crumbs a:hover { opacity: 1; color: var(--accent); }
.page-hero.plain .crumbs a:hover { color: var(--primary); }
.crumbs .sep { opacity: .5; }
.page-hero h1 { color: inherit; font-size: clamp(32px, 5.4vw, 52px); max-width: 760px; }
.page-hero.plain h1 { color: var(--text); }
.page-hero .lead { margin-top: 18px; max-width: 620px; }
.page-hero:not(.plain) .lead { color: rgba(255,255,255,.84); }
.page-hero .ph-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* generic content prose */
.prose { max-width: 760px; }
.prose p { margin-top: 18px; color: var(--text); font-size: 17px; }
.prose p:first-child { margin-top: 0; }

/* included-features grid */
.feat-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 8px; }
@media (min-width: 620px){ .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px){ .feat-grid { grid-template-columns: repeat(3,1fr); } }
.feat {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feat .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px;
  background: color-mix(in srgb,var(--secondary) 12%,#fff); color: var(--secondary-d); }
.feat .ic svg { width: 24px; height: 24px; }
.feat h3 { font-size: 18px; }
.feat p { font-size: 14.5px; color: var(--muted); margin-top: 8px; }

/* process steps */
.steps { display: grid; grid-template-columns: 1fr; gap: 16px; counter-reset: step; }
@media (min-width: 640px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px){ .steps { grid-template-columns: repeat(4,1fr); } }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px 24px; overflow: hidden;
}
.step .sn {
  font-family: var(--font-head); font-weight: 800; font-size: 40px; line-height: 1;
  color: color-mix(in srgb,var(--secondary) 30%, #fff); margin-bottom: 12px;
}
.step h3 { font-size: 17px; }
.step p { font-size: 14px; color: var(--muted); margin-top: 7px; }
.step::after { content:""; position:absolute; left:0; top:0; bottom:0; width:4px; background:var(--secondary); opacity:.5; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
@media (min-width: 760px){ .gallery { grid-template-columns: repeat(3,1fr); } }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--surface); border:1px solid var(--border); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery.tall figure { aspect-ratio: 3/4; }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 4px 22px;
  transition: box-shadow .2s, border-color .2s;
}
.faq details[open] { box-shadow: var(--shadow); border-color: color-mix(in srgb,var(--secondary) 36%,var(--border)); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-family: var(--font-head); font-weight: 600;
  font-size: 17px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 26px; height: 26px; flex: none; position: relative; }
.faq summary .pm::before, .faq summary .pm::after { content:""; position:absolute; background: var(--secondary-d); border-radius: 2px; transition: transform .25s var(--ease); }
.faq summary .pm::before { top: 12px; left: 4px; right: 4px; height: 2.4px; }
.faq summary .pm::after { left: 12px; top: 4px; bottom: 4px; width: 2.4px; }
.faq details[open] summary .pm::after { transform: scaleY(0); }
.faq details p { padding: 0 0 20px; color: var(--muted); font-size: 15.5px; margin: 0; }

/* contact / form */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 920px){ .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; } }
.contact-cards { display: grid; gap: 14px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-card .ic { width: 50px; height: 50px; border-radius: 14px; flex: none; display: grid; place-items: center;
  background: color-mix(in srgb,var(--primary) 12%,#fff); color: var(--primary-d); }
.contact-card .ic svg { width: 24px; height: 24px; }
.contact-card .ic.aqua { background: color-mix(in srgb,var(--secondary) 14%,#fff); color: var(--secondary-d); }
.contact-card .ic.green { background: color-mix(in srgb,#25D366 16%,#fff); color: #128a3e; }
.contact-card h3 { font-size: 16px; }
.contact-card a, .contact-card p { font-size: 15.5px; color: var(--muted); margin-top: 4px; word-break: break-word; }
.contact-card a:hover { color: var(--secondary-d); }

.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
@media (min-width: 600px){ .form-card { padding: 38px; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--text);
  padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 12px; background: var(--surface);
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--secondary); background: #fff; box-shadow: 0 0 0 4px color-mix(in srgb,var(--secondary) 16%, transparent);
}
.field-row { display: grid; grid-template-columns: 1fr; gap: 0 16px; }
@media (min-width: 560px){ .field-row { grid-template-columns: 1fr 1fr; } }
.form-msg { display: none; margin-top: 4px; padding: 14px 16px; border-radius: 12px; font-size: 14.5px; font-weight: 500; }
.form-msg.show { display: block; }
.form-msg.ok { background: color-mix(in srgb,#25D366 14%,#fff); color: #0c7a37; border: 1px solid color-mix(in srgb,#25D366 40%,#fff); }

/* map placeholder */
.map-ph {
  border: 2px dashed color-mix(in srgb,var(--secondary) 45%, var(--border)); border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(45deg, var(--surface) 0 14px, var(--surface-2) 14px 28px);
  min-height: 280px; display: grid; place-items: center; text-align: center; padding: 32px;
}
.map-ph .inner { max-width: 380px; }
.map-ph .ic { width: 56px; height: 56px; border-radius: 50%; background: #fff; box-shadow: var(--shadow); display: grid; place-items: center; margin: 0 auto 16px; color: var(--secondary-d); }
.map-ph .ic svg { width: 28px; height: 28px; }
.map-ph h3 { font-size: 18px; } .map-ph p { color: var(--muted); font-size: 14.5px; margin-top: 8px; }

/* split feature list cards (areas page) */
.area-cluster { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 720px){ .area-cluster { grid-template-columns: 1fr 1fr; } }
.area-group { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.area-group h3 { font-size: 18px; display: flex; align-items: center; gap: 10px; }
.area-group h3 svg { width: 20px; height: 20px; color: var(--secondary-d); }
.area-group .chips { margin-top: 18px; }

/* about values */
.values { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px){ .values { grid-template-columns: 1fr 1fr; } }
.value { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); }
.value .ic { width: 48px; height: 48px; border-radius: 12px; flex: none; display: grid; place-items: center; background: #fff; color: var(--primary-d); box-shadow: var(--shadow-sm); }
.value .ic svg { width: 24px; height: 24px; }
.value h3 { font-size: 18px; } .value p { color: var(--muted); font-size: 14.5px; margin-top: 6px; }

/* related services */
.rel-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px){ .rel-grid { grid-template-columns: repeat(3,1fr); } }
.rel { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s; }
.rel:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb,var(--secondary) 36%,var(--border)); }
.rel .ic { width: 42px; height: 42px; border-radius: 10px; flex: none; display: grid; place-items: center; background: color-mix(in srgb,var(--secondary) 12%,#fff); color: var(--secondary-d); }
.rel .ic svg { width: 22px; height: 22px; }
.rel h3 { font-size: 15.5px; } .rel span { font-size: 13px; color: var(--muted); }
