/* =========================================================
   ALPHA HUB — Design System v2
   Palette: deep navy + warm orange, matching the approved
   reference design. Every page (home, service pages, request,
   legal pages) shares these tokens and components.
   ========================================================= */

:root {
  /* --- Brand palette --- */
  --navy: #0b2447;
  --navy-2: #123566;
  --navy-3: #16407f;
  --navy-soft: #eef3fa;
  --orange: #f2812f;
  --orange-dark: #d96c1f;
  --orange-light: #fff1e6;
  --gold: #f7b955;

  /* --- Neutrals --- */
  --ink: #14213d;
  --muted: #5b6b85;
  --muted-2: #8894a8;
  --paper: #f5f7fb;
  --white: #ffffff;
  --line: #e2e8f2;
  --soft: #eef2f8;

  /* --- Card accent tints (icon badges) --- */
  --tint-blue: #e7f0fd;
  --tint-blue-ink: #1c5bc9;
  --tint-sky: #e5f6fb;
  --tint-sky-ink: #0f8fb8;
  --tint-peach: #fdece0;
  --tint-peach-ink: #d9702c;
  --tint-lilac: #efeafb;
  --tint-lilac-ink: #6b46c1;
  --tint-mint: #e5f8ef;
  --tint-mint-ink: #17945c;

  --bg: var(--paper);
  --text: var(--ink);
  --text-muted: var(--muted);
  --border: var(--line);
  --shadow-sm: 0 6px 18px rgba(11, 36, 71, .08);
  --shadow: 0 20px 45px rgba(11, 36, 71, .14);
  --shadow-lg: 0 30px 70px rgba(11, 36, 71, .22);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1220px;
  --font-display: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  background: var(--orange);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.01em;
}

p { color: var(--text-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(242, 129, 47, .35);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 14px 28px rgba(217, 108, 31, .4); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-2); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--navy); }

.btn-ghost-light {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.16); border-color: var(--white); }

.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }

/* =========================================================
   HEADER
   ========================================================= */
.top-strip {
  background: var(--navy);
  color: #cfe0ff;
  font-size: .82rem;
}
.top-strip .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 6px 0;
  gap: 6px;
}
.top-strip a { display: inline-flex; align-items: center; gap: 6px; color: #cfe0ff; }
.top-strip a:hover { color: var(--white); }
.top-strip svg { width: 14px; height: 14px; stroke: currentColor; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 500;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
}
.brand .brand-accent { color: var(--orange); }
.brand small {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 2px;
}
.brand-lockup { display: flex; flex-direction: column; line-height: 1.1; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
}
.desktop-nav a { position: relative; padding: 6px 0; }
.desktop-nav a:hover { color: var(--orange); }
.desktop-nav .has-dropdown {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 0;
  font: inherit;
  font-weight: 700;
  color: var(--navy);
}
.desktop-nav .has-dropdown:hover { color: var(--orange); }
.desktop-nav .has-dropdown svg {
  width: 13px; height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

/* ---- Services dropdown menu ---- */
.menu-hover { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 6px);
  width: 320px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 50;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px; height: 12px;
  background: var(--white);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
  border-radius: 3px 0 0 0;
}
.menu-hover:hover .nav-dropdown,
.menu-hover:focus-within .nav-dropdown,
.menu-hover.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.menu-hover:hover .has-dropdown svg,
.menu-hover.is-open .has-dropdown svg { transform: rotate(180deg); }
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background .15s ease;
}
.nav-dropdown a:hover { background: var(--soft); }
.nav-dropdown a strong { display: block; font-size: .87rem; color: var(--navy); font-weight: 800; }
.nav-dropdown a small { display: block; font-size: .74rem; color: var(--muted-2); font-weight: 600; margin-top: 1px; }
.nav-dropdown-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-dropdown-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nav-dropdown-icon--blue  { background: var(--tint-blue);  color: var(--tint-blue-ink); }
.nav-dropdown-icon--peach { background: var(--tint-peach); color: var(--tint-peach-ink); }
.nav-dropdown-icon--mint  { background: var(--tint-mint);  color: var(--tint-mint-ink); }
.nav-dropdown-icon--sky   { background: var(--tint-sky);   color: var(--tint-sky-ink); }
.nav-dropdown-icon--lilac { background: var(--tint-lilac); color: var(--tint-lilac-ink); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--navy);
}
.header-phone .icon-circle {
  width: 34px; height: 34px;
  border-radius: 999px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.header-phone .icon-circle svg { width: 16px; height: 16px; }

.icon-button {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.icon-button svg { width: 20px; height: 20px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu[data-open="true"] { visibility: visible; pointer-events: auto; }
.menu-backdrop {
  position: absolute; inset: 0;
  background: rgba(11,36,71,.55);
  border: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.mobile-menu[data-open="true"] .menu-backdrop { opacity: 1; }
.menu-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: var(--white);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: translateX(100%);
  transition: transform .25s ease;
  overflow-y: auto;
}
.mobile-menu[data-open="true"] .menu-panel { transform: translateX(0); }
.menu-top { display: flex; align-items: center; justify-content: space-between; }
.menu-panel nav { display: flex; flex-direction: column; gap: 4px; }
.menu-panel nav a {
  padding: 13px 10px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--navy);
}
.menu-panel nav a:hover { background: var(--soft); }
.menu-sub { padding-left: 14px; display: flex; flex-direction: column; }
.menu-sub a { font-weight: 600; font-size: .92rem; color: var(--muted); }

/* =========================================================
   HERO — split panel (image carousel/copy left, contact card right)
   ========================================================= */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative;
  overflow: hidden;
  padding: 56px 0 70px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 32px;
  align-items: stretch;
}
.hero-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(120deg, #0c2c57 0%, #123a72 100%);
}

/* ---- Hero auto-rotating carousel ---- */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease, transform 7s ease;
}
.hero-slide.is-active {
  opacity: .58;
  transform: scale(1);
  z-index: 1;
}
.hero-panel::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(9,26,54,.92) 15%, rgba(9,26,54,.55) 55%, rgba(9,26,54,.15) 100%);
}
.hero-panel-content {
  position: relative;
  z-index: 2;
  padding: 44px 44px 48px;
  max-width: 560px;
}
.hero-panel-content h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  margin-top: 14px;
}
.hero-panel-content .eyebrow { color: var(--gold); }
.hero-panel-content p {
  color: #cfd9ec;
  margin-top: 14px;
  font-size: 1.02rem;
  max-width: 460px;
}
.hero-panel-content .hero-actions { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 44px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dots span {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.hero-dots span.active { background: var(--orange); width: 22px; }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch;
  justify-content: center;
}
.contact-card h3 {
  font-size: 1.3rem;
}
.contact-card .form-field { display: flex; flex-direction: column; gap: 6px; }
.contact-card label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.contact-card input,
.contact-card select,
.contact-card textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: var(--paper);
  font-size: .95rem;
}
.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}
.contact-card textarea { resize: vertical; min-height: 88px; }
.contact-card .btn { margin-top: 4px; }
.form-note { font-size: .78rem; color: var(--muted-2); }
.form-status { font-size: .85rem; font-weight: 700; min-height: 1.1em; }
.form-status[data-state="success"] { color: #17945c; }
.form-status[data-state="error"] { color: #d9482c; }
.form-success {
  display: flex;
  min-height: 280px;
  padding: 34px 24px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #bce8d0;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #f4fff8, #e8f9ef);
  box-shadow: var(--shadow);
}
.form-success-icon {
  display: inline-flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1aa765;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(26, 167, 101, .24);
}
.form-success-icon svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 2.8; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { margin: 18px 0 7px; color: #107647; font-size: 1.35rem; }
.form-success p { max-width: 420px; color: var(--text-muted); font-size: .92rem; line-height: 1.55; }
.form-success-reset { margin-top: 22px; }

/* =========================================================
   SECTION HEADINGS
   ========================================================= */
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-heading .eyebrow { justify-content: center; display: flex; }
.section-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-top: 10px;
}
.section-heading p { margin-top: 12px; }
.section-alt { background: var(--navy-soft); }

/* =========================================================
   SERVICE CARDS (home "Book Your Services")
   3 cards per row, SVG shown by default, PNG crossfades in on hover
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(11, 36, 71, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--navy-soft);
}
.service-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity .55s ease, transform .7s cubic-bezier(.2,.7,.3,1);
}
.quick-card-illustration {
  display: block;
  box-shadow: 0 8px 18px rgba(11, 36, 71, .1);
  transition: transform .35s ease, filter .35s ease;
}
.quick-card:hover .quick-card-illustration { transform: scale(1.035); filter: saturate(1.08); }
.quick-card[data-prefill-select], .service-option-card[data-prefill-select] { cursor: pointer; }
.quick-card[data-prefill-select]:focus-visible, .service-option-card[data-prefill-select]:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.service-card-media .media-default {
  object-fit: contain;
  padding: 34px;
  box-sizing: border-box;
  opacity: 1;
  transform: scale(1);
}
.service-card-media .media-hover {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.12);
}
.service-card:hover .media-default { opacity: 0; transform: scale(.92); }
.service-card:hover .media-hover { opacity: 1; transform: scale(1); }
.service-card-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,36,71,0) 55%, rgba(11,36,71,.5) 100%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 1;
}
.service-card:hover .service-card-media::after { opacity: 1; }

.service-card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.service-card-body h3 { font-size: 1.05rem; line-height: 1.3; }
.service-card-body h3 a:hover { color: var(--orange); }
.service-card-body p { font-size: .87rem; color: var(--muted); flex: 1; margin: 0; }
.service-card-body .btn {
  align-self: stretch;
  justify-content: center;
  margin-top: 10px;
  width: 100%;
}

/* =========================================================
   ONLINE SERVICES FEATURE GRID
   ========================================================= */
.service-option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.service-option-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--white) 0%, var(--navy-soft) 100%);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-option-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -42% auto;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242,129,47,.16) 0%, rgba(242,129,47,0) 70%);
  pointer-events: none;
}
.service-option-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-option-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 10px 24px rgba(11,36,71,.12), inset 0 1px 0 rgba(255,255,255,.7);
}
.service-option-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-option-icon--blue { background: linear-gradient(140deg, var(--tint-blue), #f8fbff); color: var(--tint-blue-ink); }
.service-option-icon--sky { background: linear-gradient(140deg, var(--tint-sky), #f9feff); color: var(--tint-sky-ink); }
.service-option-icon--peach { background: linear-gradient(140deg, var(--tint-peach), #fff8f3); color: var(--tint-peach-ink); }
.service-option-icon--mint { background: linear-gradient(140deg, var(--tint-mint), #f8fefb); color: var(--tint-mint-ink); }
.service-option-icon--lilac { background: linear-gradient(140deg, var(--tint-lilac), #fcfbff); color: var(--tint-lilac-ink); }
.service-option-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.service-option-card p {
  font-size: .84rem;
  margin: 0;
  line-height: 1.55;
}
.service-option-card .service-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(11, 36, 71, .06);
  color: var(--navy);
}

/* =========================================================
   TRUST BADGES ROW
   ========================================================= */
.trust-strip { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 44px 0;
}
.trust-item { display: flex; align-items: center; gap: 16px; }
.trust-avatar {
  width: 56px; height: 56px;
  border-radius: 18px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-soft);
  color: var(--navy);
  border: 1px solid rgba(11,36,71,.08);
  box-shadow: 0 10px 20px rgba(11,36,71,.08), inset 0 1px 0 rgba(255,255,255,.9);
}
.trust-avatar svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-avatar--blue  { background: linear-gradient(135deg, var(--tint-blue), #f8fbff); color: var(--tint-blue-ink); }
.trust-avatar--sky   { background: linear-gradient(135deg, var(--tint-sky), #f9feff); color: var(--tint-sky-ink); }
.trust-avatar--peach { background: linear-gradient(135deg, var(--tint-peach), #fffaf5); color: var(--tint-peach-ink); }
.trust-avatar--mint  { background: linear-gradient(135deg, var(--tint-mint), #f8fefb); color: var(--tint-mint-ink); }
.trust-item p { color: var(--navy); font-weight: 700; font-size: .92rem; line-height: 1.35; }

/* =========================================================
   PROCESS / HOW IT WORKS
   ========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-card { text-align: center; }
.process-badge {
  width: 74px; height: 74px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-light), #fff8f1);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  border: 1px solid rgba(242,129,47,.18);
  box-shadow: 0 12px 24px rgba(242,129,47,.16);
}
.process-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.process-card p { font-size: .88rem; }

/* =========================================================
   PRICING CARDS (car wash / ownwash style)
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}
.pricing-badge {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.pricing-card .eyebrow { color: var(--muted-2); }
.pricing-card h3 { font-size: 1.2rem; }
.pricing-price { display: flex; align-items: baseline; gap: 6px; margin-top: 4px; }
.pricing-price strong { font-size: 2.1rem; color: var(--navy); font-family: var(--font-display); }
.pricing-price span { color: var(--muted); font-size: .85rem; }
.pricing-list { display: flex; flex-direction: column; gap: 10px; margin: 6px 0; }
.pricing-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--text); }
.pricing-list svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.pricing-fine { font-size: .74rem; color: var(--muted-2); text-align: center; }

/* =========================================================
   DOCUMENT / ONLINE-SERVICES CARDS
   ========================================================= */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.doc-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(238,243,250,0.96) 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 10px 24px rgba(11,36,71,.06);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.doc-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: transparent;
}
.doc-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--white), var(--navy-soft));
  color: var(--navy-3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(11,36,71,.08);
  box-shadow: 0 12px 24px rgba(11,36,71,.12), inset 0 1px 0 rgba(255,255,255,.9);
}
.doc-icon svg { width: 24px; height: 24px; }
.doc-card h3 { font-size: 1rem; margin-bottom: 6px; }
.doc-card p { font-size: .84rem; margin-bottom: 10px; line-height: 1.55; }
.doc-card .doc-meta {
  display: flex;
  gap: 10px;
  font-size: .74rem;
  color: var(--muted-2);
  font-weight: 700;
  margin-bottom: 10px;
}
.doc-card a.doc-link { font-size: .85rem; font-weight: 800; color: var(--orange); display: inline-flex; align-items: center; gap: 6px; }
.doc-card a.doc-link:hover { color: var(--orange-dark); }

/* =========================================================
   WHY US / VALUE STRIP (icon + heading + copy, 4-up)
   ========================================================= */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 28px 20px;
}
.value-icon {
  width: 62px; height: 62px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--white), var(--navy-soft));
  color: var(--navy);
  border: 1px solid rgba(11,36,71,.08);
  box-shadow: 0 14px 28px rgba(11,36,71,.12), inset 0 1px 0 rgba(255,255,255,.95);
}
.value-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.value-icon--blue  { background: linear-gradient(135deg, var(--tint-blue), #f8fbff); color: var(--tint-blue-ink); }
.value-icon--peach { background: linear-gradient(135deg, var(--tint-peach), #fffaf5); color: var(--tint-peach-ink); }
.value-icon--lilac { background: linear-gradient(135deg, var(--tint-lilac), #fcfbff); color: var(--tint-lilac-ink); }
.value-icon--mint  { background: linear-gradient(135deg, var(--tint-mint), #f8fefb); color: var(--tint-mint-ink); }
.value-card h3 { font-size: 1rem; margin-bottom: 6px; }
.value-card p { font-size: .86rem; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.testimonial-stars { color: var(--gold); display: flex; gap: 3px; margin-bottom: 12px; }
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-card p.quote { color: var(--text); font-size: .92rem; margin-bottom: 16px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 999px;
  background: var(--navy-soft);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .85rem;
}
.testimonial-person strong { display: block; font-size: .88rem; color: var(--navy); }
.testimonial-person span { font-size: .78rem; color: var(--muted-2); }

/* =========================================================
   INNER PAGE HERO (service/legal pages)
   ========================================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 320px at 85% -10%, rgba(247,185,85,.22), transparent 68%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.07) 0%, transparent 38%, rgba(255,255,255,.05) 100%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; color: #b9c9e4;
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--white); }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.page-hero p { color: #cfd9ec; margin-top: 12px; max-width: 620px; font-size: 1rem; }
.page-hero .hero-actions { margin-top: 22px; display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero--online .container { display: grid; gap: 22px; }
.page-hero-panel {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 20px;
  align-items: center;
}
.page-hero-metrics {
  display: grid;
  gap: 12px;
}
.page-hero-metric {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}
.page-hero-metric strong {
  display: block;
  color: var(--white);
  font-size: 1.12rem;
  font-family: var(--font-display);
  margin-bottom: 4px;
}
.page-hero-metric span {
  display: block;
  font-size: .74rem;
  color: #dfe7f8;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy);
  color: #c8d4e8;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
  border: 1px solid rgba(255,255,255,.14);
}
.footer-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2); }
.footer-address { display: flex; gap: 10px; margin-top: 14px; font-size: .88rem; align-items: flex-start; }
.footer-address svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--orange); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; align-items: center; gap: 12px; font-size: .9rem; }
.footer-contact-list a:hover { color: var(--white); }
.footer-icon {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.footer-icon svg { width: 17px; height: 17px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.footer-links a { font-size: .9rem; }
.footer-links a:hover { color: var(--white); }

.social-row { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background .15s ease, transform .15s ease;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--orange); transform: translateY(-3px); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0;
  font-size: .8rem;
  color: #92a3c0;
  flex-wrap: wrap;
}
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 18px; }

/* =========================================================
   FLOATING HELP / WHATSAPP BUTTON
   ========================================================= */
.float-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  box-shadow: 0 14px 30px rgba(242,129,47,.45);
  transition: transform .15s ease;
}
.float-btn:hover { transform: translateY(-3px); }
.float-btn svg { width: 20px; height: 20px; }
.float-btn.whatsapp { background: #25d366; box-shadow: 0 14px 30px rgba(37,211,102,.4); }

/* =========================================================
   CHAT WIDGET (Alpha Hub Assistant)
   ========================================================= */
.chat-panel {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 401;
  width: min(360px, calc(100vw - 32px));
  height: min(500px, calc(100vh - 140px));
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(11, 36, 71, .28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.98);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.chat-panel[data-open="true"] {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chat-panel-header {
  background: var(--navy);
  color: var(--white);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.chat-panel-header strong { display: block; font-size: .95rem; }
.chat-panel-header span { display: block; font-size: .76rem; color: rgba(255,255,255,.65); margin-top: 2px; }
.chat-panel-close {
  background: rgba(255,255,255,.12);
  color: var(--white);
  width: 28px; height: 28px;
  border-radius: 999px;
  font-size: 1.1rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chat-panel-close:hover { background: rgba(255,255,255,.22); }

.chat-panel-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--paper);
}
.chat-bubble {
  max-width: 84%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .87rem;
  line-height: 1.45;
  white-space: pre-wrap;
}
.chat-bubble-bot {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.chat-bubble-user {
  align-self: flex-end;
  background: var(--orange);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.chat-bubble-typing { display: flex; gap: 4px; padding: 14px; }
.chat-bubble-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted-2);
  animation: chatTyping 1s infinite ease-in-out;
}
.chat-bubble-typing span:nth-child(2) { animation-delay: .15s; }
.chat-bubble-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes chatTyping {
  0%, 60%, 100% { opacity: .35; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.chat-panel-input {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: var(--white);
  flex-shrink: 0;
}
.chat-panel-input input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: .87rem;
  background: var(--paper);
}
.chat-panel-input input:focus { border-color: var(--orange); background: var(--white); }
.chat-send {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.chat-send:hover { background: var(--orange-dark); }
.chat-send svg { width: 18px; height: 18px; }

@media (max-width: 480px) {
  .chat-panel { right: 16px; left: 16px; width: auto; bottom: 84px; }
}

/* =========================================================
   TOASTS
   ========================================================= */
.toast-region {
  position: fixed;
  top: 18px; right: 18px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  max-width: 320px;
  animation: toast-in .2s ease;
}
.toast[data-tone="error"] { background: #b3341d; }
.toast[data-tone="success"] { background: #147a4f; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   GENERIC CONTENT (legal pages, blog)
   ========================================================= */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 36px; margin-bottom: 12px; font-size: 1.3rem; }
.prose h3 { margin-top: 24px; margin-bottom: 10px; font-size: 1.05rem; }
.prose p { margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.prose ul li { margin-bottom: 6px; color: var(--text-muted); }

.card-plain {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

/* =========================================================
   FORM ELEMENTS (request page, generic)
   ========================================================= */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 700; color: var(--navy); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: var(--paper);
  font-size: .95rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-hint { font-size: .76rem; color: var(--muted-2); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1240px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-option-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .doc-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-dropdown { width: 280px; }
  .page-hero-panel { grid-template-columns: 1fr; }
}

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { min-height: 340px; }
  .pricing-card.featured { transform: none; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .icon-button { background: var(--orange); }
  .icon-button svg { stroke: var(--white); }
  .desktop-nav, .header-phone, .top-strip { display: none; }
  .icon-button { display: flex; }
  .service-grid, .service-option-grid, .trust-grid, .process-grid, .doc-grid, .value-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-panel-content { padding: 30px 24px 34px; }
  .section { padding: 56px 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity .6s ease; transform: none !important; }
  .service-card-media img { transition: opacity .3s ease; transform: none !important; }
}

/* =========================================================
   SHARED NAVIGATION + LEGACY PAGE POLISH
   Keeps every public page in the same visual system, including
   the journal and legal pages that use the compact header markup.
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav-inner { min-height: 72px; display: flex; align-items: center; gap: 28px; }
.nav .brand { margin-right: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link { color: var(--navy); font-size: .9rem; font-weight: 700; }
.nav-link:hover, .nav-link.active { color: var(--orange); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 999px; color: var(--navy); background: var(--white); }
.icon-btn:hover { color: var(--orange); border-color: var(--orange); }
.hamburger { display: none; }

/* Make the Services menu on older service pages match the fixed header. */
.desktop-nav > .nav-dropdown { position: relative; top: auto; left: auto; transform: none; width: auto; background: none; border: 0; box-shadow: none; padding: 0; display: block; opacity: 1; visibility: visible; pointer-events: auto; }
.desktop-nav > .nav-dropdown::before { display: none; }
.desktop-nav > .nav-dropdown > button { display: flex; align-items: center; gap: 5px; padding: 6px 0; color: var(--navy); font: inherit; font-weight: 700; }
.desktop-nav > .nav-dropdown > button:hover { color: var(--orange); }
.desktop-nav > .nav-dropdown .nav-dropdown-panel { position: absolute; top: calc(100% + 14px); left: 50%; width: 300px; padding: 10px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translate(-50%, 6px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; z-index: 50; }
.desktop-nav > .nav-dropdown:hover .nav-dropdown-panel, .desktop-nav > .nav-dropdown:focus-within .nav-dropdown-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.desktop-nav > .nav-dropdown .nav-dropdown-panel a { display: block; padding: 11px 12px; border-radius: 10px; color: var(--navy); font-weight: 700; }
.desktop-nav > .nav-dropdown .nav-dropdown-panel a:hover { background: var(--soft); color: var(--orange); }

/* Compact pages: clearer content rhythm and card-like articles. */
.breadcrumbs { display: flex; align-items: center; gap: 9px; color: var(--muted-2); font-size: .86rem; margin-bottom: 22px; }
.breadcrumbs a { color: var(--navy); font-weight: 700; }
.section-head { max-width: 680px; margin: 0 auto 30px; text-align: center; }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); margin-top: 10px; }
.section-lede { margin-top: 12px; font-size: 1.04rem; }
.feature-grid { display: grid; gap: 18px; }
.dept-card { background: var(--white); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.dept-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dept-card h3 { font-size: 1.18rem; }
.dept-card p { margin-top: 10px; }
.dept-num, .pill { display: inline-flex; align-items: center; border-radius: 999px; background: var(--orange-light); color: var(--orange-dark); font-size: .72rem; font-weight: 800; letter-spacing: .07em; padding: 6px 10px; }
.footer { background: var(--navy); color: #c8d4e8; padding-top: 22px; }
.footer .footer-bottom { min-height: 68px; margin-top: 0; border-top: 0; }
.footer a { color: inherit; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; width: 44px; height: 44px; border-radius: 999px; border: 0; background: var(--orange); color: var(--white); box-shadow: var(--shadow); }

/* Service pages receive a recognizable visual identity without losing the
   shared navigation, layout, and booking flow. */
.service-page .page-hero {
  min-height: 370px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
}
.service-page--online .page-hero { background-image: linear-gradient(90deg, rgba(8,30,61,.96) 0%, rgba(8,30,61,.86) 48%, rgba(8,30,61,.62) 100%), url("../images/rto.png"); }
.service-page--car-care .page-hero { background-image: linear-gradient(90deg, rgba(8,30,61,.96) 0%, rgba(8,30,61,.84) 48%, rgba(8,30,61,.56) 100%), url("../images/car-washing.png"); }
.service-page--medical .page-hero { background-image: linear-gradient(90deg, rgba(8,30,61,.96) 0%, rgba(8,30,61,.85) 48%, rgba(8,30,61,.58) 100%), url("../images/nursing-care.png"); }
.service-page--travel .page-hero { background-image: linear-gradient(90deg, rgba(8,30,61,.96) 0%, rgba(8,30,61,.84) 48%, rgba(8,30,61,.56) 100%), url("../images/travel.png"); }
.service-page--it .page-hero { background-image: linear-gradient(90deg, rgba(8,30,61,.96) 0%, rgba(8,30,61,.84) 48%, rgba(8,30,61,.56) 100%), url("../images/it-solutions.png"); }
.service-page .page-hero::before { background: radial-gradient(620px 280px at 84% 10%, rgba(247,185,85,.28), transparent 68%); }
.service-page .section { position: relative; }
.service-page .section-heading { max-width: 720px; margin-inline: auto; }
.service-page .value-card, .service-page .service-option-card, .service-page .doc-card, .service-page .pricing-card, .service-page .process-card, .service-page .card-plain {
  border-color: rgba(11,36,71,.1);
  box-shadow: 0 12px 28px rgba(11,36,71,.08);
}
.service-page .value-card:hover, .service-page .service-option-card:hover, .service-page .doc-card:hover, .service-page .pricing-card:hover, .service-page .process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(11,36,71,.15);
}
.service-page .service-option-card, .service-page .doc-card { position: relative; overflow: hidden; }
.service-page .service-option-card::after, .service-page .doc-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.service-page .service-option-card:hover::after, .service-page .doc-card:hover::after { transform: scaleX(1); }
.service-page .process-card { background: var(--white); transition: transform .2s ease, box-shadow .2s ease; }
.service-page .pricing-card.featured { box-shadow: 0 22px 44px rgba(242,129,47,.22); }
.service-page .card-plain { border-top: 4px solid var(--orange); }
.service-page .faq-item { box-shadow: 0 6px 18px rgba(11,36,71,.05); }
.service-page .float-actions { z-index: 490; }

@media (max-width: 760px) {
  .nav-inner { min-height: 64px; gap: 12px; }
  .nav-links { gap: 14px; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-link { font-size: .8rem; }
  .hamburger { display: inline-flex; }
  .nav .brand { font-size: 1.25rem; }
  .page-hero { padding: 58px 0 54px; }
}

/* Phone-first refinements: keep forms, service content and fixed controls
   comfortably inside narrow 320–480px viewports. */
@media (max-width: 600px) {
  html { overflow-x: hidden; }
  .container { width: min(var(--container), calc(100% - 28px)); }
  .header-inner { gap: 10px; padding: 12px 0; }
  .brand { font-size: 1.3rem; }
  .brand small { font-size: .55rem; }
  .header-actions { gap: 8px; }
  .header-cta { display: none; }
  .icon-button { width: 42px; height: 42px; }

  .hero { padding: 28px 0 40px; }
  .hero-grid { gap: 20px; }
  .hero-panel { min-height: 390px; }
  .hero-panel-content { padding: 26px 20px 30px; }
  .hero-panel-content h1 { font-size: clamp(1.9rem, 9vw, 2.45rem); }
  .hero-panel-content p { font-size: .92rem; }
  .hero-panel-content .hero-actions,
  .page-hero .hero-actions { gap: 10px; }
  .hero-panel-content .hero-actions .btn,
  .page-hero .hero-actions .btn { flex: 1 1 100%; }
  .contact-card { padding: 24px 20px; gap: 14px; border-radius: 18px; }

  .section { padding: 48px 0; }
  .section-tight { padding: 40px 0; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2, .section-title { font-size: clamp(1.7rem, 8vw, 2.1rem); }
  .eyebrow { font-size: .68rem; letter-spacing: .08em; }
  .card-plain { padding: 20px; }

  /* These pages use inline two-column desktop grids; collapse them on phones. */
  .service-page .section .container[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .service-page .value-grid[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  .quick-grid { grid-template-columns: 1fr !important; }

  .footer-grid { gap: 30px; padding-bottom: 32px; }
  .site-footer { padding-top: 44px; }
  .footer-legal { flex-wrap: wrap; gap: 8px 16px; }
  .footer-map { height: 180px; }

  .float-actions { right: 14px; bottom: 14px; gap: 8px; }
  .float-btn { padding: 12px 14px; font-size: .78rem; }
  .back-to-top { right: 14px; bottom: 14px; }
  .toast-region { top: 12px; right: 14px; left: 14px; }
  .toast { max-width: none; }
}

@media (max-width: 380px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .brand small { display: none; }
  .hero-panel { min-height: 370px; }
  .float-btn { padding: 11px 12px; }
}
