/* ==========================================================================
   IKAD Mechanical - Main Stylesheet
   ========================================================================== */

/* Skip-to-content link (a11y)
   ========================================================================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #e30613;
  color: #fff;
  padding: .85rem 1.25rem;
  font-weight: 700;
  text-decoration: none;
  z-index: 1000;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
  color: #fff;
}

/* SVG Icon system
   ========================================================================== */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  flex-shrink: 0;
  fill: currentColor;
}
.icon--md { width: 1.15em; height: 1.15em; vertical-align: -0.2em; }
.icon--lg { width: 1.5em; height: 1.5em; }
.icon--xl { width: 2.25em; height: 2.25em; }
.with-icon { display: inline-flex; align-items: center; gap: .45rem; }

/* Reset & Base
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video { max-width: 100%; height: auto; display: block; }
a { color: #e30613; text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; margin: 0 0 .6em; color: #0f172a; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1280px) {
  .container { padding: 0 2rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
}
@media (max-width: 360px) {
  .container { padding: 0 .85rem; }
  body { font-size: 15px; }
  h1 { font-size: clamp(1.7rem, 8vw, 2.25rem); }
  h2 { font-size: clamp(1.35rem, 6vw, 1.85rem); }
}

.section { padding: 4rem 0; }
.section--tight { padding: 2.5rem 0; }
.section--dark { background: #0f172a; color: #f8fafc; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #ffffff; }
.section--gray { background: #f6f7f9; }
.section--red { background: #e30613; color: #fff; }
.section--red h1, .section--red h2, .section--red h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #e30613;
  margin-bottom: .75rem;
}

.section--dark .eyebrow { color: #fca5a5; }

.lead { font-size: 1.125rem; color: #475569; max-width: 680px; }
.section--dark .lead { color: #cbd5e1; }

/* Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.6rem;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn--primary { background: #e30613; color: #fff; }
.btn--primary:hover { background: #b50510; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(227,6,19,.28); }
.btn--secondary { background: #ffffff; color: #0f172a; border-color: #0f172a; }
.btn--secondary:hover { background: #0f172a; color: #fff; }
.btn--outline { background: transparent; color: #fff; border-color: #fff; }
.btn--outline:hover { background: #fff; color: #0f172a; }
.btn--ghost { background: transparent; color: #0f172a; }
.btn--ghost:hover { color: #e30613; }
.btn--large { padding: 1.1rem 2rem; font-size: 1rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Header & Nav
   ========================================================================== */
.topbar {
  background: #0f172a;
  color: #cbd5e1;
  font-size: .85rem;
  padding: .55rem 0;
}
.topbar__inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .5rem; }
.topbar a { color: #cbd5e1; }
.topbar a:hover { color: #fff; text-decoration: none; }
.topbar__contact { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.topbar__contact span { display: inline-flex; align-items: center; gap: .35rem; }
.topbar__contact .icon { width: .9em; height: .9em; opacity: .85; }
@media (max-width: 760px) {
  .topbar { font-size: .78rem; padding: .4rem 0; }
  .topbar__contact { gap: .75rem; }
  .topbar__contact span:nth-child(3) { display: none; } /* hide long address on small */
  .topbar__inner > div:last-child { display: none; }
}
@media (max-width: 480px) {
  .topbar__contact { gap: .5rem; flex: 1; }
  .topbar__contact span:nth-child(2) { display: none; } /* hide email on very narrow */
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
body.nav-open { overflow: hidden; }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; min-width: 0; }
.brand img { width: 46px; height: auto; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1; min-width: 0; }
.brand__name { font-weight: 800; color: #0f172a; font-size: 1.15rem; letter-spacing: .02em; white-space: nowrap; }
.brand__tag { font-size: .68rem; color: #64748b; letter-spacing: .12em; text-transform: uppercase; margin-top: 2px; }
@media (max-width: 480px) {
  .brand img { width: 38px; }
  .brand__name { font-size: 1rem; }
  .brand__tag { display: none; }
}
@media (max-width: 360px) {
  .brand__name { font-size: .9rem; }
}

.primary-nav { display: flex; align-items: center; gap: 1.25rem; }
.primary-nav > ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 1.15rem; }
.primary-nav a {
  color: #0f172a;
  font-weight: 600;
  font-size: .95rem;
  padding: .5rem 0;
  position: relative;
}
.primary-nav a:hover { color: #e30613; text-decoration: none; }
.primary-nav a.active { color: #e30613; }
.primary-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: #e30613;
}

.has-dropdown { position: relative; }
.has-dropdown > a::after { content: " ▾"; font-size: .7em; color: #94a3b8; }
.dropdown {
  list-style: none;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(15,23,42,.12);
  padding: .5rem 0;
  display: none;
  flex-direction: column;
  gap: 0;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown { display: flex; }
.dropdown li { display: block; width: 100%; }
.dropdown a { display: block; padding: .55rem 1rem; font-weight: 500; white-space: nowrap; }
.dropdown a:hover { background: #f6f7f9; color: #e30613; }
.dropdown a.active::after { display: none; }

.nav-toggle { display: none; background: transparent; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #0f172a; margin: 5px 0; transition: all .2s ease; border-radius: 2px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 980px) {
  .primary-nav { display: none; }
  .nav-toggle { display: block; }
  .primary-nav.is-open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4.5rem 1.25rem 1.25rem;
    max-height: 100vh;
    overflow-y: auto;
    z-index: 49;
    -webkit-overflow-scrolling: touch;
  }
  .primary-nav.is-open > ul { flex-direction: column; gap: 0; padding: 0; }
  .primary-nav.is-open li { border-bottom: 1px solid #f1f5f9; }
  .primary-nav.is-open li:last-child { border-bottom: 0; }
  .primary-nav.is-open a { display: block; padding: 1rem .25rem; font-size: 1rem; }
  .primary-nav.is-open .has-dropdown > a {
    position: relative;
  }
  .primary-nav.is-open .has-dropdown > a::after {
    content: "+";
    display: inline-block;
    position: absolute;
    right: .5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 400;
    color: #94a3b8;
    line-height: 1;
    transition: transform .2s ease;
  }
  .primary-nav.is-open .has-dropdown.is-expanded > a::after { content: "−"; }
  .primary-nav.is-open .dropdown {
    position: static;
    display: none;
    flex-direction: column;
    box-shadow: none;
    border: 0;
    padding: 0 0 .75rem 1rem;
    min-width: 0;
    background: transparent;
    margin: 0;
    list-style: none;
  }
  .primary-nav.is-open .has-dropdown.is-expanded .dropdown {
    display: flex;
  }
  .primary-nav.is-open .dropdown a {
    padding: .7rem .25rem;
    font-size: .95rem;
    color: #475569;
    border-bottom: 0;
  }
  .primary-nav.is-open .mobile-extras { display: flex !important; }
  .header-cta { display: none; }
}

/* Extras inside mobile slide-out menu (phone + quote button) */
.mobile-extras { display: none; }
.primary-nav.is-open .mobile-extras {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: 1.25rem 0 .5rem;
  border-top: 2px solid #e5e7eb;
  margin-top: .5rem;
}
.primary-nav.is-open .mobile-extras .btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
}
.primary-nav.is-open .mobile-extras-info {
  text-align: center;
  font-size: .82rem;
  color: #64748b;
  margin-top: .35rem;
}

/* Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: #0f172a;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(15,23,42,.88) 0%, rgba(15,23,42,.68) 45%, rgba(15,23,42,.45) 70%, rgba(227,6,19,.4) 100%);
}
/* Stronger left-side overlay on hero with form (form sits over the right side) */
.hero--with-form::before {
  background: linear-gradient(105deg, rgba(15,23,42,.92) 0%, rgba(15,23,42,.78) 40%, rgba(15,23,42,.45) 60%, rgba(15,23,42,.2) 100%);
}
@media (max-width: 920px) {
  .hero--with-form::before {
    background: linear-gradient(180deg, rgba(15,23,42,.85) 0%, rgba(15,23,42,.7) 60%, rgba(15,23,42,.55) 100%);
  }
}
.hero__inner { padding-top: 5rem; padding-bottom: 5rem; max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: 1rem; text-shadow: 0 2px 14px rgba(0,0,0,.35); }
.hero p { font-size: 1.15rem; color: #e2e8f0; max-width: 580px; margin-bottom: 1.75rem; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.hero .eyebrow { text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.hero__badges { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
@media (max-width: 600px) {
  .hero { min-height: 60vh; }
  .hero__inner { padding-top: 3rem; padding-bottom: 3rem; }
  .hero h1 { font-size: clamp(1.7rem, 8vw, 2.5rem); }
  .hero p { font-size: 1rem; }
  .hero__badges { gap: .5rem; }
  .hero__badge { font-size: .72rem; padding: .35rem .65rem; }
  .hero .btn { font-size: .85rem; padding: .8rem 1.25rem; }
  .hero .btn--large { padding: .9rem 1.25rem; font-size: .9rem; }
}

/* Hero with side-by-side quote form */
.hero--with-form .hero__inner { max-width: none; padding-top: 4rem; padding-bottom: 4rem; }
.hero--with-form .container {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 920px) {
  .hero--with-form .container { grid-template-columns: 1fr; gap: 2rem; }
}
.hero-quote {
  background: rgba(255,255,255,.98);
  color: #0f172a;
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  border-top: 4px solid #e30613;
}
.hero-quote h2 { margin: 0 0 .35rem; font-size: 1.35rem; color: #0f172a; text-shadow: none; }
/* Override the .hero p inherited light color + text-shadow inside the form */
.hero-quote p { color: #1f2937; text-shadow: none; max-width: none; }
.hero-quote__sub { margin: 0 0 1rem; color: #475569; font-size: .92rem; text-shadow: none; }
@media (max-width: 480px) {
  .hero-quote { padding: 1.1rem 1.1rem 1rem; }
  .hero-quote h2 { font-size: 1.15rem; }
  .hero-quote .form__row { grid-template-columns: 1fr; gap: 0; }
}
.hero-quote .form__group { margin-bottom: .65rem; }
.hero-quote .form__row { gap: .65rem; }
.hero-quote input, .hero-quote select, .hero-quote textarea {
  padding: .65rem .75rem; font-size: .92rem;
}
.hero-quote textarea { min-height: 70px; }
.hero-quote .btn { width: 100%; justify-content: center; }
.hero-quote__trust {
  display: flex; align-items: center; justify-content: center; gap: .35rem;
  font-size: .82rem; color: #334155; margin-top: .75rem; text-shadow: none;
  font-weight: 500;
}
.hero-quote__trust strong { color: #f59e0b; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  padding: .45rem .85rem;
  border-radius: 999px;
  font-size: .82rem;
  color: #fff;
}

.hero--compact { min-height: 42vh; }
.hero--compact .hero__inner { padding-top: 3rem; padding-bottom: 3rem; }

/* Trust strip
   ========================================================================== */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem 0;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: .35rem; }
.trust-item__big { font-size: 1.85rem; font-weight: 800; color: #e30613; line-height: 1; }
.trust-item__label { font-size: .85rem; color: #475569; }

/* Services grid
   ========================================================================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.svc-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none !important;
  color: inherit;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(15,23,42,.10); border-color: #e30613; }
.svc-card__img {
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
  width: 100%;
  object-fit: cover;
}
.svc-card__body { padding: 1.25rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.svc-card__title { margin: 0 0 .5rem; font-size: 1.2rem; }
.svc-card__desc { color: #475569; font-size: .95rem; margin-bottom: 1rem; flex: 1; }
.svc-card__link {
  color: #e30613;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.svc-card__link::after { content: " →"; transition: margin .15s ease; }
.svc-card:hover .svc-card__link::after { margin-left: .15rem; }

/* Before/After Slider
   ========================================================================== */
.ba-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  user-select: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15,23,42,.18);
  aspect-ratio: 4/3;
  background: #000;
  touch-action: none;
  cursor: ew-resize;
  outline: none;
}
.ba-slider:focus-visible { box-shadow: 0 0 0 3px rgba(227,6,19,.4), 0 20px 40px rgba(15,23,42,.18); }
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}
.ba-slider__after {
  clip-path: inset(0 0 0 50%);
  -webkit-clip-path: inset(0 0 0 50%);
  transition: none;
}
.ba-slider:not(.is-dragging) .ba-slider__after { transition: clip-path .12s ease-out; }
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
  transition: left .12s ease-out;
}
.ba-slider.is-dragging .ba-slider__handle { transition: none; }
.ba-slider__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  background: #e30613 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M8 5v4H3l5 5-5 5h5v4l5-5-5-5h13l-5 5 5 5v-4h5l-5-5 5-5h-5V5l-5 5 5 5'/></svg>") no-repeat center / 22px 22px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 14px rgba(0,0,0,.3), 0 0 0 2px rgba(255,255,255,.8);
}
.ba-label {
  position: absolute;
  top: 14px;
  padding: .35rem .75rem;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 4px;
  pointer-events: none;
}
.ba-label--before { left: 14px; }
.ba-label--after { right: 14px; background: rgba(227,6,19,.85); }

/* Why Choose Us
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 1px solid #e5e7eb;
}
.why-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #e30613;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.why-card h3 { margin: 0 0 .5rem; }
.why-card p { color: #475569; margin: 0; }

/* Process steps
   ========================================================================== */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}
.process__step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  position: relative;
}
.process__step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: #e30613;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  margin-bottom: .75rem;
}
.process__step h4 { color: #fff; margin: 0 0 .35rem; }
.process__step p { color: #cbd5e1; margin: 0; font-size: .92rem; }

/* Project gallery
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .75rem;
}
.gallery img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  border-radius: 6px;
  transition: transform .25s ease;
}
.gallery a:hover img { transform: scale(1.02); }

/* Two-column feature
   ========================================================================== */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.feature--reverse { direction: rtl; }
.feature--reverse > * { direction: ltr; }
.feature__media img { border-radius: 10px; width: 100%; box-shadow: 0 12px 30px rgba(15,23,42,.10); }
.feature h2 { margin-top: 0; }
.feature ul { padding-left: 1.1rem; margin: 1rem 0; }
.feature ul li { margin-bottom: .35rem; }

@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; gap: 2rem; }
  .feature--reverse { direction: ltr; }
}

/* CTA banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #e30613 0%, #a00410 100%);
  color: #fff;
  border-radius: 12px;
  padding: 2.75rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.cta-banner h2 { color: #fff; margin: 0 0 .35rem; }
.cta-banner p { margin: 0; opacity: .92; }
@media (max-width: 720px) {
  .cta-banner { grid-template-columns: 1fr; text-align: center; padding: 2rem 1.25rem; }
}

/* Service detail page
   ========================================================================== */
.svc-detail { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; }
.svc-detail__main h2 { margin-top: 2rem; }
.svc-detail__main ul { margin: .75rem 0 1.25rem 1.25rem; }
.svc-detail__sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
  background: #f6f7f9;
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
}
.svc-detail__sidebar h3 { margin-top: 0; }
.svc-detail__sidebar .btn { width: 100%; justify-content: center; }
.svc-detail__sidebar .btn + .btn { margin-top: .5rem; }
.svc-detail__sidebar ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.svc-detail__sidebar ul li { padding: .55rem 0; border-bottom: 1px solid #e5e7eb; font-size: .92rem; }
.svc-detail__sidebar ul li:last-child { border-bottom: 0; }
.svc-detail__sidebar ul li::before { content: "✓"; color: #e30613; font-weight: 800; margin-right: .5rem; }
@media (max-width: 900px) {
  .svc-detail { grid-template-columns: 1fr; }
  .svc-detail__sidebar { position: static; }
}

/* Breadcrumbs
   ========================================================================== */
.breadcrumbs {
  font-size: .82rem;
  color: #64748b;
  padding: 1rem 0 0;
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; padding: 0; margin: 0; gap: .35rem; }
.breadcrumbs li + li::before { content: "/"; color: #cbd5e1; margin-right: .35rem; }
.breadcrumbs a { color: #475569; }
.breadcrumbs [aria-current="page"] { color: #0f172a; font-weight: 600; }

/* FAQ
   ========================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
}
.faq details[open] { border-color: #e30613; }
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0f172a;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::after {
  content: "+";
  color: #e30613;
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq summary::-webkit-details-marker { display: none; }
.faq details > *:not(summary) { margin-top: .75rem; color: #475569; }

/* Testimonials
   ========================================================================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
}
.testimonial__stars { color: #f59e0b; font-size: 1rem; margin-bottom: .65rem; letter-spacing: .12em; }
.testimonial__quote { color: #1f2937; font-size: .98rem; margin-bottom: 1rem; }
.testimonial__author { display: flex; align-items: center; gap: .65rem; font-size: .9rem; }
.testimonial__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.testimonial__name { font-weight: 700; color: #0f172a; }
.testimonial__meta { color: #64748b; font-size: .8rem; }

/* Contact form
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { background: #f6f7f9; border-radius: 10px; padding: 1.75rem; }
.contact-info h3 { margin-top: 0; }
.contact-info ul { list-style: none; padding: 0; margin: 0; }
.contact-info li { padding: .65rem 0; border-bottom: 1px solid #e5e7eb; display: flex; gap: .75rem; align-items: flex-start; }
.contact-info li:last-child { border-bottom: 0; }
.contact-info li .icon { color: #e30613; margin-top: .2rem; width: 1.15rem; height: 1.15rem; }
.contact-info li > div { flex: 1; }
.contact-info strong { display: block; color: #0f172a; margin-bottom: .15rem; font-size: .9rem; }

.form { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 1.75rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__group { margin-bottom: 1rem; }
.form__group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .35rem; color: #0f172a; }
.form__group input, .form__group select, .form__group textarea {
  width: 100%;
  padding: .75rem .85rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form__group textarea { min-height: 120px; resize: vertical; }
.form__group input:focus, .form__group select:focus, .form__group textarea:focus {
  outline: none;
  border-color: #e30613;
  box-shadow: 0 0 0 3px rgba(227,6,19,.15);
}
.form__hint { font-size: .8rem; color: #64748b; margin-top: .25rem; }
.form__submit { width: 100%; justify-content: center; }
.form__status {
  margin-top: 1rem;
  padding: .85rem 1rem;
  border-radius: 6px;
  font-size: .92rem;
  font-weight: 600;
}
.form__status--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.form__status--success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.form__honeypot {
  position: absolute;
  left: -10000px;
  top: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* Map embed
   ========================================================================== */
.map-embed { aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; border: 1px solid #e5e7eb; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Sticky mobile CTA dock - phone + contact + quote
   ========================================================================== */
.mobile-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  z-index: 40;
  box-shadow: 0 -6px 16px rgba(0,0,0,.18);
  padding: .35rem .35rem calc(.35rem + env(safe-area-inset-bottom));
  gap: .35rem;
  border-top: 2px solid #e30613;
}
.mobile-dock a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  padding: .55rem .25rem;
  color: #fff;
  text-decoration: none !important;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background .15s ease;
}
.mobile-dock a .icon { width: 1.25rem; height: 1.25rem; }
.mobile-dock a:hover { background: rgba(255,255,255,.08); color: #fff; }
.mobile-dock a.is-primary { background: #e30613; }
.mobile-dock a.is-primary:hover { background: #b50510; }
@media (max-width: 768px) {
  .mobile-dock { display: flex; }
  body { padding-bottom: 72px; }
  body.nav-open .mobile-dock { display: none; }
}
@media (max-width: 380px) {
  .mobile-dock a { font-size: .65rem; padding: .45rem .15rem; }
  .mobile-dock a .icon { width: 1.1rem; height: 1.1rem; }
  body { padding-bottom: 64px; }
}

/* Legacy single-call bar - keep so older pages don't break */
.mobile-call { display: none; }

/* Answer / Key Facts box (AEO)
   ========================================================================== */
.answer-box {
  background: linear-gradient(135deg, #fef3f2 0%, #fff 50%);
  border: 1px solid #fecaca;
  border-left: 4px solid #e30613;
  border-radius: 8px;
  padding: 1.5rem 1.5rem 1.25rem;
  margin: 0 0 2rem;
}
.answer-box__label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #e30613;
  margin-bottom: .5rem;
}
.answer-box h2, .answer-box h3 { margin: 0 0 .5rem; font-size: 1.15rem; }
.answer-box p { margin: 0 0 .5rem; color: #1f2937; }
.answer-box p:last-child { margin-bottom: 0; }
.answer-box ul { margin: .5rem 0 0; padding-left: 1.1rem; }
.answer-box ul li { margin-bottom: .25rem; color: #1f2937; }

/* Cost table
   ========================================================================== */
.cost-table-wrap { overflow-x: auto; margin: 1.25rem 0 1.5rem; }
table.cost-table, .svc-detail__main table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
}
.cost-table th, .svc-detail__main table th {
  background: #0f172a;
  color: #fff;
  text-align: left;
  padding: .7rem .85rem;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cost-table td, .svc-detail__main table td {
  padding: .65rem .85rem;
  border-top: 1px solid #e5e7eb;
  vertical-align: top;
}
.cost-table tr:nth-child(even) td, .svc-detail__main table tr:nth-child(even) td {
  background: #fafafa;
}

/* Pill badges (e.g. brand, certification)
   ========================================================================== */
.pills { display: flex; flex-wrap: wrap; gap: .4rem; margin: .65rem 0 1.25rem; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: #f6f7f9;
  border: 1px solid #e5e7eb;
  color: #1f2937;
  padding: .35rem .7rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
}
.pill .icon { color: #e30613; }

/* Footer
   ========================================================================== */
.site-footer {
  background: #0a0f1c;
  color: #cbd5e1;
  padding: 3.5rem 0 1.25rem;
  font-size: .92rem;
}
.site-footer h4 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem; }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { padding: .25rem 0; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { color: #94a3b8; margin: 1rem 0 1.25rem; }
.social { display: flex; gap: .65rem; }
.social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  color: #fff;
  transition: background .15s ease;
}
.social a:hover { background: #e30613; }
.social .icon { width: 1.1rem; height: 1.1rem; }
.legal { padding-top: 1.25rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; font-size: .82rem; color: #94a3b8; }

/* Service areas list
   ========================================================================== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.area-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit;
  transition: border-color .15s ease, transform .15s ease;
}
.area-card:hover { border-color: #e30613; transform: translateY(-2px); }
.area-card__city { font-weight: 700; color: #0f172a; font-size: 1.1rem; margin-bottom: .15rem; }
.area-card__sub { color: #64748b; font-size: .85rem; }

/* Utility
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
