/* ============================================================
   Soaptopia Dubai — Pet Grooming
   Palette + type from research/brand-system.md
   ============================================================ */

:root {
  --bg: #F4F8F4;
  --surface: #FFFFFF;
  --surface-2: #EEF5F0;
  --text: #16231F;
  --muted: #5C6B66;
  --primary: #1F9D7A;       /* teal */
  --primary-deep: #157B60;
  --secondary: #2E5675;     /* deep blue */
  --secondary-deep: #1F3D55;
  --accent: #F2B84B;        /* gold */
  --accent-deep: #E0A02E;
  --border: #DBEAE2;
  --focus: #1F9D7A;
  --shadow-sm: 0 1px 2px rgba(22,35,31,.06), 0 2px 8px rgba(22,35,31,.05);
  --shadow-md: 0 8px 24px rgba(22,35,31,.10);
  --shadow-lg: 0 24px 60px rgba(22,35,31,.16);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --maxw: 1180px;
  --header-h: 76px;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

p { margin: 0; text-wrap: pretty; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section { scroll-margin-top: calc(var(--header-h) + 12px); }

.tnum { font-variant-numeric: tabular-nums; letter-spacing: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-deep);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  margin: 14px 0 14px;
}
.section-head p { color: var(--muted); font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }

.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 16px rgba(31,157,122,.28); }
.btn-primary:hover { background: var(--primary-deep); box-shadow: 0 10px 24px rgba(31,157,122,.34); transform: translateY(-2px); }

.btn-accent { background: var(--accent); color: #4a3613; box-shadow: 0 6px 16px rgba(242,184,75,.32); }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-2px); }

.btn-wa { background: #25D366; color: #073f1c; box-shadow: 0 6px 16px rgba(37,211,102,.28); }
.btn-wa:hover { background: #1eb558; transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-deep); background: var(--surface); }

.btn-light { background: #fff; color: var(--secondary-deep); border-color: var(--border); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-block { width: 100%; }
.btn-lg { padding: 17px 28px; font-size: 16px; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.header.scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }
.brand-text span { font-size: 10.5px; color: var(--muted); letter-spacing: .04em; margin-top: 3px; text-transform: uppercase; font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  padding: 9px 14px;
  border-radius: 100px;
  transition: background .18s ease, color .18s ease;
}
.nav a:hover { background: var(--surface-2); color: var(--primary-deep); }

.header-cta { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.drawer.open { visibility: visible; pointer-events: auto; }
.drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(22,35,31,.45);
  opacity: 0; transition: opacity .3s ease;
}
.drawer.open .drawer-backdrop { opacity: 1; }
.drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(82vw, 340px);
  background: var(--surface);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.drawer-close { width: 44px; height: 44px; border: 1.5px solid var(--border); background: #fff; border-radius: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.drawer-close svg { width: 22px; height: 22px; }
.drawer-panel a.dlink {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  padding: 14px 12px;
  border-radius: 12px;
  border-bottom: 1px solid var(--border);
}
.drawer-panel a.dlink:hover { background: var(--surface-2); }
.drawer-actions { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(31,157,122,.10), transparent 60%),
    radial-gradient(760px 480px at 8% 30%, rgba(46,86,117,.07), transparent 60%);
  z-index: -2;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(31,157,122,.18);
  z-index: -1;
}
.bubble.b1 { width: 120px; height: 120px; top: 14%; right: 6%; background: rgba(242,184,75,.06); }
.bubble.b2 { width: 60px; height: 60px; top: 62%; right: 46%; background: rgba(31,157,122,.06); }
.bubble.b3 { width: 200px; height: 200px; bottom: -60px; left: -50px; border-color: rgba(46,86,117,.12); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(38px, 5.6vw, 64px);
  margin: 20px 0 0;
}
.hero h1 .accent { color: var(--primary); }
.hero-sub {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--muted);
  margin-top: 20px;
  max-width: 480px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 16px 9px 12px;
  box-shadow: var(--shadow-sm);
}
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars svg { width: 16px; height: 16px; }
.rating-pill b { font-family: var(--font-display); font-size: 16px; }
.rating-pill span { font-size: 13px; color: var(--muted); }
.hero-trust .gserve { font-size: 13.5px; color: var(--muted); }
.hero-trust .gserve b { color: var(--text); font-family: var(--font-display); }

/* hero media cluster */
.hero-media { position: relative; }
.hero-media .main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--surface-2);
  border: 6px solid #fff;
}
.hero-media .main img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float.f-van { left: -28px; bottom: 44px; }
.hero-float.f-van .ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(242,184,75,.18); color: var(--accent-deep); display: grid; place-items: center; }
.hero-float.f-van .ic svg { width: 22px; height: 22px; }
.hero-float.f-van b { font-family: var(--font-display); font-size: 14px; display: block; }
.hero-float.f-van span { font-size: 12px; color: var(--muted); }
.hero-float.f-rev { right: -20px; top: 36px; flex-direction: column; align-items: flex-start; gap: 4px; padding: 14px 18px; }
.hero-float.f-rev .stars svg { width: 14px; height: 14px; }
.hero-float.f-rev b { font-family: var(--font-display); font-size: 22px; line-height: 1; }
.hero-float.f-rev span { font-size: 11.5px; color: var(--muted); }

/* ============================================================
   Logo strip / quick facts
   ============================================================ */
.factbar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.factbar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.fact {
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--border);
}
.fact:last-child { border-right: 0; }
.fact .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--surface-2); color: var(--primary-deep); display: grid; place-items: center; flex-shrink: 0; }
.fact .ic svg { width: 23px; height: 23px; }
.fact b { font-family: var(--font-display); font-size: 17px; display: block; }
.fact span { font-size: 13px; color: var(--muted); }

/* ============================================================
   Generic section
   ============================================================ */
.sec { padding: clamp(64px, 9vw, 110px) 0; }
.sec-soft { background: var(--surface); }

/* ---------- Services ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.sec-soft .svc-card { background: var(--bg); }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-ic {
  width: 54px; height: 54px;
  border-radius: 15px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(31,157,122,.14), rgba(31,157,122,.05));
  color: var(--primary-deep);
  margin-bottom: 18px;
}
.svc-ic svg { width: 28px; height: 28px; }
.svc-card.feat .svc-ic { background: linear-gradient(135deg, rgba(242,184,75,.2), rgba(242,184,75,.06)); color: var(--accent-deep); }
.svc-card h3 { font-size: 21px; margin-bottom: 9px; }
.svc-card p { color: var(--muted); font-size: 15px; flex-grow: 1; }
.svc-tag {
  align-self: flex-start;
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--primary-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc-tag svg { width: 15px; height: 15px; transition: transform .2s ease; }
.svc-card:hover .svc-tag svg { transform: translateX(4px); }
.feat-badge {
  position: absolute;
  top: 22px; right: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(242,184,75,.16);
  padding: 5px 11px;
  border-radius: 100px;
}
.svc-note {
  margin-top: 30px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px;
}
.svc-note svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

/* ============================================================
   Mobile grooming feature
   ============================================================ */
.mobile-sec { background: var(--secondary-deep); color: #fff; position: relative; overflow: hidden; }
.mobile-sec .eyebrow { color: var(--accent); }
.mobile-sec .eyebrow::before { background: var(--accent); }
.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.mobile-copy h2 { color: #fff; font-size: clamp(30px, 4.2vw, 44px); margin: 14px 0 16px; }
.mobile-copy > p { color: rgba(255,255,255,.78); font-size: 17px; max-width: 480px; }
.steps { margin: 30px 0 0; display: flex; flex-direction: column; gap: 4px; }
.step { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.step:last-child { border-bottom: 0; }
.step .n {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(31,157,122,.25);
  border: 1.5px solid var(--primary);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
}
.step b { font-family: var(--font-display); font-size: 16.5px; display: block; }
.step span { color: rgba(255,255,255,.66); font-size: 14.5px; }
.mobile-media { position: relative; }
.mobile-media img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.area-pill {
  position: absolute;
  bottom: -16px; left: 24px;
  background: var(--accent);
  color: #4a3613;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
}
.area-pill svg { width: 17px; height: 17px; }
.mobile-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery {
  columns: 4;
  column-gap: 16px;
}
.gallery .gitem {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
}
.gallery .gitem img { width: 100%; height: auto; transition: transform .5s ease; }
.gallery .gitem:hover img { transform: scale(1.06); }
.gallery .gitem::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,35,31,.5), transparent 45%);
  opacity: 0; transition: opacity .25s ease;
}
.gallery .gitem:hover::after { opacity: 1; }
.gitem .gcap {
  position: absolute;
  left: 14px; bottom: 12px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 1;
  display: flex; align-items: center; gap: 7px;
}
.gitem .gcap svg { width: 16px; height: 16px; }
.gallery .gitem:hover .gcap { opacity: 1; transform: translateY(0); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 300;
  background: rgba(15,24,21,.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(92vw, 900px);
  max-height: 84vh;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lb-cap {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  text-align: center;
  color: rgba(255,255,255,.82);
  font-size: 14px;
}
.lb-btn {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s ease;
}
.lb-btn:hover { background: rgba(255,255,255,.24); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-close { top: 18px; right: 18px; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}
.score-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 38px 34px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.score-card .big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 68px;
  line-height: 1;
  color: var(--text);
}
.score-card .stars { justify-content: center; margin: 14px 0 10px; }
.score-card .stars svg { width: 22px; height: 22px; }
.score-card .sub { color: var(--muted); font-size: 15px; }
.score-card .gbadge {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.quote-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  border-radius: var(--r-lg);
  padding: 46px 44px;
  position: relative;
  box-shadow: var(--shadow-md);
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 0.6;
  opacity: .22;
  height: 50px;
  display: block;
}
.quote-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.32;
  letter-spacing: -0.01em;
}
.quote-card .qmeta {
  margin-top: 22px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}
.quote-card .qmeta .stars svg { width: 15px; height: 15px; color: var(--accent); }

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-copy h2 { font-size: clamp(30px, 4.2vw, 44px); margin: 14px 0 18px; }
.about-copy p { color: var(--muted); font-size: 17px; margin-bottom: 16px; }
.about-points { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.about-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.about-points .ck { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: rgba(31,157,122,.14); color: var(--primary-deep); display: grid; place-items: center; }
.about-points .ck svg { width: 15px; height: 15px; }
.about-media { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-media img { border-radius: var(--r-md); box-shadow: var(--shadow-sm); width: 100%; height: 100%; object-fit: cover; }
.about-media .tall { grid-row: span 2; aspect-ratio: 3/5; }
.about-media .wide { aspect-ratio: 1/1; }

/* ============================================================
   Contact / Book
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 34px;
  box-shadow: var(--shadow-sm);
}
.form-card h3 { font-size: 24px; margin-bottom: 6px; }
.form-card .fsub { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; margin-bottom: 7px; }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31,157,122,.15);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d8453b; background: #fef5f4; }
.field .err { display: none; color: #c93a30; font-size: 12.5px; margin-top: 6px; font-weight: 500; }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.radio-row { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-chip { position: relative; }
.radio-chip input { position: absolute; opacity: 0; pointer-events: none; }
.radio-chip span {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 15px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
  font-family: var(--font-display);
}
.radio-chip input:checked + span { border-color: var(--primary); background: rgba(31,157,122,.1); color: var(--primary-deep); }
.radio-chip span svg { width: 16px; height: 16px; }

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .ok-ic { width: 64px; height: 64px; border-radius: 50%; background: rgba(31,157,122,.14); color: var(--primary-deep); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .ok-ic svg { width: 34px; height: 34px; }
.form-success h3 { font-size: 24px; margin-bottom: 10px; }
.form-success p { color: var(--muted); font-size: 15.5px; }

/* contact info side */
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.info-row { display: flex; gap: 15px; padding: 14px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.info-row:first-child { padding-top: 0; }
.info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.info-row .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--surface-2); color: var(--primary-deep); display: grid; place-items: center; flex-shrink: 0; }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row .lbl { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.info-row .val { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin-top: 2px; }
.info-row .val a:hover { color: var(--primary-deep); }
.info-row small { display: block; color: var(--muted); font-size: 13px; font-weight: 400; font-family: var(--font-body); margin-top: 2px; }

.map-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}
.map-ph {
  height: 200px;
  background:
    repeating-linear-gradient(45deg, var(--surface-2), var(--surface-2) 14px, #e6efe9 14px, #e6efe9 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.map-ph .pin { width: 48px; height: 48px; border-radius: 50%; background: var(--surface); display: grid; place-items: center; color: var(--primary); box-shadow: var(--shadow-md); }
.map-ph .pin svg { width: 26px; height: 26px; }
.map-ph .mlabel { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--secondary-deep); background: var(--surface); padding: 6px 14px; border-radius: 100px; box-shadow: var(--shadow-sm); }
.map-foot { padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.map-foot .addr { font-size: 14px; color: var(--muted); }
.map-foot .addr b { color: var(--text); font-family: var(--font-display); display: block; font-size: 14.5px; }

.social-row { display: flex; gap: 10px; margin-top: 4px; }
.social-row a {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  display: grid; place-items: center;
  color: var(--secondary);
  transition: all .18s ease;
}
.social-row a:hover { border-color: var(--primary); color: var(--primary-deep); transform: translateY(-2px); }
.social-row a svg { width: 21px; height: 21px; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; border: 2px solid rgba(255,255,255,.14);
}
.cta-band::before { width: 240px; height: 240px; top: -90px; right: -60px; }
.cta-band::after { width: 150px; height: 150px; bottom: -70px; left: 8%; background: rgba(255,255,255,.05); }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); position: relative; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 17px; margin: 14px auto 0; max-width: 480px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--secondary-deep); color: rgba(255,255,255,.7); padding: 60px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer .fbrand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer .fbrand img { height: 44px; background: #fff; border-radius: 12px; padding: 5px; }
.footer .fbrand b { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: #fff; }
.footer p.fdesc { font-size: 14.5px; max-width: 280px; }
.footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer ul a { font-size: 14.5px; transition: color .15s ease; }
.footer ul a:hover { color: #fff; }
.footer .fcontact { display: grid; gap: 12px; font-size: 14.5px; }
.footer .fcontact a:hover { color: #fff; }
.footer .social-row a { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.8); }
.footer .social-row a:hover { color: #fff; border-color: var(--primary); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; }
.footer-bottom .disc { max-width: 540px; opacity: .7; }

/* ============================================================
   Mobile bottom action bar
   ============================================================ */
.bottombar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  display: none;
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  gap: 8px;
}
.bottombar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 7px 4px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
}
.bottombar a svg { width: 21px; height: 21px; }
.bottombar a.call { color: var(--primary-deep); }
.bottombar a.wa { color: #128c3e; }
.bottombar a.enq { color: var(--secondary); }
.bottombar a.dir { color: var(--accent-deep); }
.bottombar a:active { background: var(--surface-2); }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .gallery { columns: 3; }
}
@media (max-width: 960px) {
  .nav { display: none; }
  .header-cta .btn:not(.btn-primary) { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 460px; margin: 0 auto; width: 100%; }
  .mobile-grid, .about-grid, .reviews-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { gap: 24px; }
  .factbar .container { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(2) { border-right: 0; }
  .fact { border-bottom: 1px solid var(--border); }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .gallery { columns: 2; column-gap: 12px; }
  .gallery .gitem { margin-bottom: 12px; }
  .bottombar { display: flex; }
  body { padding-bottom: 76px; }
  .header-cta .btn-primary span.lbl { display: none; }
  .header-cta .btn-primary { width: 46px; height: 46px; padding: 0; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .field-row { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-float.f-van { left: -8px; }
  .hero-float.f-rev { right: -4px; }
  .quote-card { padding: 34px 26px; }
  .form-card, .info-card { padding: 26px 22px; }
  .about-media { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .gallery { columns: 1; }
}

/* BytesGlue QA map patch */
.bg-map-embed{display:block!important;position:relative!important;width:100%!important;min-height:240px!important;border-radius:12px!important;overflow:hidden!important;background:#e9edf1!important;box-shadow:0 0 0 1px rgba(0,0,0,.08) inset!important}
.bg-map-embed iframe{display:block!important;width:100%!important;min-height:260px!important;border:0!important}
.bg-map-embed + .bg-map-embed,
.bg-map-embed + .pin,
.bg-map-embed + .lbl,
.bg-map-embed + .corner-note,
.bg-map-embed + .placeholder,
.bg-map-embed + .center,
.bg-map-embed + [class*="map-note"],
.bg-map-embed + [class*="map-tag"]{display:none!important}
.map .placeholder .pin,.map-ph .pin,.map-pin,.map-marker,.map-ph__pin,.map-ph__pin .dot,.map-ph__pin .pin,.map-ph .mi{max-width:18px!important;max-height:18px!important;width:18px!important;height:18px!important;box-shadow:none!important}
.map .placeholder .pin svg,.map-ph .pin svg,.map-pin svg,.map-marker svg,.map-ph__pin svg,.map-ph .mi{width:12px!important;height:12px!important}
.map-note,.map-tag,[class*="map-note"],[class*="map-tag"]{display:none!important}
