:root {
  --ocean-deep: #001B49;
  --teal: #0E76BC; /* service / home blue — matches trade icons */
  --service: #0E76BC;
  --primary: #001B49;
  --mint: #D99A00;
  --whatsapp: #25D366;
  --bg: #ffffff;
  --surface: #ffffff;
  --white: #ffffff;
  --low: #F4F5F7;
  --high: #E9EBF0;
  --outline: #D9DDE3;
  --text: #1F2937;
  --muted: #4B5563;
  --radius: 8px;
  --radius-xl: 12px;
  --shadow: 0 4px 20px rgba(0, 27, 73, 0.08);
  --max: 1280px;
  --header-h: 80px;
  --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(255,255,255,.92); backdrop-filter: blur(10px);
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
}
.site-header .inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--primary); flex-shrink: 0; }
.brand img {
  height: 64px;
  width: auto;
  max-width: min(160px, 42vw);
  object-fit: contain;
  display: block;
}
.brand-footer img {
  height: auto;
  width: min(168px, 100%);
  max-width: 168px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
}
.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 {
  font-size: 14px; font-weight: 600; color: var(--muted); transition: color .15s;
}
.nav-desktop a:hover, .nav-desktop a.is-active, .nav-desktop .nav-drop > button:hover { color: var(--teal); }
.nav-desktop a.is-active { text-decoration: underline; text-underline-offset: 8px; font-weight: 700; color: var(--teal); }
.nav-drop { position: relative; }
.nav-drop > button { display: inline-flex; align-items: center; gap: 2px; }
.nav-drop-menu {
  display: none; position: absolute; top: 100%; left: 0; padding-top: 12px; min-width: 180px;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display: block; }
.nav-drop-menu .panel {
  background: var(--white); border: 1px solid rgba(185,198,219,.5); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 8px 0; min-width: 240px;
}
.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);
}
.nav-drop-menu a:hover { background: var(--low); color: var(--teal); }

/* One ~4KB sprite for all 6 menu icons */
.nav-svc-ico {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 7px;
  background-image: url("../img/icons/services-sprite.webp?v=svc-gold2");
  background-repeat: no-repeat;
  background-size: 168px 28px; /* 6 × 28 */
  background-color: transparent;
}
.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: none; position: fixed; inset: var(--header-h) 0 0 0; z-index: 49;
  background: rgba(0,27,73,.45);
}
.mobile-drawer.open { display: block; }
.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);
  animation: slideIn .2s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@keyframes slideIn { from { transform: translateX(16px); opacity: .6; } to { transform: none; opacity: 1; } }
.mobile-drawer a { padding: 12px; border-radius: var(--radius); font-weight: 600; color: var(--text); }
.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(255,255,255,.96); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(185,198,219,.5); 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);
}
.mobile-bottom a.is-active, .mobile-bottom a:hover { 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(--muted);
}
.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; }
@media (min-width: 1024px) { .section { padding: 100px 0; } }
.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; }
.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,.15) 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: #F2B72B; }
.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: #F2B72B; }

.feature-strip { background: var(--primary); color: #fff; }
.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: #F2B72B; 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: #fff;
  border: 1px solid rgba(191, 200, 204, 0.55);
  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: #F4F5F7;
}
.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(--white);
  border-top: 1px solid rgba(185,198,219,.3);
}
.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%,
    #F2B72B 62%,
    #F2B72B 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: #D99A00; 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: #fff;
  border: 1px solid rgba(191,200,204,.55);
  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: #F2B72B;
  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(185,198,219,.35);
  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(185,198,219,.4); 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: rgba(217,154,0,.5); 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: #F4F5F7;
  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: 40px; border-top: 4px solid var(--mint); }
.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: #F2B72B; 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; }

.fab-wa {
  position: fixed; right: 20px; bottom: 84px; z-index: 46;
  width: 56px; height: 56px; border-radius: 50%; background: var(--whatsapp); color: #fff;
  display: grid; place-items: center; 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%; }
@media (min-width: 1024px) { .fab-wa { bottom: 24px; } }

.page-hero { background: var(--white); padding: 40px 0 28px; border-bottom: 1px solid rgba(185,198,219,.35); }
.page-hero .accent { color: var(--mint); }
.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); }

.plan-card { padding: 28px; border-radius: var(--radius-xl); background: var(--white); border: 1px solid rgba(185,198,219,.4); display: grid; gap: 16px; }
.plan-card.featured { background: var(--ocean-deep); color: #fff; border: none; }
@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(185,198,219,.35); 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: #F4F5F7; border-top: 1px solid rgba(185,198,219,.35); }
.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: #fff;
  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(185,198,219,.3);
  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 */
.pocket-section { background: #fff; border-top: 1px solid rgba(185,198,219,.35); }
.pocket-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .pocket-grid { grid-template-columns: 1.1fr 0.9fr; gap: 56px; }
}
.pocket-copy { display: grid; gap: 16px; justify-items: start; }
.pocket-lead { max-width: 520px; }
.pocket-features {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.pocket-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pocket-ico {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.pocket-ico .material-symbols-outlined { font-size: 20px; }
.pocket-features strong {
  display: block;
  font-size: 15px;
  color: var(--ocean-deep);
  margin-bottom: 4px;
}
.pocket-features p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.pocket-note {
  width: 100%;
  background: #F4F5F7;
  border-left: 4px solid var(--teal);
  border-radius: 0 10px 10px 0;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.pocket-note strong { color: var(--ocean-deep); }

.pocket-phone { display: flex; justify-content: center; }
.phone-frame {
  width: min(300px, 100%);
  background: #001B49;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 24px 50px rgba(0,27,73,.22);
  position: relative;
}
.phone-notch {
  width: 96px; height: 18px; background: #001B49; border-radius: 0 0 12px 12px;
  margin: 0 auto 8px; position: relative; z-index: 2;
}
.phone-screen {
  background: #F4F5F7;
  border-radius: 28px;
  padding: 18px 16px 20px;
  min-height: 460px;
}
.phone-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px; color: var(--ocean-deep);
}
.phone-hi { font-weight: 700; font-size: 18px; }
.phone-status {
  background: #F4F5F7;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 16px;
}
.phone-status-label {
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 6px;
}
.phone-tech { font-weight: 700; color: var(--ocean-deep); font-size: 15px; }
.phone-loc { font-size: 13px; color: var(--muted); margin: 2px 0 10px; }
.phone-eta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #001B49; color: #fff; font-size: 12px; font-weight: 600;
  padding: 8px 12px; border-radius: 999px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #D99A00;
  box-shadow: 0 0 0 0 rgba(217,154,0,.5);
  animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(217,154,0,.45); }
  70% { box-shadow: 0 0 0 8px rgba(217,154,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(217,154,0,0); }
}
.phone-health {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(185,198,219,.45);
}
.phone-health-title {
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.phone-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(185,198,219,.35);
  font-size: 13px; color: var(--ocean-deep);
}
.phone-row:last-child { border-bottom: 0; }
.phone-row span:last-child { color: var(--muted); font-weight: 600; }
.phone-row.due span:last-child { color: #D99A00; }

/* About page */
.about-hero { background: linear-gradient(180deg, #F4F5F7 0%, #fff 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: #fff; }
.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: #F4F5F7; color: var(--teal);
  display: grid; place-items: center; flex-shrink: 0;
}
.about-pillar-ico .material-symbols-outlined { font-size: 22px; }
.about-process { background: #F4F5F7; border-top: 1px solid rgba(185,198,219,.35); }
.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: #fff;
  border: 1px solid rgba(185,198,219,.4);
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: 0 4px 16px rgba(0,27,73,.04);
}
.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;
}

/* —— Dubai areas map —— */
.map-section {
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(61, 123, 255, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 100%, rgba(0, 27, 73, 0.06), transparent 50%),
    #F4F5F7;
  border-top: 1px solid rgba(191, 200, 204, 0.35);
  border-bottom: 1px solid rgba(191, 200, 204, 0.35);
  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: #F4F5F7;
  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: 64px; }

  .site-header .inner { gap: 10px; }
  .brand img {
    height: 48px;
    max-width: min(132px, 46vw);
  }
  .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; }

  .fab-wa {
    right: 14px;
    bottom: calc(72px + env(safe-area-inset-bottom));
    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; }
}
