.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.6);
}

/* Top contact bar */
.topbar {
  background: #060607;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}

.site-header.scrolled .topbar {
  display: none;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}

.topbar-items {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-items a,
.topbar-items span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-items svg,
.topbar-phone svg {
  color: var(--red);
  font-size: 0.78rem;
}

.topbar-items a:hover {
  color: var(--text);
}

.topbar-sep {
  color: var(--muted-2);
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.5px;
}

.topbar-phone:hover {
  color: var(--red);
}

/* Main nav — solid bar so logo reads on black, not over hero */
.navbar {
  height: 80px;
  display: flex;
  align-items: center;
  background: #060607;
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 72px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 110;
}

@media (max-width: 980px) {
  .nav-cta {
    display: none;
  }
  .nav-links {
    gap: 22px;
  }
}

@media (max-width: 860px) {
  .navbar {
    height: 72px;
  }

  .brand-logo {
    height: 52px;
  }

  .topbar-items {
    display: none;
  }
  .topbar-inner {
    justify-content: center;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    background: rgba(8, 8, 9, 0.98);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-links {
    flex-direction: column;
    gap: 28px;
  }
  .nav-link {
    font-size: 1.4rem;
  }
  .nav-cta {
    display: inline-flex;
  }
}
.footer {
  background: #060607;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

/* CTA band */
.footer-cta {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.container.footer-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 720px;
  padding-top: 56px;
  padding-bottom: 96px;
}

.footer-cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-top: 4px;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.footer-cta-title .accent {
  color: var(--red);
}

.footer-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  padding-bottom: 4px;
}

.footer-cta .btn {
  box-shadow: none !important;
  transform: none !important;
  filter: none;
}

.footer-cta .btn:hover {
  box-shadow: none !important;
  transform: none !important;
}

/* Main grid */
.container.footer-main {
  position: relative;
  z-index: 1;
  background: #060607;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-top: 80px;
  padding-bottom: 64px;
}

.footer-brand-col .brand {
  display: inline-flex;
  margin-bottom: 18px;
}

.brand-logo--footer {
  height: 54px;
  max-width: 220px;
}

.footer-about {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--chrome);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.93rem;
  transition: color 0.2s ease, gap 0.2s ease;
}

.footer-col ul li a svg {
  font-size: 0.65rem;
  color: var(--red);
  transition: transform 0.2s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  gap: 13px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 0.93rem;
}

.footer-contact li svg {
  color: var(--red);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact li a:hover {
  color: #fff;
}

.footer-hours {
  margin-top: 22px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-hours-row span:last-child {
  color: var(--text);
  font-weight: 500;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  font-size: 0.85rem;
  color: var(--muted-2);
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 900px) {
  .container.footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
}

@media (max-width: 540px) {
  .container.footer-main {
    grid-template-columns: 1fr;
  }
  .footer-cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .footer-cta-actions .btn {
    width: 100%;
  }
}
.grev-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.grev-heading {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 48px;
}

.grev-live {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
}

/* Summary panel (left) */
.grev-summary {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid var(--border);
}

.grev-summary-label {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 12px;
}

.grev-summary-count {
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.grev-summary-count strong {
  color: #fff;
}

.grev-google-logo {
  width: 74px;
  height: 24px;
  margin: 0 auto;
  display: block;
}

.grev-disclaimer {
  margin-top: 28px;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--muted-2);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Stars */
.grev-stars {
  display: inline-flex;
  gap: 3px;
  color: #f5b50a;
}

.grev-stars--sm {
  font-size: 0.82rem;
}

.grev-stars .empty {
  color: #3f3f46;
}

.grev-stars .half {
  color: #f5b50a;
  opacity: 0.55;
}

/* Carousel */
.grev-carousel-wrap {
  position: relative;
  min-width: 0;
}

.grev-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 12px;
  scrollbar-width: none;
}

.grev-track::-webkit-scrollbar {
  display: none;
}

.grev-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(10, 10, 11, 0.92);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.grev-nav:hover:not(:disabled) {
  background: var(--red);
  border-color: var(--red);
}

.grev-nav:disabled {
  opacity: 0.25;
  cursor: default;
}

.grev-nav.prev {
  left: -12px;
}

.grev-nav.next {
  right: -12px;
}

/* Review card */
.grev-card {
  flex: 0 0 min(320px, 82vw);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.grev-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.grev-card-user {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.grev-avatar,
.grev-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.grev-avatar {
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.grev-avatar-img {
  -o-object-fit: cover;
     object-fit: cover;
}

.grev-card-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.grev-card-time {
  font-size: 0.78rem;
  color: var(--muted-2);
  margin-top: 2px;
}

.grev-card-g {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  font-family: Arial, sans-serif;
}

.grev-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.grev-verified {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4285f4;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}

.grev-card-text {
  color: #e4e4e7;
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
}

.grev-read-more {
  margin-top: 10px;
  background: none;
  border: none;
  padding: 0;
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  text-align: left;
}

.grev-read-more:hover {
  color: #fff;
}

.grev-loading {
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
}

.grev-trustindex {
  min-height: 200px;
}

.grev-setup-hint {
  margin-top: 28px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted-2);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.grev-setup-hint a {
  color: var(--red);
}

.grev-setup-hint code {
  color: var(--muted);
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .grev-live {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .grev-summary {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 28px;
  }
  .grev-nav.prev {
    left: 4px;
  }
  .grev-nav.next {
    right: 4px;
  }
}
.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.floating-call-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(145deg, #22c55e, #16a34a);
  color: #fff;
  cursor: pointer;
  box-shadow:
    0 10px 28px rgba(34, 197, 94, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.floating-call-toggle:hover {
  transform: scale(1.05);
  box-shadow:
    0 14px 34px rgba(34, 197, 94, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.floating-call-toggle.is-open {
  transform: rotate(0deg);
}

.floating-call-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  opacity: 0.45;
  animation: floating-call-ping 2.4s ease-out infinite;
  pointer-events: none;
}

.floating-call-pulse--delay {
  animation-delay: 1.2s;
}

.floating-call-toggle.is-open .floating-call-pulse {
  animation: none;
  opacity: 0;
}

.floating-call-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.floating-call-panel {
  width: min(300px, calc(100vw - 44px));
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom right;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  pointer-events: none;
}

.floating-call-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-call-panel-title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.floating-call-panel-sub {
  margin: 0 0 14px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
}

.floating-call-action {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-call-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.35);
}

.floating-call-action span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}

.floating-call-action small {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.85;
}

.floating-call-secondary {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--chrome);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.floating-call-secondary:hover {
  color: var(--text);
}

@keyframes floating-call-ping {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .floating-call {
    right: 16px;
    bottom: 16px;
  }

  .floating-call-toggle {
    width: 54px;
    height: 54px;
  }
}
.certificates-section {
  padding: 64px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.certificates-section--compact {
  padding: 0 0 56px;
  background: var(--bg-2);
  border: none;
}

.services-section + .certificates-section--compact {
  padding-top: 0;
  margin-top: -24px;
}

.certificates-section--compact .section-head {
  margin-bottom: 28px;
}

.certificates-section--compact .cert-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.certificates-section--compact .cert-card {
  padding: 10px;
}

.certificates-section--compact .cert-card-frame {
  min-height: 100px;
  padding: 8px;
}

.certificates-section--compact .cert-card-frame img {
  max-height: 88px;
}

.cert-teaser-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.cert-teaser-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 520px;
}

.cert-group + .cert-group {
  margin-top: 48px;
}

.cert-group-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chrome);
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}

.cert-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  color: inherit;
  font: inherit;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.cert-card:hover {
  transform: translateY(-4px);
  border-color: rgba(181, 40, 50, 0.45);
  box-shadow: 0 16px 36px -20px rgba(0, 0, 0, 0.65);
}

.cert-card--badge {
  cursor: default;
}

.cert-card--badge:hover {
  transform: none;
  box-shadow: none;
}

.cert-card-frame--badge {
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 20px 16px;
}

.cert-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(181, 40, 50, 0.15);
  color: var(--accent);
  font-size: 1.1rem;
}

.cert-badge-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.cert-badge-sub {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.certificates-section--compact .cert-card-frame--badge {
  min-height: 100px;
  padding: 14px 10px;
}

.certificates-section--compact .cert-badge-title {
  font-size: 0.78rem;
}

.certificates-section--compact .cert-badge-sub {
  display: none;
}

.cert-card-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #0d0d0f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.cert-card-frame img {
  display: block;
  width: 100%;
  max-height: 132px;
  -o-object-fit: contain;
     object-fit: contain;
}

.cert-card-meta {
  margin-top: 14px;
  padding: 0 4px;
}

.cert-card-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.cert-card-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Lightbox */
.cert-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 4, 5, 0.92);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.cert-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--surface);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.cert-lightbox-close:hover {
  border-color: var(--red);
  color: var(--red);
}

.cert-lightbox-panel {
  width: min(920px, 100%);
  max-height: calc(100vh - 80px);
  overflow: auto;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cert-lightbox-panel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  background: #0d0d0f;
}

.cert-lightbox-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  text-align: center;
}

.cert-lightbox-caption strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
}

.cert-lightbox-caption span {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .certificates-section--compact .cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .certificates-section {
    padding: 48px 0;
  }

  .certificates-section--compact .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .cert-card {
    padding: 10px;
  }

  .cert-card-frame {
    min-height: 120px;
    padding: 8px;
  }

  .cert-card-frame img {
    max-height: 104px;
  }

  .cert-card-title {
    font-size: 0.82rem;
  }
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 29, 42, 0.5);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.8);
}

.service-card-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 11, 0.65));
}

.service-card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.service-card-title {
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  color: #fff;
}

.service-card-text {
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.service-card .link-more {
  margin-top: 6px;
}
/* ============================== HERO ================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-photo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 105%;
  height: 105%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 82% center;
     object-position: 82% center;
  transform: translate3d(-50%, -50%, 0) scale(1);
  animation: heroKenBurns 28s ease-in-out infinite alternate;
  backface-visibility: hidden;
  z-index: 0;
}

@keyframes heroKenBurns {
  from { transform: translate3d(-50%, -50%, 0) scale(1); }
  to { transform: translate3d(-50%, -50%, 0) scale(1.03); }
}

/* Floating gradient orbs */
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  z-index: 1;
}

.hero-bg-orb--1 {
  width: min(58vw, 680px);
  height: min(58vw, 680px);
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(181, 40, 50, 0.22) 0%, transparent 68%);
  filter: blur(22px);
  animation: heroOrb1 24s ease-in-out infinite;
}

.hero-bg-orb--2 {
  width: min(48vw, 520px);
  height: min(48vw, 520px);
  bottom: 0;
  right: 12%;
  left: auto;
  background: radial-gradient(circle, rgba(181, 40, 50, 0.1) 0%, transparent 70%);
  filter: blur(18px);
  animation: heroOrb2 30s ease-in-out infinite;
}

.hero-bg-orb--3 {
  width: min(36vw, 400px);
  height: min(36vw, 400px);
  top: 38%;
  right: -4%;
  left: auto;
  background: radial-gradient(circle, rgba(100, 120, 155, 0.14) 0%, transparent 72%);
  filter: blur(32px);
  animation: heroOrb3 20s ease-in-out infinite;
}

/* Blueprint-style grid */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(105deg, black 25%, transparent 80%);
  -webkit-mask-image: linear-gradient(105deg, black 25%, transparent 80%);
  opacity: 0.18;
  z-index: 1;
}

/* Slow diagonal panel lines */
.hero-bg-lines {
  position: absolute;
  inset: -20% -10%;
  background: repeating-linear-gradient(
    -14deg,
    transparent,
    transparent 100px,
    rgba(181, 40, 50, 0.035) 100px,
    rgba(181, 40, 50, 0.035) 101px
  );
  animation: heroLinesDrift 45s linear infinite;
  mask-image: linear-gradient(105deg, black 20%, transparent 85%);
  -webkit-mask-image: linear-gradient(105deg, black 20%, transparent 85%);
  z-index: 1;
  opacity: 0.35;
}

/* Paint-booth light sweep */
.hero-bg-sweep {
  position: absolute;
  inset: -60% -40%;
  background: linear-gradient(
    100deg,
    transparent 42%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 58%
  );
  animation: heroSweep 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes heroOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(-5%, 7%) scale(1.06); }
  70% { transform: translate(4%, -5%) scale(0.96); }
}

@keyframes heroOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35% { transform: translate(6%, -4%) scale(1.04); }
  65% { transform: translate(-4%, 5%) scale(0.97); }
}

@keyframes heroOrb3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8%, 6%); }
}

@keyframes heroLinesDrift {
  from { background-position: 0 0; }
  to { background-position: 200px 0; }
}

@keyframes heroSweep {
  0%, 100% { transform: translateX(-35%) skewX(-8deg); opacity: 0; }
  12% { opacity: 1; }
  50% { transform: translateX(35%) skewX(-8deg); opacity: 0.85; }
  88% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(10, 10, 11, 0.97) 0%,
      rgba(10, 10, 11, 0.94) 32%,
      rgba(10, 10, 11, 0.72) 48%,
      rgba(10, 10, 11, 0.28) 68%,
      rgba(10, 10, 11, 0.08) 100%
    ),
    linear-gradient(0deg, rgba(10, 10, 11, 0.55), transparent 50%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-photo,
  .cta-banner-photo {
    animation: none;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: none;
  }
  .hero-bg-orb,
  .hero-bg-lines,
  .hero-bg-sweep {
    animation: none;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 132px;
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 26px;
}

.hero-badge svg {
  color: var(--red);
}

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  line-height: 1.02;
  color: #fff;
  text-transform: none;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

.hero-accent {
  display: block;
  margin-top: 8px;
  color: var(--red);
  font-weight: 600;
}

.hero-sub {
  margin-top: 26px;
  max-width: 560px;
  color: #e4e4e7;
  font-size: 1.12rem;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-stars {
  display: inline-flex;
  gap: 3px;
  color: #f5b50a;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}

.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  margin: 8px auto 0;
  background: linear-gradient(var(--red), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================ STATS ================================= */
.stats-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 44px 24px;
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--red);
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* ============================ ABOUT ================================= */
.about--compact .about-grid {
  gap: 40px;
  align-items: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about--compact .section-title {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
}

.about--compact .section-sub {
  margin-top: 14px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.about--compact .about-media img {
  aspect-ratio: 5 / 4;
}

.about--compact .about-badge {
  right: -12px;
  bottom: 20px;
  padding: 14px 18px;
  max-width: 150px;
}

.about--compact .about-badge-num {
  font-size: 1.75rem;
}

.about--compact .about-badge-text {
  font-size: 0.72rem;
  margin-top: 4px;
}

.about--compact .value-grid {
  gap: 16px;
  margin: 22px 0 26px;
}

.about--compact .value-title {
  font-size: 0.92rem;
}

.about--compact .value-text {
  font-size: 0.82rem;
  line-height: 1.45;
}

.about--compact .value-icon {
  font-size: 1rem;
  margin-top: 2px;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--border);
}

.about-badge {
  position: absolute;
  right: -18px;
  bottom: 32px;
  background: var(--red);
  color: #fff;
  padding: 20px 26px;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 40px -16px var(--red-glow);
  display: flex;
  flex-direction: column;
  max-width: 180px;
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 34px 0;
}

.value-item {
  display: flex;
  gap: 12px;
}

.value-icon {
  color: var(--red);
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.value-title {
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 4px;
}

.value-text {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ============================ SERVICES ============================== */
.services-section {
  background: var(--bg-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================ WHY US =============================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.why-head .btn {
  margin-top: 26px;
}

.why-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(181, 40, 50, 0.4);
}

.why-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(181, 40, 50, 0.1);
  color: var(--red);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.why-title {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}

.why-text {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ============================ PROCESS ============================== */
.process-section {
  background: var(--bg-2);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  position: relative;
  padding: 36px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.process-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: rgba(181, 40, 50, 0.22);
  line-height: 1;
}

.process-title {
  font-size: 1.15rem;
  color: #fff;
  margin: 14px 0 10px;
}

.process-text {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ============================ CTA BANNER =========================== */
.cta-banner {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-banner-photo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108%;
  height: 108%;
  background-image: var(--cta-img);
  background-size: cover;
  background-position: center;
  transform: translate3d(-50%, -50%, 0) scale(1);
  animation: ctaKenBurns 24s ease-in-out infinite alternate;
  backface-visibility: hidden;
}

@keyframes ctaKenBurns {
  from { transform: translate3d(-50%, -50%, 0) scale(1); }
  to { transform: translate3d(-50%, -50%, 0) scale(1.05); }
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 10, 11, 0.92) 25%, rgba(10, 10, 11, 0.5) 100%),
    linear-gradient(0deg, rgba(181, 40, 50, 0.1), transparent 45%);
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.cta-banner-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
}

.cta-banner-title .accent,
.accent {
  color: var(--red);
}

.cta-banner-sub {
  margin: 18px 0 30px;
  color: #d4d4d8;
  font-size: 1.08rem;
}

.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================ TESTIMONIALS ========================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #f5b50a;
  margin-bottom: 16px;
}

.testimonial-text {
  color: #e4e4e7;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-name {
  font-weight: 600;
  color: #fff;
}

.testimonial-source {
  font-size: 0.8rem;
  color: var(--muted-2);
}

/* ============================ GALLERY PREVIEW ===================== */
.gallery-preview {
  background: var(--bg-2);
}

/* Last section on home: sit flush above footer CTA */
.home .gallery-preview {
  padding-bottom: 48px;
}

.home .gallery-preview .services-cta {
  margin-top: 36px;
}

main:has(.home) + .footer {
  margin-top: 0;
  border-top: none;
}

main:has(.home) + .footer .footer-cta {
  border-top: none;
}

main:has(.home) + .footer .footer-cta-inner {
  padding-top: 40px;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-preview-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-preview-item.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 8, 9, 0.55));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-preview-item:hover .gallery-preview-overlay {
  opacity: 1;
}

/* ============================ RESPONSIVE ========================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-badge {
    right: 16px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================= LOCAL SERVICE AREA ====================== */
.local-service-area {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.local-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

.local-area-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.local-area-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chrome);
}

.local-area-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.local-area-card li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--text);
}

.local-area-cta {
  margin-top: 24px;
  text-align: center;
}

.local-area-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.local-area-cta a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .local-area-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .why-items {
    grid-template-columns: 1fr;
  }
  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .hero-actions .btn,
  .cta-banner-actions .btn {
    width: 100%;
  }
}
/* Services list grid (reuses look of home services) */
.page .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.page .services-grid > .reveal {
  display: flex;
}
.page .services-grid > .reveal > .service-card {
  width: 100%;
}

.services-help-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
}

.services-help-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(181, 40, 50, 0.12);
  color: var(--red);
  font-size: 1.35rem;
}

.services-help-body {
  flex: 1;
  min-width: 0;
}

.services-help-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}

.services-help-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.services-help-body a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.services-help-body a:hover {
  color: var(--red);
}

.services-help-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .services-help-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
  }

  .services-help-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ----------------------- Service detail ----------------------- */
.service-detail-hero {
  position: relative;
  padding: 170px 0 70px;
  background-image: var(--svc-img);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.service-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 9, 0.94), rgba(8, 8, 9, 0.55));
}

.service-detail-hero-inner {
  position: relative;
  z-index: 2;
}

.service-detail-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  margin-top: 10px;
}

.service-detail-hero p {
  max-width: 560px;
  margin-top: 14px;
  color: #d4d4d8;
  font-size: 1.05rem;
}

.breadcrumb.left {
  justify-content: flex-start;
  margin-top: 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}

.service-detail-img {
  width: 100%;
  border-radius: var(--radius);
  margin: 30px 0;
  aspect-ratio: 16 / 9;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--border);
}

.service-detail-subhead {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 0.96rem;
}

.feature-list li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  padding: 4px;
  width: 20px;
  height: 20px;
}

/* Aside */
.service-detail-aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.aside-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.aside-card h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 14px;
}

.aside-card > p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.aside-btn {
  width: 100%;
  margin-bottom: 12px;
}

.aside-hours {
  margin-top: 14px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aside-hours div {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

.aside-hours div span:last-child {
  color: var(--text);
}

.aside-services ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.aside-services ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: all 0.2s ease;
}

.aside-services ul li a svg {
  font-size: 0.6rem;
  color: var(--red);
}

.aside-services ul li a:hover {
  background: var(--surface-2);
  color: #fff;
}

.aside-services ul li a.active {
  background: rgba(225, 29, 42, 0.12);
  color: #fff;
}

.related-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .page .services-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .page .services-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
}
.page {
  min-height: 60vh;
}

/* 404 */
.notfound {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.notfound::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 30%, rgba(225, 29, 42, 0.16), transparent 70%);
  pointer-events: none;
}

.notfound-inner {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.notfound-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 11rem);
  font-weight: 700;
  line-height: 1;
  color: var(--red);
  text-shadow: 0 12px 40px var(--red-glow);
}

.notfound h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  margin: 10px 0 16px;
}

.notfound p {
  color: var(--muted);
  margin-bottom: 30px;
}

.notfound-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.about-page-media img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--border);
}

.about-page-text {
  color: var(--muted);
  margin-top: 18px;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.94rem;
}

.about-points li svg {
  color: var(--red);
  flex-shrink: 0;
}

.values-section {
  background: var(--bg-2);
}

.page-about .about-intro {
  padding: 64px 0 48px;
}

.page-about .stats-strip .stats-grid {
  padding: 32px 24px;
}

.page-about .certificates-section .section-head {
  margin-bottom: 40px;
}

.page-about .values-section .section-head {
  margin-bottom: 32px;
}

main:has(.page-about) + .footer {
  margin-top: 0;
}

main:has(.page-about) + .footer .footer-cta-inner {
  padding-top: 48px;
  padding-bottom: 72px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 29, 42, 0.45);
}

.value-card-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 14px;
  background: rgba(225, 29, 42, 0.12);
  color: var(--red);
  font-size: 1.5rem;
}

.value-card h4 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .about-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 560px) {
  .about-points {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-masonry {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 16px;
       column-gap: 16px;
}

.gallery-tile {
  position: relative;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
}

.gallery-tile img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-tile:hover img {
  transform: scale(1.06);
}

.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(8, 8, 9, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-tile-overlay span {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  border: 1px solid #fff;
  padding: 8px 18px;
  border-radius: 999px;
}

.gallery-tile:hover .gallery-tile-overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 5, 6, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 12px 56px;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: min(1000px, 100%);
  flex: 1;
  min-height: 0;
}

.lightbox-img {
  flex: 1;
  min-width: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(82vh, 100%);
  margin: 0 auto;
  display: block;
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
}

.lightbox-close,
.lightbox-nav {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-strong);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--red);
  border-color: var(--red);
}

.lightbox-close {
  position: absolute;
  top: 26px;
  right: 26px;
}

.lightbox-nav.prev,
.lightbox-nav.next {
  position: static;
}

.lightbox-counter {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-family: var(--font-display);
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .gallery-masonry {
    -moz-columns: 2;
         columns: 2;
  }
}

@media (max-width: 560px) {
  .gallery-masonry {
    -moz-columns: 1;
         columns: 1;
  }

  .lightbox {
    padding: 64px 8px 52px;
  }

  .lightbox-frame {
    gap: 6px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .lightbox-counter {
    bottom: 16px;
  }
}
.faq-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 40px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.open {
  border-color: rgba(225, 29, 42, 0.5);
}

.faq-question-heading {
  margin: 0;
  font: inherit;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.faq-question svg {
  color: var(--red);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 320px;
  padding: 0 24px 24px;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.faq-aside {
  position: sticky;
  top: 100px;
}

.faq-card {
  background:
    linear-gradient(140deg, rgba(225, 29, 42, 0.14), transparent 60%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.faq-card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 12px;
}

.faq-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.faq-card-btn {
  width: 100%;
  margin-bottom: 12px;
}

@media (max-width: 860px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-aside {
    position: static;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 32px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  min-height: 72px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-card > div:not(.contact-card-icon) {
  flex: 1;
  min-width: 0;
}

.contact-card:hover {
  border-color: rgba(225, 29, 42, 0.45);
  transform: translateY(-3px);
}

.contact-card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(225, 29, 42, 0.12);
  color: var(--red);
  flex-shrink: 0;
}

.contact-card-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted-2);
}

.contact-card-value {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}

.contact-card--phone .contact-card-value {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* Form */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px;
}

.contact-form h3,
.contact-success h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.field label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}

.field input::-moz-placeholder, .field textarea::-moz-placeholder {
  color: var(--muted-2);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-2);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 29, 42, 0.18);
}

.field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted-2);
  text-align: center;
}

.form-note a {
  color: var(--red);
}

/* Success */
.contact-success {
  text-align: center;
  padding: 30px 10px;
}

.contact-success-icon {
  color: var(--red);
  font-size: 3rem;
  margin-bottom: 18px;
}

.contact-success p {
  color: var(--muted);
  margin-bottom: 24px;
}

/* Map */
.contact-map {
  border-top: 1px solid var(--border);
  line-height: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 420px;
}

.page-contact .contact-section {
  padding: 64px 0 40px;
}

.page-contact .contact-map {
  margin-bottom: 0;
}

main:has(.page-contact) + .footer {
  margin-top: 0;
}

main:has(.page-contact) + .footer .footer-cta-inner {
  padding-top: 48px;
  padding-bottom: 72px;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 540px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 26px;
  }
}
/* ===========================================================================
   Alex Auto Body — Design System
   =========================================================================== */

:root {
  /* Brand */
  --red: #b52832;
  --red-600: #962228;
  --red-glow: rgba(181, 40, 50, 0.28);
  --chrome: #b8bcc6;

  /* Surfaces */
  --bg: #0a0a0b;
  --bg-2: #0f0f11;
  --surface: #141417;
  --surface-2: #1b1b1f;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Text */
  --text: #ececf0;
  --muted: #9ca3af;
  --muted-2: #6b7280;

  /* Type */
  --font-body: "Poppins", system-ui, sans-serif;
  --font-display: "Barlow Semi Condensed", "Poppins", sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;

  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(181, 40, 50, 0.07), transparent 60%),
    var(--bg);
  color: var(--text);
}

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

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

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

p {
  margin: 0;
}

::-moz-selection {
  background: var(--red);
  color: #fff;
}

::selection {
  background: var(--red);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
  background: var(--bg-2);
}
::-webkit-scrollbar-thumb {
  background: #2a2a2f;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

/* ----------------------------- Layout ----------------------------------- */

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

.section {
  padding: 96px 0;
  position: relative;
}

.section--tight {
  padding: 64px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title .accent {
  color: var(--red);
}

.section-sub {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ----------------------------- Buttons ---------------------------------- */

.btn {
  --pad-y: 14px;
  --pad-x: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 20px -12px var(--red-glow);
}

.btn-primary:hover {
  background: var(--red-600);
  box-shadow: 0 10px 28px -10px var(--red-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-strong);
}

.btn-lg {
  --pad-y: 17px;
  --pad-x: 36px;
  font-size: 1rem;
}

/* link with arrow */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.2s ease, color 0.2s ease;
}

.link-more svg {
  transition: transform 0.2s ease;
}

.link-more:hover {
  color: #fff;
}

.link-more:hover svg {
  transform: translateX(4px);
}

/* ----------------------------- Cards ------------------------------------ */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* Generic page hero (sub pages) */
.page-hero {
  position: relative;
  padding: 150px 0 80px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.55), rgba(10, 10, 11, 0.92)),
    var(--bg-2);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 300px at 50% 0%, rgba(181, 40, 50, 0.12), transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  position: relative;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.page-hero p {
  position: relative;
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.breadcrumb {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.breadcrumb a:hover {
  color: var(--red);
}

/* ----------------------- Reveal-on-scroll ------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    scroll-behavior: auto !important;
  }
}

/* ----------------------------- Utilities -------------------------------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
}
