/* ==========================================================================
   Mushtaq Repairing Center — stylesheet
   Palette: navy #0F2942 / #0A1F33, blue accent #1E6FD9 / #4A9EFF,
   surface #F7F9FC, gold trust accent #E8A33D
   Type: Sora (display) + Inter (body)
   ========================================================================== */

:root {
  --navy-900: #10161f;
  --navy-800: #1a2436;
  --navy-700: #263349;
  --blue-600: #0891b2;
  --blue-500: #06b6d4;
  --blue-100: #e2f7fa;
  --gold-500: #f2994a;
  --surface: #faf8f4;
  --surface-alt: #f1ece2;
  --white: #ffffff;
  --ink-600: #565c66;
  --ink-400: #8b8f96;
  --line: #e7e1d5;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 45px -25px rgba(15, 41, 66, 0.35);
  --shadow-card: 0 12px 30px -18px rgba(15, 41, 66, 0.28);
  --container: 1180px;
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy-800);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink-600); max-width: 62ch; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding-left: 1.1em; color: var(--ink-600); }
li { margin-bottom: 0.4em; }

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

.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--white); }
.section--navy { background: linear-gradient(160deg, var(--navy-900), var(--navy-800)); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.75); }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head p { margin-top: 12px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  box-shadow: 0 14px 28px -12px rgba(30, 111, 217, 0.55);
}
.btn-primary:hover { box-shadow: 0 18px 34px -12px rgba(30, 111, 217, 0.65); }
.btn-whatsapp {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--line);
}
.btn-whatsapp:hover { border-color: var(--blue-500); color: var(--blue-600); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: var(--white); }
.btn-block { width: 100%; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* Utility bar (phone number + hours, shown site-wide) -------------------- */
.utility-bar {
  background: var(--navy-900);
  color: rgba(255,255,255,0.85);
}
.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 24px;
  font-size: 0.82rem;
}
.utility-bar a {
  color: var(--white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.utility-bar a:hover { color: var(--blue-500); }
.utility-bar .ub-hours { color: rgba(255,255,255,0.6); }
.utility-bar svg { width: 14px; height: 14px; }
@media (max-width: 640px) {
  .utility-bar .ub-hours { display: none; }
  .utility-bar .container { justify-content: center; }
}

/* Header ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy-900);
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-500), var(--navy-800));
  position: relative;
  flex-shrink: 0;
}
.brand-mark::before, .brand-mark::after {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 2px;
}
.brand-mark::before { width: 18px; height: 4px; top: 14px; left: 11px; transform: rotate(45deg); }
.brand-mark::after { width: 18px; height: 4px; top: 22px; left: 11px; transform: rotate(-45deg); }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; color: var(--ink-400); letter-spacing: 0.02em; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-700);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue-600); }
.main-nav .has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  padding: 10px;
  min-width: 240px;
  display: none;
  grid-template-columns: 1fr;
  gap: 2px;
}
.main-nav .has-dropdown:hover .dropdown,
.main-nav .has-dropdown:focus-within .dropdown { display: grid; }
.dropdown a { padding: 9px 12px; border-radius: 8px; font-size: 0.9rem; }
.dropdown a:hover { background: var(--surface-alt); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 11px 18px; font-size: 0.9rem; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--navy-800);
  position: relative;
  transition: all 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; width: 18px; }
.nav-toggle span::after { position: absolute; top: 6px; width: 18px; }

/* Mobile nav panel */
.mobile-panel {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 10px 24px 20px;
}
.mobile-panel a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  color: var(--navy-800);
}
.mobile-panel .sub-links { padding-left: 14px; }
.mobile-panel .sub-links a { border-bottom: none; padding: 8px 0; color: var(--ink-600); font-weight: 400; font-size: 0.92rem; }
body.nav-open .mobile-panel { display: flex; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: rotate(45deg); top: 0; }
body.nav-open .nav-toggle span::after { transform: rotate(-45deg); top: 0; }

@media (max-width: 960px) {
  .main-nav, .header-cta .btn-whatsapp { display: none; }
  .nav-toggle { display: flex; }
}

/* Hero -------------------------------------------------------------------*/
.hero {
  padding: 64px 0 96px;
  background: radial-gradient(1100px 500px at 85% -10%, var(--blue-100), transparent),
              linear-gradient(180deg, var(--surface), var(--white));
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-700);
  box-shadow: var(--shadow-card);
  margin-bottom: 22px;
}
.hero-eyebrow-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #26b47a; box-shadow: 0 0 0 4px rgba(38,180,122,0.15); }
.hero h1 { max-width: 15ch; }
.hero .lead { font-size: 1.1rem; max-width: 46ch; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--navy-900); }
.hero-stat span { font-size: 0.85rem; color: var(--ink-400); }

/* 3D visual stage --------------------------------------------------------*/
.stage {
  position: relative;
  height: 440px;
  perspective: 1400px;
}
.stage-floor {
  position: absolute;
  inset: 10% 4% 4%;
  background: linear-gradient(135deg, rgba(8,145,178,0.10), rgba(16,22,31,0.05));
  border-radius: 32px;
  transform: rotateX(6deg);
  transform-style: preserve-3d;
}
.ac-unit {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 300px;
  transform: translateX(-50%) rotateY(-16deg) rotateX(4deg);
  transform-style: preserve-3d;
  animation: float-slow 6s ease-in-out infinite;
}
@keyframes float-slow {
  0%, 100% { transform: translateX(-50%) rotateY(-16deg) rotateX(4deg) translateY(0); }
  50% { transform: translateX(-50%) rotateY(-16deg) rotateX(4deg) translateY(-14px); }
}
.ac-body {
  width: 300px; height: 120px;
  background: linear-gradient(155deg, #ffffff, #ece5d8);
  border-radius: 18px;
  box-shadow: 0 30px 50px -18px rgba(16,22,31,0.45), inset 0 -6px 12px rgba(16,22,31,0.08);
  position: relative;
}
.ac-body::before {
  content: "";
  position: absolute;
  top: 14px; left: 14px; right: 14px; bottom: 14px;
  border-radius: 10px;
  background: repeating-linear-gradient(90deg, #ddd3c2 0 6px, #c9bfab 6px 8px);
  transform: translateZ(6px);
}
.ac-vent {
  position: absolute; bottom: -10px; left: 20px; right: 20px; height: 20px;
  background: linear-gradient(180deg, #c9bfab, #b3a68d);
  border-radius: 8px;
  transform: rotateX(70deg) translateZ(4px);
  transform-origin: top;
}
.ac-led {
  position: absolute; top: 16px; right: 24px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #26b47a; box-shadow: 0 0 12px 2px rgba(38,180,122,0.7);
  transform: translateZ(10px);
}
.snow {
  position: absolute; left: 50%; bottom: -60px; transform: translateX(-50%);
  width: 4px; height: 60px;
  background: linear-gradient(180deg, rgba(74,158,255,0.55), transparent);
  filter: blur(1px);
}
.snow::before, .snow::after { content: ""; position: absolute; width: 4px; height: 60px; background: linear-gradient(180deg, rgba(74,158,255,0.35), transparent); }
.snow::before { left: -30px; height: 44px; }
.snow::after { left: 30px; height: 44px; }

.floating-icon {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}
.floating-icon svg { width: 30px; height: 30px; }
.fi-1 { top: 8%; left: 4%; animation: float-a 5s ease-in-out infinite; }
.fi-2 { bottom: 14%; left: 2%; animation: float-b 6.5s ease-in-out infinite; }
.fi-3 { top: 10%; right: 2%; animation: float-a 7s ease-in-out infinite reverse; }
.fi-4 { bottom: 6%; right: 6%; animation: float-b 5.5s ease-in-out infinite; }
@keyframes float-a { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(4deg); } }
@keyframes float-b { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(12px) rotate(-3deg); } }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .stage { height: 320px; order: -1; }
}

/* Illustrated gallery ------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1080px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-card {
  background: linear-gradient(165deg, var(--white), var(--surface-alt));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.gallery-visual {
  height: 170px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(120px 90px at 50% 30%, rgba(8,145,178,0.14), transparent 70%);
  overflow: hidden;
}
.gallery-visual .g-icon {
  width: 88px; height: 88px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, var(--surface-alt));
  box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(8,145,178,0.12);
  display: flex; align-items: center; justify-content: center;
  transform: rotate(-4deg);
}
.gallery-visual .g-icon svg { width: 42px; height: 42px; stroke: var(--blue-600); }
.gallery-visual .g-chip {
  position: absolute;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
}
.gallery-visual .g-chip svg { width: 16px; height: 16px; stroke: var(--gold-500); }
.gallery-visual .g-chip.gc-1 { top: 16px; left: 20px; }
.gallery-visual .g-chip.gc-2 { bottom: 18px; right: 22px; }
.gallery-body { padding: 18px 20px 22px; }
.gallery-body h4 { font-family: var(--font-display); font-size: 1rem; margin: 0 0 6px; color: var(--navy-900); }
.gallery-body p { font-size: 0.86rem; margin: 0; }

/* Stats strip --------------------------------------------------------- */
.stats-strip {
  background: var(--navy-900);
  color: var(--white);
}
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 34px 24px;
}
.stat-item { text-align: center; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--white); }
.stat-item span { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
@media (max-width: 720px) { .stats-strip .container { grid-template-columns: repeat(2, 1fr); } }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover { transform: translateY(-6px) rotateX(2deg); box-shadow: 0 26px 45px -20px rgba(16,22,31,0.35); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-100), var(--white));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(8,145,178,0.15);
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--blue-600); }
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.94rem; flex-grow: 1; }
.service-card .card-link { font-weight: 600; color: var(--blue-600); font-size: 0.92rem; margin-top: 10px; display: inline-block; }
.service-card .card-link:hover { text-decoration: underline; }

/* Why choose -------------------------------------------------------------*/
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 32px; }
@media (max-width: 720px) { .feature-list { grid-template-columns: 1fr; } }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(8,145,178,0.1);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--blue-600); }
.feature-item h4 { margin: 0 0 4px; font-family: var(--font-display); font-size: 1.02rem; color: var(--navy-900); }
.feature-item p { font-size: 0.92rem; margin: 0; }

/* Split section (image/visual + text) ------------------------------------*/
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split.reverse .split-visual { order: 2; }
.split-visual { position: relative; height: 320px; perspective: 1200px; }

/* Problem cards ------------------------------------------------------- */
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1080px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  padding: 20px;
  border-left: 3px solid var(--blue-500);
}
.problem-card h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.98rem; margin-bottom: 6px; color: var(--navy-900); }
.problem-card p { font-size: 0.88rem; margin: 0; }

/* How it works — numbered sequence --------------------------------------*/
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 30px 22px 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  counter-increment: step;
}
.step::before {
  content: counter(step);
  position: absolute;
  top: -16px; left: 22px;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-500), var(--navy-800));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 16px -6px rgba(8,145,178,0.5);
}
.step h4 { font-size: 1rem; margin: 10px 0 6px; }
.step p { font-size: 0.9rem; margin: 0; }

/* Locations -------------------------------------------------------------*/
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; } }
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.location-card h3 { margin-bottom: 10px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.area-tag {
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--navy-700);
}

/* FAQ accordion ---------------------------------------------------------*/
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-question .icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-question .icon::before, .faq-question .icon::after { content: ""; position: absolute; background: var(--blue-600); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-question .icon::before { width: 14px; height: 2px; }
.faq-question .icon::after { width: 2px; height: 14px; transition: transform 0.2s ease; }
.faq-item.open .faq-question .icon::after { transform: translate(-50%,-50%) rotate(90deg) scaleY(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 22px 20px; }
.faq-answer-inner p { margin: 0; font-size: 0.94rem; }

/* Final CTA ---------------------------------------------------------------*/
.final-cta {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: 28px;
  padding: 56px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.final-cta::after {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,158,255,0.25), transparent 70%);
  top: -140px; right: -80px;
}
.final-cta h2 { color: var(--white); margin-bottom: 6px; }
.final-cta p { color: rgba(255,255,255,0.75); margin: 0; }

/* Contact ---------------------------------------------------------------*/
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.contact-card .feature-icon { background: var(--surface-alt); }
.contact-card h4 { margin: 0 0 4px; }
.contact-card p, .contact-card a { margin: 0; font-size: 0.94rem; }
.contact-card a { color: var(--blue-600); font-weight: 600; }

form.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--navy-800); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--surface);
  color: var(--navy-800);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.15);
}
.form-note { font-size: 0.82rem; color: var(--ink-400); margin-top: 10px; }
.form-success { display: none; padding: 14px 16px; border-radius: 10px; background: #e7f8f0; color: #1a7a4c; font-size: 0.9rem; margin-top: 14px; font-weight: 500; }
.form-success.show { display: block; }

/* Map embed */
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); margin-top: 24px; }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

/* Breadcrumbs -------------------------------------------------------------*/
.breadcrumbs { font-size: 0.85rem; color: var(--ink-400); padding: 18px 0 0; }
.breadcrumbs a { color: var(--ink-400); }
.breadcrumbs a:hover { color: var(--blue-600); }
.breadcrumbs span[aria-current] { color: var(--navy-700); }

/* Page hero (inner pages) -------------------------------------------------*/
.page-hero { padding: 40px 0 56px; background: linear-gradient(180deg, var(--surface), var(--white)); }
.page-hero .kicker { color: var(--blue-600); font-weight: 600; font-size: 0.92rem; margin-bottom: 10px; display: block; }
.page-hero p.lead { font-size: 1.05rem; max-width: 60ch; }

/* Table (service coverage) ------------------------------------------------*/
.info-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.info-table th, .info-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.info-table th { color: var(--navy-900); font-family: var(--font-display); }

/* Footer -------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding: 64px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 { color: var(--white); font-family: var(--font-display); font-size: 0.95rem; margin: 0 0 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.footer-grid a:hover { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}

/* Sticky mobile bottom bar -------------------------------------------- */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 70;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 20px -12px rgba(16,22,31,0.25);
}
.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy-700);
}
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar a.primary { color: var(--blue-600); }
@media (max-width: 720px) {
  .mobile-bar { display: grid; }
  body { padding-bottom: 62px; }
}

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

:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 2px; }
.quote-form .btn.btn-primary.btn-block {
  width: fit-content;
  height: 46px;
  padding: 0 24px;
  display: inline-flex;
  font-size: 0.9rem;
}