:root {
  --ocean-deep: #001B49;
  --teal: #0E76BC; /* service / home blue — matches trade icons */
  --service: #0E76BC;
  --primary: #001B49;
  --mint: #D99A00;
  --gold: #F2B72B;
  --whatsapp: #25D366;
  /* Branded canvas — light blue, not plain white */
  --bg: #EAF1F8;
  --surface: #F3F7FC;
  --white: #ffffff; /* cards / forms only */
  --low: #DDE7F3;
  --high: #C8D7EA;
  --outline: #B9C8DC;
  --text: #1F2937;
  --muted: #4B5563;
  --radius: 8px;
  --radius-xl: 12px;
  --shadow: 0 4px 20px rgba(0, 27, 73, 0.08);
  --max: 1280px;
  --header-h: 88px;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
  overflow-y: auto;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 16px; }
@media (min-width: 1024px) { .container { padding: 0 24px; } }

/* Native-like page transitions */
::view-transition-old(root), ::view-transition-new(root) {
  animation-duration: 180ms;
}
#app-main { min-height: calc(100vh - var(--header-h)); }
#app-main.is-loading { opacity: 0.55; pointer-events: none; transition: opacity 120ms; }

.site-header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h);
  z-index: 50; background: rgba(234,241,248,.94); backdrop-filter: blur(10px);
  box-shadow: 0 1px 8px rgba(0,27,73,.06);
  border-bottom: 1px solid rgba(14,118,188,.1);
}
.site-header .inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1.1;
  max-width: min(200px, 46vw);
  text-align: center;
}
.brand img {
  height: 58px;
  width: auto;
  max-width: min(180px, 48vw);
  object-fit: contain;
  object-position: center top;
  display: block;
}
.brand-tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.3;
  color: var(--gold);
  text-transform: none;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-footer {
  align-items: center;
  max-width: 200px;
  gap: 8px;
}
.brand-footer img {
  height: auto;
  width: min(168px, 100%);
  max-width: 168px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
}
.brand-footer .brand-tagline {
  font-size: 11px;
  letter-spacing: .03em;
  white-space: normal;
  color: var(--gold);
}
.nav-desktop { display: none; align-items: center; gap: 28px; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a,
.nav-desktop .nav-drop > button {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color .22s ease, transform .22s cubic-bezier(.22,1,.36,1);
}
.nav-desktop > a::after,
.nav-desktop .nav-drop > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .28s cubic-bezier(.22,1,.36,1);
}
.nav-desktop > a:hover,
.nav-desktop > a.is-active,
.nav-desktop .nav-drop > button:hover,
.nav-desktop .nav-drop:hover > button,
.nav-desktop .nav-drop:focus-within > button {
  color: var(--teal);
  transform: translateY(-1px);
}
.nav-desktop > a:hover::after,
.nav-desktop > a.is-active::after,
.nav-desktop .nav-drop > button:hover::after,
.nav-desktop .nav-drop:hover > button::after,
.nav-desktop .nav-drop:focus-within > button::after {
  transform: scaleX(1);
}
.nav-desktop > a.is-active {
  font-weight: 700;
  color: var(--teal);
}
.nav-drop { position: relative; }
.nav-drop > button {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.nav-drop > button .material-symbols-outlined {
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.nav-drop:hover > button .material-symbols-outlined,
.nav-drop:focus-within > button .material-symbols-outlined {
  transform: rotate(180deg);
}
.nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 12px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.98);
  transform-origin: top left;
  transition:
    opacity .24s cubic-bezier(.22,1,.36,1),
    transform .28s cubic-bezier(.22,1,.36,1),
    visibility .24s;
  pointer-events: none;
  z-index: 60;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
.nav-drop-menu .panel {
  background: var(--white);
  border: 1px solid rgba(14,118,188,.14);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(0,27,73,.12);
  padding: 8px 0;
  min-width: 240px;
  overflow: hidden;
}
.nav-drop-menu a,
.nav-drop-menu a.nav-svc {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: background .18s ease, color .18s ease, padding-left .22s cubic-bezier(.22,1,.36,1);
}
.nav-drop-menu a:hover {
  background: var(--low);
  color: var(--teal);
  padding-left: 18px;
}
.nav-drop-menu a:hover .nav-svc-ico {
  transform: scale(1.08);
}
.nav-svc-ico {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 7px;
  background-image: url("../img/icons/services-sprite.webp?v=svc-new1");
  background-repeat: no-repeat;
  background-size: 168px 28px;
  background-color: transparent;
  transition: transform .22s cubic-bezier(.22,1,.36,1);
}
.nav-svc-ac { background-position: 0 0; }
.nav-svc-plumbing { background-position: -28px 0; }
.nav-svc-electrical { background-position: -56px 0; }
.nav-svc-painting { background-position: -84px 0; }
.nav-svc-tiling { background-position: -112px 0; }
.nav-svc-repairs { background-position: -140px 0; }

.mobile-drawer a.nav-svc {
  display: flex; align-items: center; gap: 10px;
}
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-actions .btn-book-header { white-space: nowrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius); font-size: 14px; font-weight: 600;
  transition: transform .15s, filter .15s, background .15s, box-shadow .15s;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--ocean-deep); color: #fff; box-shadow: 0 8px 20px rgba(0,27,73,.2); }
.btn-primary:hover { background: var(--teal); }
.btn-mint, .btn.btn-mint {
  background: linear-gradient(135deg, #F2B72B, #D99A00) !important;
  color: #001B49 !important; font-weight: 700;
}
.btn-mint:hover { filter: brightness(1.06); box-shadow: 0 8px 20px rgba(217,154,0,.35); }
.btn-secondary { background: var(--teal); color: #fff; }
.btn-ghost { background: transparent; color: var(--muted); border: 1px solid var(--outline); }
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

.mobile-nav-toggle { display: inline-flex; padding: 8px; color: var(--primary); }
@media (min-width: 1024px) { .mobile-nav-toggle { display: none; } }
.mobile-drawer {
  display: block;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 49;
  background: rgba(0,27,73,0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: background .28s ease, opacity .28s ease, visibility .28s;
}
.mobile-drawer.open {
  background: rgba(0,27,73,.45);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-drawer .panel {
  background: var(--white);
  width: min(320px, 88vw);
  height: 100%;
  margin-left: auto;
  padding: 16px 16px calc(24px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: -8px 0 30px rgba(0,0,0,.12);
  transform: translateX(18px);
  opacity: .4;
  transition: transform .32s cubic-bezier(.22,1,.36,1), opacity .28s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-drawer.open .panel {
  transform: none;
  opacity: 1;
}
.mobile-drawer a {
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--text);
  transform: translateX(8px);
  opacity: 0;
  transition:
    background .18s ease,
    color .18s ease,
    transform .3s cubic-bezier(.22,1,.36,1),
    opacity .3s ease;
}
.mobile-drawer.open a {
  transform: none;
  opacity: 1;
}
.mobile-drawer.open a:nth-child(1) { transition-delay: .04s; }
.mobile-drawer.open a:nth-child(2) { transition-delay: .07s; }
.mobile-drawer.open a:nth-child(3) { transition-delay: .1s; }
.mobile-drawer.open a:nth-child(4) { transition-delay: .13s; }
.mobile-drawer.open a:nth-child(5) { transition-delay: .16s; }
.mobile-drawer.open a:nth-child(6) { transition-delay: .19s; }
.mobile-drawer.open a:nth-child(7) { transition-delay: .22s; }
.mobile-drawer.open a:nth-child(8) { transition-delay: .25s; }
.mobile-drawer.open a:nth-child(9) { transition-delay: .28s; }
.mobile-drawer.open a:nth-child(10) { transition-delay: .31s; }
.mobile-drawer.open a:nth-child(n+11) { transition-delay: .34s; }
.mobile-drawer a:hover,
.mobile-drawer a.is-active {
  background: var(--low);
  color: var(--teal);
}
.mobile-drawer .btn { margin-top: 8px; width: 100%; }
body.drawer-open { overflow: hidden; }
@media (max-width: 1023px) {
  body.drawer-open { touch-action: none; }
}

.mobile-bottom {
  display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 45;
  background: rgba(234,241,248,.96); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(14,118,188,.14); padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
  justify-content: space-around;
}
@media (min-width: 1024px) { .mobile-bottom { display: none; } }
.mobile-bottom a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 4px; font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted);
  transition: color .2s ease, transform .22s cubic-bezier(.22,1,.36,1);
}
.mobile-bottom a .material-symbols-outlined {
  transition: transform .22s cubic-bezier(.22,1,.36,1), color .2s ease;
}
.mobile-bottom a:hover,
.mobile-bottom a.is-active {
  color: var(--teal);
  transform: translateY(-2px);
}
.mobile-bottom a:hover .material-symbols-outlined,
.mobile-bottom a.is-active .material-symbols-outlined {
  transform: scale(1.12);
  color: var(--teal);
}
.mobile-bottom .material-symbols-outlined { font-size: 22px; }

main.app-shell { padding-top: var(--header-h); padding-bottom: 72px; }
@media (min-width: 1024px) { main.app-shell { padding-bottom: 0; } }

.label-caps {
  font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--teal);
}
.h-display {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15; letter-spacing: -.02em; margin: 0;
}
.h-md { font-family: var(--font-display); font-weight: 600; font-size: clamp(24px, 3vw, 32px); line-height: 1.25; margin: 0; }
.h-sm { font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.3; margin: 0; }
.lead { font-size: 18px; line-height: 1.55; color: var(--muted); margin: 0; }
.muted { color: var(--muted); }
.section { padding: 64px 0; background: var(--bg); }
@media (min-width: 1024px) { .section { padding: 100px 0; } }
.section-alt { background: var(--low); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; display: grid; gap: 12px; justify-items: center; }

.hero {
  position: relative; min-height: 560px; display: flex; align-items: center;
  margin-top: calc(var(--header-h) * -1); padding-top: var(--header-h); color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,27,73,.95) 0%, rgba(0,27,73,.65) 45%, rgba(0,27,73,0) 100%);
}
@media (max-width: 768px) {
  .hero-bg::after {
    background: linear-gradient(180deg, rgba(0,27,73,.55), rgba(0,27,73,.92));
  }
}
.hero-content { position: relative; z-index: 1; max-width: 640px; display: grid; gap: 20px; padding: 48px 0; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2); font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); }
.hero .accent { color: var(--gold); }

.feature-strip { background: var(--primary); color: #fff; border-bottom: 3px solid var(--gold); }

.home-order {
  padding-top: 40px;
  background: var(--bg);
}
@media (min-width: 1024px) {
  .home-order { padding-top: 56px; }
}
.home-order .trade-tabs {
  margin-bottom: 8px;
}

/* About Haeil — compact visual SEO block */
.about-haeil {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(14,118,188,.07), transparent 55%),
    var(--surface);
  border-top: 1px solid rgba(14,118,188,.1);
}
.about-haeil-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
  display: grid;
  gap: 10px;
  justify-items: center;
}
.about-haeil-head .label-caps { color: var(--teal); }
.about-haeil-head .lead { margin: 0; }
.about-haeil-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .about-haeil-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
.about-haeil-card {
  background: var(--white);
  border: 1px solid rgba(14,118,188,.14);
  border-top: 3px solid var(--gold);
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 8px 20px rgba(0,27,73,.05);
  display: grid;
  gap: 10px;
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease;
}
.about-haeil-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,27,73,.1);
}
.about-haeil-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(242,183,43,.12);
  border: 1px solid rgba(242,183,43,.35);
  color: var(--teal);
}
.about-haeil-ico .material-symbols-outlined { font-size: 22px; }
.about-haeil-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ocean-deep);
}
.about-haeil-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.about-haeil-card strong { color: var(--ocean-deep); }
.about-haeil-areas {
  text-align: center;
}
.about-haeil-areas-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.about-haeil-area-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.about-haeil-area {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(14,118,188,.16);
  color: var(--ocean-deep);
  font-size: 13px;
  font-weight: 600;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.about-haeil-area:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--teal);
  box-shadow: 0 6px 14px rgba(0,27,73,.08);
}
.feature-strip .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 28px 0; }
@media (min-width: 1024px) { .feature-strip .grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.feature-item { display: flex; align-items: center; gap: 14px; }
.icon-circle {
  width: 48px; height: 48px; border-radius: 50%; background: var(--teal);
  display: grid; place-items: center; color: var(--gold); flex-shrink: 0;
}

.trade-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (min-width: 768px) { .trade-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .trade-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; } }
.trade-card {
  background: var(--white);
  border: 1px solid rgba(14, 118, 188, 0.16);
  border-radius: 16px;
  padding: 22px 14px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 18, 52, 0.04);
  display: grid;
  gap: 12px;
  justify-items: center;
  align-content: start;
  position: relative;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.trade-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--service), var(--mint));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.trade-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 118, 188, 0.45);
  box-shadow: 0 16px 36px rgba(14, 118, 188, 0.16);
  background: var(--low);
}
.trade-card:hover::before { transform: scaleX(1); }
.trade-card:active { transform: translateY(-3px) scale(.98); }
.trade-card .ico,
.trade-card .ico-tile {
  width: 88px; height: 88px; border-radius: 22px; background: #fff;
  display: grid; place-items: center; color: #001B49;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
  box-shadow: 0 6px 16px rgba(0, 18, 52, 0.08);
  border: 1px solid rgba(191, 200, 204, 0.4);
  overflow: hidden;
}
@media (min-width: 768px) {
  .trade-card .ico,
  .trade-card .ico-tile { width: 96px; height: 96px; border-radius: 24px; }
}
.trade-card .ico .material-symbols-outlined { display: none; }
.trade-card .trade-svg,
.trade-card .trade-img {
  display: grid; place-items: center; width: 78%; height: 78%; color: #001B49;
}
.trade-card .trade-svg svg {
  width: 100%; height: 100%; display: block;
}
.trade-card .trade-img img {
  width: 100%; height: 100%; display: block; object-fit: contain;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.trade-card:hover .ico-tile {
  background: #fff;
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 12px 24px rgba(14, 118, 188, 0.18);
}
.trade-card:hover .trade-img img {
  transform: scale(1.08);
}
.trade-card h3 {
  font-size: 15px; font-weight: 700; margin: 0; color: var(--ocean-deep);
  transition: color .25s ease;
}
.trade-card:hover h3 { color: var(--service); }
.trade-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.4; max-width: 160px; }

/* Contextual trade icon motion */
.trade-card .trade-svg svg { overflow: visible; }
.trade-card .ac-wave {
  transform-origin: 24px 32px;
  animation: acWave 2.4s ease-in-out infinite;
}
.trade-card .ac-wave-2 { animation-delay: .2s; }
.trade-card .ac-wave-3 { animation-delay: .4s; }
@keyframes acWave {
  0%, 100% { opacity: .35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(2px); }
}

.trade-card .plumb-valve {
  transform-origin: 24px 28px;
  animation: valveTurn 4s ease-in-out infinite;
}
.trade-card .plumb-drop {
  transform-origin: 24px 34px;
  animation: drip 2.2s ease-in infinite;
}
@keyframes valveTurn {
  0%, 70%, 100% { transform: rotate(0deg); }
  80% { transform: rotate(25deg); }
  90% { transform: rotate(-8deg); }
}
@keyframes drip {
  0% { opacity: 0; transform: translateY(-2px) scale(.7); }
  25% { opacity: 1; transform: translateY(0) scale(1); }
  70% { opacity: .85; transform: translateY(5px) scale(.9); }
  100% { opacity: 0; transform: translateY(10px) scale(.5); }
}

.trade-card .elec-spark {
  transform-origin: center;
  animation: sparkPulse 1.4s ease-in-out infinite;
}
.trade-card .elec-spark-2 { animation-delay: .35s; }
.trade-card:hover .elec-plug {
  animation: plugBuzz .35s linear 2;
}
@keyframes sparkPulse {
  0%, 100% { opacity: .35; transform: scale(.7); }
  50% { opacity: 1; transform: scale(1.25); }
}
@keyframes plugBuzz {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(.6px, -.4px); }
  50% { transform: translate(-.5px, .4px); }
  75% { transform: translate(.4px, .3px); }
}

.trade-card .paint-roller {
  transform-origin: 24px 20px;
  animation: rollerSwipe 3s ease-in-out infinite;
}
.trade-card .paint-drip {
  animation: paintDrop 2.5s ease-in infinite;
}
.trade-card .paint-dot {
  animation: sparkPulse 2s ease-in-out infinite .4s;
}
@keyframes rollerSwipe {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  40% { transform: rotate(-6deg) translateY(1px); }
  70% { transform: rotate(4deg) translateY(-1px); }
}
@keyframes paintDrop {
  0% { opacity: 0; transform: translateY(-6px) scale(.5); }
  30% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(8px) scale(.6); }
}

.trade-card .tile {
  transform-origin: center;
  animation: tileSettle 3.2s ease-in-out infinite;
}
.trade-card .tile-2 { animation-delay: .15s; }
.trade-card .tile-3 { animation-delay: .3s; }
.trade-card .tile-4 { animation-delay: .45s; }
.trade-card .tile-dot {
  animation: sparkPulse 2.2s ease-in-out infinite;
}
@keyframes tileSettle {
  0%, 100% { transform: scale(1); opacity: 1; }
  40% { transform: scale(.92); opacity: .75; }
  55% { transform: scale(1.04); opacity: 1; }
}

.trade-card .tool-wrench {
  transform-origin: 20px 26px;
  animation: wrenchTurn 2.8s ease-in-out infinite;
}
.trade-card .tool-driver {
  transform-origin: 32px 16px;
  animation: driverTap 2.8s ease-in-out infinite .2s;
}
.trade-card .tool-box {
  animation: boxBob 2.8s ease-in-out infinite .4s;
}
@keyframes wrenchTurn {
  0%, 100% { transform: rotate(0deg); }
  35% { transform: rotate(-12deg); }
  55% { transform: rotate(8deg); }
}
@keyframes driverTap {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  40% { transform: translate(1px, 2px) rotate(6deg); }
  60% { transform: translate(0, 0) rotate(-2deg); }
}
@keyframes boxBob {
  0%, 100% { transform: translateY(0); opacity: .85; }
  50% { transform: translateY(-2px); opacity: 1; }
}

.trade-card:hover .ac-wave,
.trade-card:hover .plumb-drop,
.trade-card:hover .elec-spark,
.trade-card:hover .paint-roller,
.trade-card:hover .tile,
.trade-card:hover .tool-wrench {
  animation-duration: 1.2s;
}

@media (prefers-reduced-motion: reduce) {
  .trade-card .ac-wave,
  .trade-card .plumb-valve,
  .trade-card .plumb-drop,
  .trade-card .elec-spark,
  .trade-card .elec-plug,
  .trade-card .paint-roller,
  .trade-card .paint-drip,
  .trade-card .paint-dot,
  .trade-card .tile,
  .trade-card .tile-dot,
  .trade-card .tool-wrench,
  .trade-card .tool-driver,
  .trade-card .tool-box {
    animation: none !important;
  }
}

.steps-section {
  background: var(--surface);
  border-top: 1px solid rgba(14,118,188,.12);
}
.steps {
  display: grid;
  gap: 40px 24px;
  position: relative;
}
.steps-line {
  display: none;
  position: absolute;
  z-index: 0;
  pointer-events: none;
  height: 2px;
  top: 40px;
  left: 10%;
  right: 10%;
  background: linear-gradient(
    90deg,
    #B9C6DB 0%,
    #B9C6DB 62%,
    var(--gold) 62%,
    var(--gold) 100%
  );
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s cubic-bezier(.22,1,.36,1) .35s;
}
.steps.is-inview .steps-line { transform: scaleX(1); }
@media (min-width: 768px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .steps-line { display: none; }
}
@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .steps-line { display: block; }
}
.step {
  text-align: center;
  display: grid;
  gap: 16px;
  justify-items: center;
  align-content: start;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.step:nth-child(2) { transition-delay: .1s; }
.step:nth-child(3) { transition-delay: .2s; }
.step:nth-child(4) { transition-delay: .3s; }
.step:nth-child(5) { transition-delay: .4s; }
.steps.is-inview .step {
  opacity: 1;
  transform: translateY(0);
}
.step-ico {
  width: 80px; height: 80px; border-radius: 18px;
  background: var(--service);
  display: grid; place-items: center; position: relative;
  color: #fff;
  box-shadow: 0 10px 24px rgba(14, 118, 188, 0.28);
  transition: transform .35s ease, box-shadow .35s ease;
}
.step-ico .material-symbols-outlined {
  font-size: 34px;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 40;
}
.step-member .step-ico {
  background: #001B49;
  box-shadow: 0 10px 24px rgba(0, 18, 52, 0.28);
}
.steps.is-inview .step-ico {
  animation: stepPop .55s cubic-bezier(.22,1,.36,1) both;
}
.steps.is-inview .step:nth-child(2) .step-ico { animation-delay: .12s; }
.steps.is-inview .step:nth-child(3) .step-ico { animation-delay: .22s; }
.steps.is-inview .step:nth-child(4) .step-ico { animation-delay: .32s; }
.steps.is-inview .step:nth-child(5) .step-ico { animation-delay: .42s; }
@keyframes stepPop {
  0% { transform: scale(.7); }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.step:hover .step-ico { transform: translateY(-6px); }
.step-num {
  position: absolute; top: -10px; right: -10px; width: 28px; height: 28px; border-radius: 50%;
  background: #1F2937; color: #fff; font-size: 13px; font-weight: 700;
  display: grid; place-items: center; border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.step-member .step-num {
  background: var(--gold); color: #001B49;
}
.step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  color: var(--ocean-deep);
  max-width: 220px;
}
.step-card {
  background: var(--white);
  border: 1px solid rgba(14,118,188,.16);
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 4px 16px rgba(0,27,73,.04);
  position: relative;
  width: 100%;
  max-width: 280px;
}
.step-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.step-member .step-card {
  background: #FDF3D8;
  border-color: var(--gold);
  padding-top: 26px;
}
.step-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #F2B72B;
  color: #8A6200;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #F2B72B;
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .step,
  .steps-line,
  .step-ico {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

.card {
  background: var(--white); border-radius: var(--radius-xl); border: 1px solid rgba(14,118,188,.14);
  box-shadow: var(--shadow); padding: 24px;
}
.grid-2 { display: grid; gap: 20px; }
.grid-3 { display: grid; gap: 20px; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.form-grid { display: grid; gap: 16px; }
@media (min-width: 768px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 8px; }
.field label { font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius); border: 1px solid transparent;
  background: var(--low); color: var(--text); outline: none; transition: box-shadow .15s, border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal);
}
.check-grid { display: grid; gap: 12px; }
@media (min-width: 768px) { .check-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .check-grid { grid-template-columns: repeat(4, 1fr); } }
.check-item {
  display: flex; gap: 10px; align-items: flex-start; padding: 14px; border-radius: var(--radius);
  background: var(--white); border: 1px solid rgba(185,198,219,.5); cursor: pointer; transition: border-color .15s;
}
.check-item:hover, .check-item:has(input:checked) { border-color: var(--mint); }
.check-item input { margin-top: 3px; accent-color: var(--mint); width: 18px; height: 18px; }

.service-card {
  background: var(--white); border: 1px solid rgba(14,118,188,.16); border-radius: var(--radius-xl);
  padding: 22px; display: flex; flex-direction: column; gap: 12px; position: relative;
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,27,73,.12);
  border-color: rgba(217,154,0,.55);
}
.service-card.popular { border-color: var(--gold); box-shadow: var(--shadow); }
.service-card .price { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--mint); }
.svc-price-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.svc-dur {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12.5px; font-weight: 600; color: var(--muted);
  background: var(--low); padding: 4px 10px; border-radius: 999px;
}
.svc-dur .material-symbols-outlined { font-size: 15px; color: var(--teal); }

/* Service page hero */
.svc-hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, #001234 0%, #001B49 55%, var(--teal) 100%);
  padding: 60px 0 56px;
}
.svc-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(420px 260px at 85% 20%, rgba(242,183,43,.16), transparent 70%),
    radial-gradient(300px 220px at 10% 90%, rgba(0,52,120,.5), transparent 70%);
}
.svc-hero-inner {
  position: relative; display: grid; grid-template-columns: 1fr auto;
  gap: 44px; align-items: center;
}
.svc-hero-icon {
  width: 190px; height: 190px; background: #fff; border-radius: 26px;
  padding: 20px; display: grid; place-items: center; flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(242,183,43,.28), 0 24px 48px rgba(0,0,0,.35);
  transform: rotate(3deg);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.svc-hero-icon:hover { transform: rotate(-2deg) scale(1.04); box-shadow: 0 0 0 8px rgba(242,183,43,.4), 0 24px 48px rgba(0,0,0,.35); }
.svc-hero-icon img, .svc-hero-icon svg { width: 100%; height: 100%; object-fit: contain; }
.svc-hero .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.stat-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.stat-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(242,183,43,.14); color: #F2B72B;
  border: 1px solid rgba(242,183,43,.35);
  padding: 6px 12px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
}
.stat-chip .material-symbols-outlined { font-size: 16px; }
.svc-cat { margin: 34px 0 14px; }
.svc-cat:first-child { margin-top: 0; }
.cta-band {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(120deg, #001B49, var(--teal));
  border-radius: var(--radius-xl); padding: 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  box-shadow: 0 18px 44px rgba(0,27,73,.25);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(360px 200px at 90% 10%, rgba(242,183,43,.18), transparent 70%);
}
.cta-band > * { position: relative; }
@media (max-width: 767px) {
  .svc-hero { padding: 44px 0 40px; }
  .svc-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .svc-hero-icon { width: 130px; height: 130px; border-radius: 20px; padding: 14px; }
  .cta-band { padding: 26px 20px; }
}
.badge {
  position: absolute; top: 14px; right: 14px; background: rgba(217,154,0,.12); color: var(--mint);
  font-size: 10px; font-weight: 700; letter-spacing: .05em; padding: 4px 8px; border-radius: 999px;
}
.qty {
  display: inline-flex; align-items: center; border: 1px solid rgba(185,198,219,.5); border-radius: var(--radius); overflow: hidden; height: 40px;
}
.qty button { width: 40px; height: 40px; background: var(--low); color: var(--text); }
.qty input { width: 44px; text-align: center; border: 0; background: var(--white); font-weight: 600; }

.trade-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-top: 14px;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.trade-tabs::-webkit-scrollbar { display: none; }
.trade-tab {
  min-width: 108px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 12px 14px;
  border-radius: 12px;
  background: var(--white);
  border: 2px solid rgba(185,198,219,.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--primary);
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease, border-color .2s ease;
}
.trade-tab-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.trade-tab-ico .trade-img,
.trade-tab-ico .trade-svg { width: 92%; height: 92%; display: grid; place-items: center; }
.trade-tab-ico img,
.trade-tab-ico svg { width: 100%; height: 100%; object-fit: contain; display: block; }
.trade-tab-label { line-height: 1.2; }

/* Simple popup only — no wipe / hide */
.trade-tab:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(14, 118, 188, 0.4);
  box-shadow: 0 12px 24px rgba(14, 118, 188, 0.14);
}
.trade-tab.active {
  background: var(--low);
  color: var(--ocean-deep);
  border-color: var(--service);
  box-shadow: 0 4px 14px rgba(14, 118, 188, 0.16);
}
.trade-tab.active:hover {
  transform: translateY(-6px) scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .trade-tab { transition: none; }
  .trade-tab:hover,
  .trade-tab.active:hover { transform: none; }
}

.trade-panel-ico {
  width: 48px; height: 48px; border-radius: 12px; background: #fff;
  display: grid; place-items: center; overflow: hidden; flex-shrink: 0;
}
.trade-panel-ico .trade-img,
.trade-panel-ico .trade-svg { width: 86%; height: 86%; display: grid; place-items: center; }
.trade-panel-ico img,
.trade-panel-ico svg { width: 100%; height: 100%; object-fit: contain; display: block; }

.booking-bar {
  position: fixed; left: 0; right: 0; bottom: 56px; z-index: 44;
  background: var(--ocean-deep); color: #fff; transform: translateY(110%);
  transition: transform .25s ease; box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
@media (min-width: 1024px) { .booking-bar { bottom: 0; } }
.booking-bar.show { transform: none; }
.booking-bar .inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; }

/* Mini-cart popover (booking bar) & cart rows (also used on confirm page) */
.cart-pop {
  position: absolute; left: 16px; bottom: calc(100% + 10px);
  width: min(440px, calc(100vw - 32px));
  background: #fff; color: var(--text);
  border-radius: var(--radius); box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
  padding: 16px; z-index: 46;
}
.cart-pop[hidden] { display: none; }
.cart-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--outline);
  animation: cartRowIn .25s ease both;
}
.cart-row .name { flex: 1; font-weight: 600; font-size: 14px; }
@keyframes cartRowIn { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: none; } }
.qty-ctl {
  display: inline-flex; align-items: center;
  border: 1px solid var(--outline); border-radius: 8px; overflow: hidden; flex-shrink: 0;
}
.qty-ctl button {
  background: var(--low); border: none; cursor: pointer;
  width: 28px; height: 28px; font-size: 16px; line-height: 1; color: var(--text);
  display: grid; place-items: center;
}
.qty-ctl button:hover { background: var(--high); color: var(--teal); }
.qty-num { min-width: 28px; text-align: center; font-weight: 700; font-size: 14px; }
.cart-remove {
  background: none; border: none; cursor: pointer; flex-shrink: 0;
  font-size: 20px; line-height: 1; color: var(--muted); padding: 2px 4px;
}
.cart-remove:hover { color: #d33; }
#order-summary .cart-row { padding: 6px 0; }

.site-footer { background: var(--primary); color: #B9C6DB; padding: 64px 0 32px; margin-top: 0; border-top: 4px solid var(--gold); }
.footer-grid { display: grid; gap: 32px; margin-bottom: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer h4 { color: var(--gold); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 16px; }
.site-footer a { display: block; margin-bottom: 10px; opacity: .85; }
.site-footer a:hover { color: #fff; opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(242,183,43,.2); padding-top: 20px; font-size: 13px; opacity: .7; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-dev { color: inherit; text-decoration: none; transition: opacity .15s; }
.footer-dev:hover { opacity: 1; }
.footer-dev strong { color: var(--mint); font-weight: 700; }

/* ---- WhatsApp chat widget ---- */
.wa-widget {
  position: fixed; right: 20px; bottom: 84px; z-index: 46;
}
@media (min-width: 1024px) { .wa-widget { bottom: 24px; } }

/* display:flex would beat the UA [hidden] rule — hide explicitly */
.wa-popup[hidden],
.wa-overlay[hidden] { display: none; }

.wa-overlay {
  position: fixed; inset: 0; z-index: -1;
  background: rgba(0, 27, 73, .32);
  backdrop-filter: blur(2px);
}

.wa-popup {
  position: absolute; right: 0; bottom: calc(100% + 14px);
  width: min(360px, calc(100vw - 32px));
  max-height: min(520px, calc(100vh - 140px));
  max-height: min(520px, calc(100dvh - 140px));
  display: flex; flex-direction: column;
  background: #F0F2F5; border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 27, 73, .35);
}
.wa-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 14px 14px 16px;
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  color: #fff;
}
.wa-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; object-fit: contain; padding: 3px;
  border: 2px solid rgba(255,255,255,.65); flex-shrink: 0;
}
.wa-head-meta { min-width: 0; display: grid; gap: 1px; }
.wa-head-meta strong { font-family: var(--font-display); font-size: 15px; line-height: 1.25; }
.wa-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; opacity: .92;
}
.wa-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #7BF1A8;
  box-shadow: 0 0 0 0 rgba(123,241,168,.6);
}
.wa-close {
  margin-left: auto; flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; background: rgba(255,255,255,.14);
  transition: background .2s ease, transform .2s ease;
}
.wa-close:hover { background: rgba(255,255,255,.28); transform: rotate(90deg); }
.wa-close .material-symbols-outlined { font-size: 20px; }

.wa-body {
  flex: 1; overflow-y: auto;
  padding: 18px 16px;
  background:
    radial-gradient(rgba(7,94,84,.05) 1px, transparent 1.5px) 0 0 / 22px 22px,
    #EFF4F2;
}
.wa-msg {
  width: fit-content; max-width: 88%;
  margin: 0 auto 16px 0;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 4px 14px 14px 14px;
  box-shadow: 0 1px 2px rgba(0,27,73,.12);
  font-size: 14px; line-height: 1.55; color: var(--text);
}
.wa-chips { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.wa-chip {
  padding: 9px 14px;
  background: var(--white);
  border: 1px solid rgba(18,140,126,.45);
  border-radius: 999px;
  font-size: 13px; font-weight: 600; color: #075E54;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.wa-chip:hover {
  background: #128C7E; color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(18,140,126,.3);
}
.wa-input {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--white);
  border-top: 1px solid rgba(185,198,219,.5);
}
.wa-input input {
  flex: 1; min-width: 0;
  border: none; outline: none;
  padding: 9px 14px;
  background: #F0F2F5; border-radius: 999px;
  font-size: 14px; color: var(--text);
}
.wa-input input::placeholder { color: #8696A0; }
.wa-send {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--whatsapp); color: #fff;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), filter .2s ease;
}
.wa-send:hover { transform: scale(1.08); }
.wa-send:active { transform: scale(.92); }
.wa-send .material-symbols-outlined { font-size: 20px; }

.fab-wa {
  position: relative; z-index: 1;
  width: 56px; height: 56px; border-radius: 50%; background: var(--whatsapp); color: #fff;
  display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  transition: transform .15s;
}
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 56%; height: 56%; grid-area: 1 / 1; transition: opacity .18s ease, transform .28s cubic-bezier(.34,1.56,.64,1); }
.fab-wa .wa-ico-close {
  grid-area: 1 / 1; font-size: 26px;
  opacity: 0; transform: rotate(-90deg) scale(.6);
  transition: opacity .18s ease, transform .28s cubic-bezier(.34,1.56,.64,1);
}
.fab-wa.is-open svg.wa-ico-chat { opacity: 0; transform: rotate(90deg) scale(.6); }
.fab-wa.is-open .wa-ico-close { opacity: 1; transform: none; }

.wa-close:focus-visible,
.wa-chip:focus-visible,
.wa-send:focus-visible {
  outline: 2px solid #075E54;
  outline-offset: 2px;
}
.fab-wa:focus-visible {
  outline: 3px solid #075E54;
  outline-offset: 3px;
}
.wa-input input:focus-visible {
  box-shadow: 0 0 0 2px rgba(37, 211, 102, .6);
}

@media (max-width: 767px) {
  body.wa-open { overflow: hidden; }
}

.page-hero {
  background: linear-gradient(180deg, var(--low) 0%, var(--bg) 100%);
  padding: 40px 0 28px;
  border-bottom: 1px solid rgba(14,118,188,.12);
  box-shadow: inset 0 -3px 0 rgba(242,183,43,.35);
}
.page-hero .accent { color: var(--gold); }
.alpha-bar { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0; }
.alpha-bar a {
  width: 36px; height: 36px; display: grid; place-items: center; border-radius: var(--radius);
  background: var(--low); font-weight: 700; font-size: 13px;
}
.alpha-bar a:hover { background: var(--teal); color: #fff; }
.area-list { display: grid; gap: 8px; }
@media (min-width: 768px) { .area-list { grid-template-columns: 1fr 1fr 1fr; } }
.area-item { padding: 14px 16px; background: var(--white); border-radius: var(--radius); border: 1px solid rgba(185,198,219,.35); }

.billing-toggle {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 36px;
  padding: 5px;
  gap: 4px;
  background: var(--white);
  border: 1px solid rgba(185,198,219,.45);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.billing-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  background: transparent;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.billing-btn:hover { color: var(--teal); }
.billing-btn.active {
  background: var(--ocean-deep);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 27, 73, .25);
}
.billing-btn .save-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(217,154,0,.15);
  color: var(--mint);
}
.billing-btn.active .save-pill { background: var(--gold); color: var(--ocean-deep); }
@media (prefers-reduced-motion: reduce) {
  .billing-btn { transition: none; }
}

.plan-card { padding: 28px; border-radius: var(--radius-xl); background: var(--white); border: 1px solid rgba(14,118,188,.16); display: grid; gap: 16px; }
.plan-card.featured { background: var(--ocean-deep); color: #fff; border: none; box-shadow: 0 12px 32px rgba(0,27,73,.25); outline: 3px solid var(--gold); outline-offset: -3px; }
@media (min-width: 768px) {
  .plan-card.featured { transform: scale(1.02); }
}
.plan-card.featured .muted { color: #B9C6DB; }
.plan-price { font-family: var(--font-display); font-size: 40px; font-weight: 700; }
.plan-features { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.plan-features li { display: flex; gap: 8px; align-items: flex-start; }

.guide-list { display: grid; gap: 16px; }
.guide-item { padding: 20px; background: var(--white); border-radius: var(--radius-xl); border: 1px solid rgba(14,118,188,.14); transition: box-shadow .2s; }
.guide-item:hover { box-shadow: var(--shadow); }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  user-select: none;
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.gap-2 { gap: 8px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.stack { display: grid; gap: 16px; }

/* Why us */
.why-section { background: var(--low); border-top: 1px solid rgba(14,118,188,.12); }
.why-eyebrow { color: var(--teal) !important; }
.why-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
.why-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 6px 20px rgba(0,27,73,.06);
  border: 1px solid rgba(14,118,188,.14);
  border-top: 3px solid var(--gold);
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,27,73,.1);
}
.why-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  flex-shrink: 0;
}
.why-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ocean-deep);
  line-height: 1.3;
}
.why-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* In your pocket / Home Health */
.pocket-section {
  background:
    radial-gradient(ellipse 70% 55% at 88% 30%, rgba(14, 118, 188, 0.08), transparent 55%),
    radial-gradient(ellipse 55% 45% at 8% 80%, rgba(242, 183, 43, 0.07), transparent 50%),
    var(--surface);
  border-top: 1px solid rgba(14,118,188,.12);
  overflow: hidden;
}
.pocket-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .pocket-grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; }
}
.pocket-copy {
  display: grid;
  gap: 14px;
  justify-items: start;
}
.pocket-copy .h-md { max-width: 18ch; }
.pocket-lead { max-width: 34rem; margin: 0; }
.pocket-features {
  list-style: none;
  margin: 10px 0 4px;
  padding: 0;
  display: grid;
  gap: 16px;
  width: 100%;
}
.pocket-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 4px 0;
}
.pocket-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--ocean-deep);
  background: rgba(242,183,43,.1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.22,1,.36,1), background .25s ease, box-shadow .25s ease;
}
.pocket-feature:hover .pocket-ico {
  transform: scale(1.08);
  background: rgba(242,183,43,.2);
  box-shadow: 0 6px 16px rgba(242,183,43,.22);
}
.pocket-ico .material-symbols-outlined { font-size: 20px; }
.pocket-features strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ocean-deep);
  margin-bottom: 3px;
}
.pocket-features p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 38rem;
}
.pocket-note {
  width: 100%;
  background: var(--low);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 4px;
}
.pocket-note strong { color: var(--ocean-deep); }
.pocket-copy > .btn {
  margin-top: 6px;
  width: fit-content;
}

.pocket-phone {
  display: flex;
  justify-content: center;
  position: relative;
}
.pocket-phone::before {
  content: "";
  position: absolute;
  width: min(280px, 70%);
  height: 48%;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0,27,73,.22), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}
.phone-frame {
  width: min(300px, 100%);
  background: linear-gradient(160deg, #0a2a5c 0%, #001B49 55%, #001433 100%);
  border-radius: 40px;
  padding: 14px;
  box-shadow:
    0 28px 60px rgba(0,27,73,.28),
    0 2px 0 rgba(255,255,255,.08) inset;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.08);
}
.phone-shine {
  position: absolute;
  inset: 10px;
  border-radius: 32px;
  background: linear-gradient(125deg, rgba(255,255,255,.1) 0%, transparent 38%);
  pointer-events: none;
  z-index: 3;
}
.phone-notch {
  width: 104px;
  height: 20px;
  background: #001B49;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.phone-screen {
  background: linear-gradient(180deg, #F7FAFD 0%, var(--surface) 100%);
  border-radius: 28px;
  padding: 16px 14px 18px;
  min-height: 520px;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  align-content: start;
}
.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ocean-deep);
}
.phone-brand { display: grid; gap: 2px; }
.phone-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .02em;
  color: var(--ocean-deep);
}
.phone-brand-plan {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold);
}
.phone-menu { font-size: 22px; color: var(--muted); }
.phone-hello { display: grid; gap: 4px; }
.phone-hello-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
}
.phone-hi {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
  color: var(--ocean-deep);
}
.phone-hi span { color: var(--gold); }
.phone-status {
  background: var(--low);
  border-radius: 14px;
  padding: 12px 13px;
  border: 1px solid rgba(14,118,188,.08);
  display: grid;
  gap: 6px;
}
.phone-status-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.phone-status-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
}
.phone-status-chip {
  font-size: 10px;
  font-weight: 700;
  color: var(--ocean-deep);
  background: rgba(242,183,43,.2);
  border: 1px solid rgba(242,183,43,.45);
  padding: 3px 8px;
  border-radius: 999px;
}
.phone-tech { font-weight: 700; color: var(--ocean-deep); font-size: 14px; }
.phone-loc {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
}
.phone-loc .material-symbols-outlined { font-size: 14px; color: var(--teal); }
.phone-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.phone-eta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #001B49;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 999px;
}
.phone-van {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--ocean-deep);
  background: var(--white);
  border: 1px solid rgba(14,118,188,.16);
  padding: 7px 10px;
  border-radius: 999px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(242,183,43,.5);
  animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(242,183,43,.45); }
  70% { box-shadow: 0 0 0 8px rgba(242,183,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(242,183,43,0); }
}
.phone-health {
  background: var(--white);
  border-radius: 14px;
  padding: 12px 13px;
  border: 1px solid rgba(14,118,188,.14);
  box-shadow: 0 8px 20px rgba(0,27,73,.05);
}
.phone-health-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.phone-health-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.phone-health-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--teal);
}
.phone-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(185,198,219,.35);
  font-size: 12px;
  color: var(--ocean-deep);
}
.phone-row:last-child { border-bottom: 0; }
.phone-row-main {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  min-width: 0;
}
.phone-row-ico {
  font-size: 16px !important;
  color: var(--teal);
  flex-shrink: 0;
}
.phone-row > span:last-child {
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
  font-size: 11px;
}
.phone-row.due > span:last-child {
  color: var(--gold);
  font-weight: 700;
}
.phone-entitlement {
  background: var(--ocean-deep);
  color: #fff;
  border-radius: 14px;
  padding: 12px 13px;
  display: grid;
  gap: 8px;
}
.phone-ent-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold);
}
.phone-ent-value {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}
.phone-ent-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}
.phone-ent-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #D99A00);
}

/* About page */
.about-hero { background: linear-gradient(180deg, var(--low) 0%, var(--bg) 100%); }
.about-hero-inner { max-width: 860px; }
.about-hero-copy .btn-ghost {
  border-color: rgba(0,52,120,.25);
  color: var(--ocean-deep);
}
.about-story { background: var(--surface); }
.about-story-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
}
.about-story-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 16px;
}
.about-story-text p:last-child { margin-bottom: 0; }
.about-pillar-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--low); color: var(--teal);
  display: grid; place-items: center; flex-shrink: 0;
}
.about-pillar-ico .material-symbols-outlined { font-size: 22px; }
.about-process { background: var(--low); border-top: 1px solid rgba(14,118,188,.12); }
.about-process-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .about-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .about-process-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.about-process-item {
  background: var(--white);
  border: 1px solid rgba(14,118,188,.16);
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: 0 4px 16px rgba(0,27,73,.04);
  border-top: 3px solid var(--gold);
}
.about-process-num {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--teal); color: #fff;
  font-weight: 800; font-size: 14px;
  margin-bottom: 12px;
}
.about-process-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ocean-deep);
}
.about-process-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.about-cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* About: breadcrumb + Dubai areas */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 14px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}
.breadcrumb a:hover { text-decoration: underline; }
.about-areas-section {
  background: var(--surface);
  border-top: 1px solid rgba(14,118,188,.12);
  border-bottom: 1px solid rgba(14,118,188,.12);
}
.about-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .about-areas-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (min-width: 1024px) {
  .about-areas-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.about-area-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid rgba(14,118,188,.16);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ocean-deep);
  font-weight: 650;
  font-size: 14px;
  line-height: 1.35;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.about-area-card .material-symbols-outlined {
  font-size: 20px;
  color: var(--teal);
  flex-shrink: 0;
}
.about-area-card:hover {
  border-color: rgba(14,118,188,.4);
  box-shadow: 0 6px 20px rgba(0,27,73,.08);
  transform: translateY(-2px);
}

/* —— Dubai areas map —— */
.map-section {
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(14, 118, 188, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 100%, rgba(0, 27, 73, 0.08), transparent 50%),
    var(--low);
  border-top: 1px solid rgba(14,118,188,.12);
  border-bottom: 1px solid rgba(14,118,188,.12);
  overflow: hidden;
}
.map-stage {
  display: grid;
  gap: 28px;
}
@media (min-width: 1024px) {
  .map-stage { gap: 36px; }
}
.map-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 1536 / 1024;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(191, 200, 204, 0.45);
  box-shadow: 0 12px 40px rgba(0, 18, 52, 0.07);
}
.map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  user-select: none;
}
.map-pin {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  border: none;
  background: transparent;
  cursor: pointer;
}
.map-pin-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin: 3px auto 0;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 2px #fff, 0 2px 8px rgba(91, 141, 239, 0.45);
  transition: transform 0.25s ease, background 0.2s;
}
.map-pin-dot--sm {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px 0 0;
  vertical-align: middle;
  box-shadow: 0 0 0 2px #fff;
}
.map-pin-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(91, 141, 239, 0.45);
  opacity: 0;
  pointer-events: none;
}
.map-pin.is-active .map-pin-dot,
.map-pin:hover .map-pin-dot,
.map-pin:focus-visible .map-pin-dot {
  transform: scale(1.35);
  background: var(--teal);
}
.map-pin.is-active .map-pin-pulse {
  animation: mapPulse 1.8s ease-out infinite;
}
@keyframes mapPulse {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}
.map-callouts {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.map-callout {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: max-content;
  max-width: 140px;
  padding: 0 4px;
  text-align: center;
  transform: translate(-50%, calc(-100% - 14px));
  opacity: 0;
  filter: blur(4px);
  transition: opacity 0.45s ease, filter 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.map-callout.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate(-50%, calc(-100% - 18px));
}
.map-callout.is-leaving {
  opacity: 0;
  filter: blur(3px);
  transform: translate(-50%, calc(-100% - 8px)) scale(0.94);
}
.map-callout-ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--teal);
  color: var(--teal);
  box-shadow: 0 4px 14px rgba(0, 18, 52, 0.1);
}
.map-callout-ico .material-symbols-outlined {
  font-size: 22px;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.map-callout-name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
  text-shadow: 0 1px 0 #fff, 0 0 8px #fff;
}
.map-callout-tag {
  font-size: 11px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.25;
  text-shadow: 0 1px 0 #fff;
}
.map-callout-ring {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  width: 56px;
  height: 56px;
  margin-left: -28px;
  margin-top: -28px;
  border: 1.5px solid rgba(91, 141, 239, 0.35);
  border-radius: 50%;
  pointer-events: none;
}
.map-legend {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}
.map-legend-label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 920px;
}
.map-chip {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(191, 200, 204, 0.7);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
}
.map-chip:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.map-chip.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-1px);
}
.map-areas-link {
  margin-top: 4px;
}
@media (max-width: 767px) {
  .map-callout { max-width: 110px; }
  .map-callout-name { font-size: 10px; }
  .map-callout-tag { font-size: 10px; }
  .map-callout-ico { width: 34px; height: 34px; }
  .map-callout-ico .material-symbols-outlined { font-size: 18px; }
  .map-canvas { border-radius: 12px; }
}

/* —— Mobile polish (all pages) —— */
@media (max-width: 1023px) {
  html, body { overflow-x: clip; }
  :root { --header-h: 72px; }

  .site-header .inner { gap: 10px; }
  .brand img {
    height: 48px;
    max-width: min(132px, 44vw);
  }
  .brand-tagline {
    font-size: 8px;
    letter-spacing: .03em;
  }
  .header-actions .btn-book-header {
    padding: 9px 12px;
    font-size: 13px;
  }

  .section { padding: 48px 0; }
  .section-head { margin-bottom: 28px; gap: 8px; padding: 0 4px; }
  .lead { font-size: 16px; line-height: 1.5; }
  .h-display { font-size: clamp(28px, 8vw, 36px); }
  .page-hero { padding: 28px 0 22px; }
  .page-hero .lead { font-size: 15px; }

  .hero {
    min-height: min(100svh, 620px);
    align-items: flex-end;
  }
  .hero-content {
    padding: 28px 0 36px;
    gap: 14px;
    width: 100%;
  }
  .hero-actions { gap: 10px; }
  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: calc(50% - 10px);
    padding: 11px 14px;
  }

  .feature-strip .grid { gap: 14px; padding: 22px 0; }
  .feature-item { gap: 10px; }
  .icon-circle { width: 40px; height: 40px; }
  .icon-circle .material-symbols-outlined { font-size: 20px; }

  .trade-card {
    padding: 16px 10px 14px;
    gap: 8px;
    border-radius: 14px;
  }
  .trade-card .ico,
  .trade-card .ico-tile {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }
  .trade-card h3 { font-size: 13px; }
  .trade-card p { display: none; }

  .steps { gap: 20px; }
  .step-ico { width: 64px; height: 64px; border-radius: 14px; }
  .step-title { font-size: 16px; }
  .step-card { padding: 14px; }

  .why-card { padding: 18px 16px; gap: 12px; }
  .why-num { font-size: 28px; }

  .pocket-phone { margin-top: 8px; overflow: hidden; }
  .phone-frame {
    width: min(280px, 78vw);
    transform: none;
  }

  .map-section { padding-left: 0; padding-right: 0; }
  .map-stage { gap: 18px; }
  .map-canvas {
    border-radius: 12px;
    width: calc(100% + 32px);
    max-width: none;
    margin-left: -16px;
  }
  .map-pin { width: 22px; height: 22px; }
  .map-pin-dot { width: 10px; height: 10px; }
  .map-callout-ring { width: 40px; height: 40px; margin-left: -20px; margin-top: -20px; }
  .map-chips {
    max-height: 140px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 2px 2px 6px;
  }
  .map-chip { font-size: 11px; padding: 6px 10px; }

  .trade-tabs {
    margin: 0 -16px;
    padding: 4px 16px 12px;
    scroll-padding-inline: 16px;
  }
  .trade-tab {
    flex: 0 0 auto;
    min-width: 96px;
    padding: 12px 10px;
  }

  .booking-bar {
    bottom: calc(56px + env(safe-area-inset-bottom));
  }
  .booking-bar .inner {
    min-height: 64px;
    padding: 10px 0;
    gap: 10px;
    flex-wrap: wrap;
  }
  .booking-bar .btn { width: 100%; }

  .site-footer {
    padding: 48px 0 calc(28px + env(safe-area-inset-bottom));
    margin-top: 24px;
  }
  .footer-grid { gap: 28px; }
  .brand-footer img {
    width: min(150px, 70vw);
    max-width: 150px;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  .wa-widget {
    right: 14px;
    bottom: calc(72px + env(safe-area-inset-bottom));
  }
  .fab-wa {
    width: 52px;
    height: 52px;
  }

  .plan-card { padding: 22px 18px; }
  .plan-price { font-size: 34px; }

  .alpha-bar { gap: 4px; }
  .alpha-bar a { width: 32px; height: 32px; font-size: 12px; }

  .about-story-grid,
  .about-process-grid,
  .about-cta-band {
    gap: 16px;
  }
  .about-cta-actions { width: 100%; }
  .about-cta-actions .btn { flex: 1 1 auto; }

  .card { padding: 18px; }
  .form-grid { gap: 14px; }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px; /* prevent iOS zoom */
  }

  main.app-shell {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 479px) {
  .header-actions .btn-book-header { display: none; }
  .brand img {
    height: 44px;
    max-width: min(120px, 52vw);
  }
  .hero-actions .btn {
    flex: 1 1 100%;
    min-width: 100%;
  }
  .trade-grid { gap: 10px; }
  .feature-strip .grid { grid-template-columns: 1fr; }
  .map-callout { display: none; }
  .map-pin.is-active .map-pin-pulse { animation-duration: 1.4s; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .map-pin-pulse { animation: none !important; opacity: 0 !important; }
}

/* ===== Mobile fixes: overflow, tap targets, readability ===== */

/* Grid/flex items must be able to shrink — stops cards & forms
   overflowing the viewport on phones (min-width:auto trap). */
.container > * { min-width: 0; }
.card, .panel, .plan-card, .why-card, .service-card, .trade-card { min-width: 0; max-width: 100%; }
.form-grid { grid-template-columns: minmax(0, 1fr); }
.form-grid.cols-2 { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 768px) { .form-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.field input, .field select, .field textarea { max-width: 100%; }

/* Micro-labels: keep at least 11px */
.badge { font-size: 11px; }

@media (max-width: 767px) {
  /* Comfortable touch targets */
  .qty-ctl { height: 38px; }
  .qty-ctl button { width: 38px; height: 38px; font-size: 18px; }
  .qty-num { min-width: 34px; font-size: 15px; }
  .cart-remove { min-width: 38px; min-height: 38px; font-size: 24px; padding: 4px; }
  .site-footer a { padding: 9px 0; margin-bottom: 0; }
  .map-pin { border: 11px solid transparent; background-clip: padding-box; }

  /* Typography & rhythm at phone widths */
  .h-display { font-size: clamp(28px, 8.5vw, 40px); }
  .section { padding: 44px 0; }
  .section-head { margin-bottom: 32px; }
  .stat-chip { font-size: 11.5px; padding: 5px 10px; }
  .cart-row { gap: 8px; }
  .cart-row .name { font-size: 13px; }
  .svc-hero-icon {
    width: 112px; height: 112px; border-radius: 18px; padding: 12px;
    box-shadow: 0 0 0 5px rgba(242,183,43,.28), 0 16px 36px rgba(0,0,0,.3);
  }
  .hero .btn, .svc-hero .btn { padding: 14px 18px; }
  .trade-tab { min-width: 88px; }
}

/* Cart rows: two-line layout on phones so qty controls + price never overflow */
@media (max-width: 767px) {
  .cart-row { flex-wrap: wrap; row-gap: 10px; }
  .cart-row .name { flex: 1 1 calc(100% - 52px); }
  .cart-remove { order: 2; }
  .qty-ctl { order: 3; }
  .cart-row strong { order: 4; margin-left: auto; min-width: auto; }
}
