/* ============================================================
   Hyuco Employment Agency Pte Ltd — Site Stylesheet
   Design: Trust & Authority · brand navy/blue/green
   ============================================================ */

:root {
  /* Brand */
  --navy-900: #0E1830;
  --navy: #14213D;
  --blue: #00489C;
  --blue-dark: #003A80;
  --blue-50: #EDF4FC;
  --blue-100: #DBE9F9;
  --green: #00A0A0;
  --green-dark: #077C7A;
  --green-50: #E7F6F6;
  --teal: #00A0A0;
  --gold: #F5A800;
  --wa: #167C3C;
  --wa-bright: #22B15E;

  /* Neutrals */
  --bg: #F7F9FC;
  --surface: #FFFFFF;
  --border: #E3E9F1;
  --text: #24303F;
  --muted: #55657A;

  /* Type */
  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(16, 34, 64, .06), 0 1px 6px rgba(16, 34, 64, .05);
  --shadow-md: 0 6px 24px rgba(16, 34, 64, .09);
  --shadow-lg: 0 16px 44px rgba(16, 34, 64, .14);

  /* z-scale */
  --z-header: 100;
  --z-fab: 90;
  --z-menu: 110;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.18;
  margin: 0 0 .5em;
  font-weight: 800;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.22rem; }
h4 { font-size: 1.02rem; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }
button { cursor: pointer; font-family: inherit; }

.skip-link {
  position: absolute; left: -999px; top: 8px;
  background: var(--navy); color: #fff; padding: 10px 16px;
  border-radius: 8px; z-index: 200;
}
.skip-link:focus { left: 8px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy);
  color: #C9D6EA;
  font-size: .82rem;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 38px; flex-wrap: wrap; padding-top: 4px; padding-bottom: 4px;
}
.topbar .tb-left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 6px; }
.topbar svg { width: 13px; height: 13px; flex: none; }
.topbar a { color: #fff; font-weight: 600; }
.topbar .tb-hours { display: none; }
@media (min-width: 720px) { .topbar .tb-hours { display: inline-flex; } }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 74px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 42px; height: auto; flex: none; }
.brand-name {
  font-family: var(--font-head); font-weight: 800; color: var(--navy);
  font-size: 1.06rem; line-height: 1.15; letter-spacing: -.01em;
}
.brand-name .cn { display: block; font-size: .64rem; font-weight: 600; color: var(--muted); letter-spacing: .05em; }
.brand-name .cn .zh { font-size: .84rem; font-weight: 700; color: var(--green-dark); letter-spacing: .14em; font-style: normal; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 9px 13px; border-radius: 9px; color: var(--text);
  font-weight: 600; font-size: .95rem; position: relative;
}
.main-nav a:hover { background: var(--blue-50); color: var(--blue); text-decoration: none; }
.main-nav a.active { color: var(--blue); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px;
  height: 3px; border-radius: 3px; background: var(--green);
}
.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--border);
  border-radius: 10px; width: 44px; height: 44px;
  align-items: center; justify-content: center; color: var(--navy);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-open .nav-toggle .icon-menu { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .brand, .nav-toggle { position: relative; z-index: 120; }
  .main-nav {
    position: fixed; inset: 0; top: 0; padding: 120px 26px 26px;
    background: #fff; flex-direction: column; align-items: stretch; gap: 6px;
    transform: translateY(-102%); transition: transform .3s ease, visibility .3s;
    z-index: 110; visibility: hidden;
  }
  .nav-open .main-nav { transform: translateY(0); visibility: visible; }
  .main-nav a { font-size: 1.15rem; padding: 14px 16px; }
  .header-cta .btn-header { display: none; }
  .main-nav .nav-wa { margin-top: 14px; }
}
@media (min-width: 1081px) { .main-nav .nav-wa { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: .97rem;
  padding: 13px 24px; border-radius: 12px; border: 0;
  cursor: pointer; transition: transform .16s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(.99); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(0, 72, 156, .28); }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 6px 18px rgba(22, 124, 60, .26); }
.btn-wa:hover { background: #106331; color: #fff; }
.btn-ghost {
  background: #fff; color: var(--navy);
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--blue-50); }
.btn-sm { padding: 10px 16px; font-size: .88rem; border-radius: 10px; }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 420px at 88% -10%, rgba(0, 160, 160, .13), transparent 60%),
    radial-gradient(1100px 520px at -8% 110%, rgba(0, 72, 156, .10), transparent 60%),
    linear-gradient(180deg, #F2F7FD 0%, #FDFEFF 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero .container {
  display: grid; grid-template-columns: 1.06fr .94fr; gap: 54px;
  align-items: center; padding-top: 64px; padding-bottom: 72px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 7px 14px; font-size: .8rem; font-weight: 700; color: var(--blue);
  box-shadow: var(--shadow-sm); margin-bottom: 20px; letter-spacing: .02em;
}
.eyebrow svg { width: 14px; height: 14px; color: var(--green-dark); }
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--blue); }
.hero .lede { font-size: 1.13rem; color: var(--muted); max-width: 34em; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: .86rem; font-weight: 600; color: var(--navy); }
.trust-item svg { width: 19px; height: 19px; color: var(--green-dark); flex: none; }
.trust-item .stars { color: var(--gold); letter-spacing: 1.5px; font-size: .95rem; }
.trust-item small { display: block; font-weight: 500; color: var(--muted); font-size: .78rem; line-height: 1.25; }

/* hero collage */
.hero-collage {
  display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: auto auto;
  gap: 14px; position: relative;
}
.hero-collage figure {
  margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 4px solid #fff; background: #fff;
}
.hero-collage img { width: 100%; height: 100%; object-fit: cover; }
.hc-tall { grid-row: 1 / 3; min-height: 380px; }
.hc-a { min-height: 175px; }
.hc-b { min-height: 175px; }
.rating-card {
  position: absolute; left: -18px; bottom: -20px;
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 13px 18px; display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
}
.rating-card .score { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--navy); }
.rating-card .stars { color: var(--gold); font-size: .92rem; letter-spacing: 2px; line-height: 1; }
.rating-card small { color: var(--muted); font-size: .76rem; font-weight: 600; }

@media (max-width: 940px) {
  .hero .container { grid-template-columns: 1fr; gap: 44px; padding-top: 48px; }
  .hc-tall { min-height: 300px; }
  .rating-card { left: 10px; bottom: -16px; }
}

/* ---------- Sections ---------- */
.section { padding: 74px 0; }
.section.tint {
  background:
    radial-gradient(800px 320px at 92% 0%, rgba(0, 72, 156, .05), transparent 60%),
    linear-gradient(180deg, #F2F6FB 0%, #F8FBFE 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.section.tint-teal {
  background:
    radial-gradient(800px 320px at 8% 0%, rgba(0, 160, 160, .07), transparent 60%),
    linear-gradient(180deg, #EFF8F8 0%, #F7FCFC 100%);
  border-top: 1px solid #DCEEEE; border-bottom: 1px solid #DCEEEE;
}
.section-head { max-width: 640px; margin-bottom: 42px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-block; font-family: var(--font-head); font-weight: 800;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 10px;
}
.section-head p { color: var(--muted); font-size: 1.04rem; }

/* stat strip */
.stat-strip { background: var(--navy); color: #fff; }
.stat-strip .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding-top: 30px; padding-bottom: 30px;
}
.stat { display: flex; align-items: center; gap: 13px; }
.stat svg { width: 30px; height: 30px; color: var(--green); flex: none; }
.stat b { font-family: var(--font-head); font-size: 1.06rem; display: block; line-height: 1.25; }
.stat span { color: #AFC1DC; font-size: .82rem; line-height: 1.35; display: block; }
@media (max-width: 900px) { .stat-strip .container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stat-strip .container { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-100); }
.card .icon-tile {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-50); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card .icon-tile.green { background: var(--green-50); color: var(--green-dark); }
.card .icon-tile svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }
.card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 700; font-size: .9rem; }
.card .card-link svg { width: 15px; height: 15px; }

/* service cards with a photo strip on top */
.svc-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.svc-card .card-media { margin: 0; height: 172px; overflow: hidden; flex: none; }
.svc-card .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-card:hover .card-media img { transform: scale(1.05); }
.svc-card .card-body { padding: 0 26px 26px; display: flex; flex-direction: column; align-items: flex-start; flex: 1; }
.svc-card .card-body .icon-tile {
  margin-top: -26px; position: relative; width: 52px; height: 52px;
  border: 3px solid #fff; box-shadow: var(--shadow-sm);
}
.svc-card .card-body h3 { margin-top: 14px; }
.svc-card .card-body .card-link { margin-top: auto; padding-top: 14px; }

/* checklist */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist svg { width: 21px; height: 21px; color: var(--green-dark); flex: none; margin-top: 2px; }
.checklist b { color: var(--navy); }
.checklist span { color: var(--muted); font-size: .95rem; }

/* split section */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split .photo-stack { position: relative; }
.split .photo-stack .main-photo {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}
.split .photo-stack .main-photo img { width: 100%; object-fit: cover; }
.badge-float {
  position: absolute; right: -14px; bottom: -18px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 12px 16px;
  display: flex; align-items: center; gap: 10px; max-width: 250px;
}
.badge-float svg { width: 26px; height: 26px; color: var(--green-dark); flex: none; }
.badge-float b { font-size: .88rem; color: var(--navy); line-height: 1.3; display: block; }
.badge-float small { color: var(--muted); font-size: .76rem; }
@media (max-width: 940px) { .split { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.step {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 20px; position: relative; box-shadow: var(--shadow-sm);
}
.step .num {
  width: 34px; height: 34px; border-radius: 999px;
  background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
  margin-bottom: 14px;
}
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: .87rem; color: var(--muted); margin: 0; }
@media (max-width: 1050px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.review-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px; height: 100%;
}
.review-card .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2.5px; }
.review-card blockquote { margin: 0; color: var(--text); font-size: .96rem; flex: 1; }
.review-card .who { display: flex; align-items: center; gap: 11px; }
.review-card .avatar {
  width: 40px; height: 40px; border-radius: 999px; flex: none;
  font-family: var(--font-head); font-weight: 800; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.review-card .who b { display: block; color: var(--navy); font-size: .92rem; line-height: 1.2; }
.review-card .who small { color: var(--muted); font-size: .78rem; }
.google-attrib { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 30px; color: var(--muted); font-size: .9rem; }
.google-attrib b { color: var(--navy); }

/* ---------- Nationality cards ---------- */
.nation-card { text-align: left; }
.nation-flag {
  width: 46px; height: 46px; border-radius: 999px; overflow: hidden; margin-bottom: 14px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery figure {
  margin: 0; border-radius: var(--radius); overflow: hidden; position: relative;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); background: #fff;
}
.gallery img { width: 100%; height: 320px; object-fit: cover; object-position: top; transition: transform .35s ease; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 14px 12px;
  background: linear-gradient(transparent, rgba(14, 24, 48, .82));
  color: #fff; font-size: .8rem; font-weight: 600;
}
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Payment banner ---------- */
.pay-banner {
  border: 1.5px dashed var(--green); background: var(--green-50);
  border-radius: var(--radius-lg); padding: 26px 30px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: space-between;
}
.pay-banner .pb-left { display: flex; align-items: center; gap: 16px; }
.pay-banner .pb-left svg { width: 34px; height: 34px; color: var(--green-dark); flex: none; }
.pay-banner b { color: var(--navy); font-family: var(--font-head); font-size: 1.08rem; display: block; }
.pay-banner span { color: var(--muted); font-size: .92rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 320px at 85% 20%, rgba(0, 160, 160, .25), transparent 60%),
    linear-gradient(120deg, var(--navy-900), var(--navy) 55%, #1B3767);
  color: #fff; text-align: center;
}
.cta-band .container { padding-top: 78px; padding-bottom: 78px; max-width: 780px; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: #BFCEE6; font-size: 1.07rem; margin-bottom: 30px; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* ---------- Mission band ---------- */
.mission-band {
  background:
    radial-gradient(700px 320px at 88% 0%, rgba(0, 160, 160, .2), transparent 60%),
    linear-gradient(120deg, var(--navy-900), var(--navy) 55%, #123B63);
  color: #fff;
}
.mission-band .container { padding-top: 66px; padding-bottom: 70px; }
.mission-band h2 { color: #fff; }
.m-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; }
@media (max-width: 760px) { .m-grid { grid-template-columns: 1fr; } }
.m-card {
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg); padding: 28px 30px;
}
.m-card h3 { color: var(--green); font-size: 1.02rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.m-card p { color: #C9D6EA; margin: 0; font-size: 1.02rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(700px 300px at 90% -20%, rgba(0, 160, 160, .12), transparent 60%),
    linear-gradient(180deg, #F2F7FD, #FDFEFF);
  border-bottom: 1px solid var(--border);
  padding: 58px 0 50px;
}
.page-hero .crumbs { font-size: .82rem; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
.page-hero .crumbs a { color: var(--muted); }
.page-hero .crumbs a:hover { color: var(--blue); }
.page-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 12px; }
.page-hero p { color: var(--muted); max-width: 46em; font-size: 1.05rem; margin: 0; }

/* ---------- Service detail groups ---------- */
.svc-group { margin-bottom: 44px; }
.svc-group-title {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.svc-group-title svg { width: 24px; height: 24px; color: var(--blue); }
.svc-group-title h2 { font-size: 1.35rem; margin: 0; }
.svc-item { display: flex; gap: 14px; align-items: flex-start; }
.svc-item .icon-tile {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  background: var(--blue-50); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.svc-item .icon-tile svg { width: 21px; height: 21px; }
.svc-item h3 { font-size: 1rem; margin-bottom: 4px; }
.svc-item p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- Service category panels (Division 01) ---------- */
.svc-panels { margin-bottom: 8px; }
.svc-panel { display: flex; flex-direction: column; }
.svc-panel-head {
  display: flex; align-items: center; gap: 15px;
  padding-bottom: 16px; margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.svc-panel-head .icon-tile { margin-bottom: 0; flex: none; }
.svc-panel-head h3 { margin: 0 0 2px; font-size: 1.12rem; }
.svc-panel-head p { margin: 0; font-size: .85rem; color: var(--muted); }
.svc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.svc-list li { display: flex; gap: 11px; align-items: flex-start; }
.svc-list li svg { width: 19px; height: 19px; color: var(--green-dark); flex: none; margin-top: 3px; }
.svc-list b { display: block; color: var(--navy); font-size: .97rem; }
.svc-list span { color: var(--muted); font-size: .88rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; background: #fff; margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 18px 22px; cursor: pointer; font-weight: 700; color: var(--navy);
  font-family: var(--font-head); font-size: .99rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 19px; height: 19px; color: var(--blue); flex: none; transition: transform .25s ease; }
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--muted); font-size: .95rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { text-align: left; }
.contact-card a.big { font-family: var(--font-head); font-weight: 700; font-size: 1.04rem; word-break: break-word; }

.hours-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours-table th, .hours-table td { text-align: left; padding: 12px 8px; border-bottom: 1px solid var(--border); }
.hours-table th { color: var(--navy); font-family: var(--font-head); font-weight: 700; }
.hours-table td { color: var(--muted); }
.hours-table tr.today th, .hours-table tr.today td { color: var(--green-dark); font-weight: 700; }

.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-md); background: var(--muted);
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #A9BAD5; font-size: .92rem; }
.site-footer .foot-main {
  display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.2fr; gap: 40px;
  padding: 60px 0 44px;
}
@media (max-width: 980px) { .site-footer .foot-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .site-footer .foot-main { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; letter-spacing: .04em; }
.site-footer a { color: #C6D4EA; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.foot-brand .brand-mark { width: 38px; height: auto; }
.foot-brand b { color: #fff; font-family: var(--font-head); font-size: 1rem; line-height: 1.2; display: block; }
.foot-brand small { color: var(--green); font-size: .72rem; letter-spacing: .04em; }
.foot-contact li { display: flex; gap: 10px; align-items: flex-start; }
.foot-contact svg { width: 16px; height: 16px; margin-top: 4px; flex: none; color: var(--green); }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.social-row a:hover { background: var(--blue); transform: translateY(-2px); }
.social-row svg { width: 18px; height: 18px; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .8rem; color: #7E92B3;
}

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: var(--z-fab);
  width: 58px; height: 58px; border-radius: 999px;
  background: var(--wa-bright);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(18, 140, 70, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-fab:hover { transform: scale(1.07); box-shadow: 0 14px 34px rgba(18, 140, 70, .55); }
.wa-fab svg { width: 30px; height: 30px; color: #fff; }
.wa-fab .fab-tip {
  position: absolute; right: 68px; white-space: nowrap;
  background: var(--navy); color: #fff; font-size: .8rem; font-weight: 600;
  padding: 8px 13px; border-radius: 9px; opacity: 0; pointer-events: none;
  transition: opacity .2s ease; box-shadow: var(--shadow-md);
}
.wa-fab:hover .fab-tip, .wa-fab:focus-visible .fab-tip { opacity: 1; }

/* ---------- Reveal animation (JS-gated: no JS, no hiding) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mt-20 { margin-top: 20px; } .mt-30 { margin-top: 30px; } .mt-40 { margin-top: 40px; }
.center { text-align: center; }
.note { font-size: .85rem; color: var(--muted); }
.pill-row { display: flex; gap: 9px; flex-wrap: wrap; }
.pill {
  background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-dark);
  border-radius: 999px; padding: 6px 14px; font-size: .82rem; font-weight: 600;
}
