* { box-sizing: border-box; }

:root {
  --panel: rgba(20,25,31,.78);
  --panel-strong: rgba(24,29,35,.88);
  --text: #f3f5f7;
  --muted: #c7d0d8;
  --accent: #e8891c;
  --accent-2: #ffd57f;
  --accent-deep: #c96f0a;
  --danger: #c81f1f;
  --shadow: 0 24px 60px rgba(0,0,0,.35);
  --shadow-soft: 0 14px 30px rgba(0,0,0,.22);
  --radius: 24px;
  --max: 1180px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,140,0,.09), transparent 24%),
    linear-gradient(135deg, #171c22 0%, #0e1217 38%, #07090d 100%);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,11,15,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 16px 0;
}

.brand-logo-small {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}

.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }

.brand-mark {
  display: inline-grid; place-items: center;
  width: 62px; height: 62px; border-radius: 20px;
  background: linear-gradient(180deg, rgba(30,36,44,.92), rgba(16,20,26,.88));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-soft); flex: 0 0 auto;
}

.brand-mark svg, .brand-mark img { width: 54px; height: 54px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-text strong { color: #fff; font-size: 1.08rem; letter-spacing: -.02em; }
.brand-text small { color: #c7d0d8; margin-top: 3px; font-size: .84rem; }

.nav-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nav-links a { color: #c6d0d8; font-weight: 700; font-size: .95rem; }
.nav-links a:hover { color: #fff; }

.call-pill {
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #18222d !important;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

.hero-section { position: relative; overflow: hidden; padding: 44px 0 28px; }

.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;

  background-image:
    linear-gradient(rgba(0,0,0,.10), rgba(0,0,0,.10)),
    url("/new-wrenches.png");

  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;

  opacity: .75;
}

.hero-pattern > svg { display: none; }


.hero-grid, .fleet-hero-grid, .two-col-grid, .contact-grid, .fleet-teaser {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 28px;
  align-items: stretch; position: relative; z-index: 1;
}

.hero-copy { padding: 24px 0 12px; }
.fleet-copy { padding-right: 10px; }
.fleet-hero-panel { padding: 26px; }

.eyebrow, .section-kicker, .info-label {
  display: inline-flex; align-items: center; gap: 8px; font-size: .82rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
}

.eyebrow, .section-kicker {
  color: #ffb24a; background: rgba(255,153,40,.12);
  border: 1px solid rgba(255,153,40,.22); border-radius: 999px; padding: 8px 12px;
}

.eyebrow {
  display: flex; justify-content: center; text-align: center;
  max-width: 640px; margin: 0 auto 14px auto; line-height: 1.35;
}

h1, h2, h3 { margin: 0 0 14px; line-height: 1.08; letter-spacing: -.03em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.7rem); margin-top: 16px; max-width: 12ch; }
h2 { font-size: clamp(1.85rem, 2.8vw, 2.8rem); }
h3 { font-size: 1.22rem; }

.hero-lead, .section-heading p, .contact-panel p, .form-intro, .why-panel p,
.footer-wrap p, .map-copy p, .review-card p, .metric-card span, .fleet-points span,
.trust-card span, .hero-highlights span, .service-group li, .checkless-list li,
.fleet-list li, .info-label { color: var(--muted); }

.hero-lead { font-size: 1.1rem; max-width: 58ch; margin: 0 0 22px; }

.hero-actions, .form-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 14px 20px; font-weight: 800;
  border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #18222d; box-shadow: var(--shadow-soft);
}

.btn-secondary {
  background: rgba(255,255,255,.08); color: #fff;
  border-color: rgba(255,255,255,.12);
}

.hero-highlights, .visual-metrics, .service-groups, .reviews-grid, .cert-grid, .trust-grid {
  display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px;
}

.hero-highlights { margin-top: 28px; gap: 14px; }

.hero-highlights article, .info-strip-grid > div, .service-group, .contact-item,
.dont-do-panel, .why-panel, .contact-panel, .form-panel, .hero-visual, .review-card,
.map-panel, .map-copy, .metric-card, .cert-card, .trust-card, .fleet-points, .card-panel {
  backdrop-filter: blur(8px); background: var(--panel);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); box-shadow: var(--shadow);
}

.hero-highlights article { border-radius: 18px; padding: 18px; }
.hero-highlights strong { display: block; margin-bottom: 6px; font-size: 1rem; }
.hero-highlights span { font-size: .95rem; }

.hero-visual {
  padding: 20px;
  position: relative;
  overflow: hidden;
  min-height: 100%;

  background:
    radial-gradient(circle at center,
      rgba(255,140,0,.18),
      transparent 60%),
    linear-gradient(
      180deg,
      rgba(24,29,36,.82),
      rgba(13,17,22,.82)
    );

  backdrop-filter: blur(6px);
}

.visual-topline {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  align-items: center; margin-bottom: 14px;
}

.visual-badge, .visual-tag {
  display: inline-flex; align-items: center; border-radius: 999px;
  font-size: .82rem; font-weight: 800; letter-spacing: .06em;
}

.visual-badge {
  padding: 9px 12px; background: rgba(255,196,111,.18);
  color: #ffb24a; text-transform: uppercase;
}

.visual-tag { padding: 8px 12px; color: #d4dde4; background: rgba(255,255,255,.08); }

.logo-stage {
  border-radius: 26px;
  background: radial-gradient(circle at center, rgba(255,140,0,.12), transparent 56%),
              linear-gradient(180deg, #05070a, #000);
  padding: 14px; min-height: 420px; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
  box-shadow: inset 0 0 60px rgba(255,140,0,.10);
}

.hero-logo-image {
  width: 100%; max-width: 560px; height: auto; object-fit: contain;
  animation: logoFloat 5.5s ease-in-out infinite;
}

@keyframes logoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.metric-card, .cert-card, .trust-card {
  background: var(--panel-strong); border-radius: 18px; padding: 18px; box-shadow: var(--shadow-soft);
}

.metric-card strong, .trust-card strong { display: block; margin-bottom: 6px; font-size: .95rem; }

.info-strip { padding: 14px 0 12px; }

.info-strip-grid {
  display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px;
}

.info-strip-grid > div { border-radius: 20px; padding: 18px 20px; }
.info-strip-grid a { display: inline-block; font-weight: 800; font-size: 1.2rem; color: #fff; }
.info-strip-grid p { margin: 0; }

.big-red-number { font-size: clamp(1.7rem, 3vw, 2.5rem) !important; color: var(--danger); line-height: 1.1; }
.actual-phone-number {
  margin-top: 6px;
  text-align: left;
}
.actual-phone-number a {
  font-size: 0.95rem;
  font-weight: 700;
  color: #aeb8c2;
  letter-spacing: 0.15em;
}

.actual-phone-number a:hover {
  color: #ffffff;
}
.fleet-phone-main {
  display: block;
  font-weight: 800;
  font-size: 1.3rem;
  margin-top: 4px;
}

.fleet-phone-actual {
  margin-top: 6px;
}

.fleet-phone-actual a {
  font-size: 0.95rem;
  font-weight: 700;
  color: #aeb8c2;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.fleet-phone-actual a:hover {
  color: #ffffff;
}
.call-panel .info-label { font-size: .9rem; }
.section-block { padding: 48px 0; }
.alt-block { background: linear-gradient(180deg, rgba(255,145,0,.03), rgba(255,255,255,.02)); }
.section-heading { margin-bottom: 22px; }
.section-heading p { margin: 0; max-width: 68ch; }
.left-tight { margin-bottom: 18px; }

.service-group, .cert-card {
  padding: 24px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-group:hover, .cert-card:hover, .trust-card:hover {
  transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,.28); border-color: rgba(232,137,28,.26);
}

.service-group ul, .checkless-list, .fleet-list { margin: 0; padding-left: 20px; }
.service-group li, .checkless-list li, .fleet-list li { margin: 8px 0; }

.fleet-points { padding: 24px; display: grid; gap: 14px; }
.fleet-points div { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.fleet-points div:last-child { border-bottom: none; }
.fleet-points strong { display: block; margin-bottom: 4px; }

.dont-do-panel, .why-panel, .contact-panel, .form-panel, .map-panel, .map-copy, .review-card {
  padding: 24px;
}

.map-panel iframe { width: 100%; min-height: 380px; border: 0; border-radius: 18px; }
.checkless-list li { font-size: 1.04rem; }

.contact-item {
  margin-top: 16px; padding: 16px 18px; border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03);
}

.contact-item strong { display: block; margin-bottom: 6px; }
.contact-item p { margin: 0; }
.contact-item a { font-weight: 800; font-size: 1.1rem; }

.review-card { transition: transform .25s ease, box-shadow .25s ease; }
.review-card:hover { transform: translateY(-5px); }
.review-card strong { display: block; margin-top: 14px; }

.stars { color: var(--accent); letter-spacing: .18em; font-size: 1rem; margin-bottom: 12px; }

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

label { display: block; margin-bottom: 8px; font-weight: 700; }

input, select, textarea {
  width: 100%; border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,14,18,.75); color: #fff;
  border-radius: 16px; padding: 14px 15px; font: inherit; outline: none;
}

textarea { min-height: 150px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #93a1ad; }

input:focus, select:focus, textarea:focus {
  border-color: rgba(232,137,28,.8); box-shadow: 0 0 0 4px rgba(232,137,28,.12);
}

.success-message {
  display: none; padding: 14px 16px; border-radius: 16px;
  background: rgba(182,232,193,.14); border: 1px solid rgba(78,166,97,.28);
  color: #b9f5c4; font-weight: 700;
}

.mobile-call-button { display: none; }

.site-footer {
  padding: 26px 0 12px; border-top: 1px solid rgba(255,255,255,.08); background: rgba(7,10,14,.80);
}

.footer-wrap {
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center;
}

.footer-wrap strong { display: block; margin-bottom: 4px; }
.footer-wrap p { margin: 0; }

.footer-right { display: flex; flex-direction: column; gap: 6px; text-align: right; }
.footer-right a { font-weight: 800; }

.copyright-footer {
  text-align: center; font-size: 11px; color: #8fa0ae; padding: 12px 0 14px;
}

.reveal-card { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal-card.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero-grid, .fleet-hero-grid, .two-col-grid, .contact-grid, .service-groups,
  .info-strip-grid, .hero-highlights, .two-up, .reviews-grid, .visual-metrics,
  .cert-grid, .trust-grid, .fleet-teaser { grid-template-columns: 1fr; }

  .nav-wrap { flex-direction: column; align-items: flex-start; }
  h1 { max-width: none; }
  .footer-right { text-align: left; }
  .logo-stage { min-height: auto; }
}

@media (max-width: 760px) {
  .mobile-call-button {
    display: inline-flex; position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 80;
    align-items: center; justify-content: center; border-radius: 999px; padding: 15px 18px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #18222d; font-weight: 800; box-shadow: 0 14px 30px rgba(0,0,0,.28);
  }
  body { padding-bottom: 72px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 22px), var(--max)); }
  .site-header { position: static; }
  .brand { align-items: flex-start; }
  .nav-links { gap: 12px; }
  .btn, .call-pill { width: 100%; justify-content: center; }
  .hero-section { padding-top: 28px; }
  .hero-copy { text-align: center; }
  .hero-pattern {
    background-position: center center;
    background-size: cover;
    opacity: .55;
  }

  .service-group, .dont-do-panel, .why-panel, .contact-panel, .form-panel,
  .hero-visual, .info-strip-grid > div, .map-panel, .map-copy, .review-card,
  .metric-card, .cert-card, .trust-card, .fleet-points { padding: 20px; }
}
