:root {
  --bg: #0a0d13;
  --bg-alt: #10141c;
  --card: #141922;
  --border: #232a36;
  --silver: #d7dbe2;
  --silver-dim: #8b93a3;
  --orange: #ff7a1e;
  --orange-dim: #ff9a4d;
  --text: #e8eaed;
  --text-dim: #9aa1ad;
  --radius: 14px;
  --max: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 19, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.logo .swoosh { width: 34px; height: 22px; flex-shrink: 0; }

.logo .auto { background: linear-gradient(180deg,#f4f6f8,#aeb5c0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo .repair { background: linear-gradient(180deg,#ff9a4d,#e85d00); -webkit-background-clip: text; background-clip: text; color: transparent; }

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

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-dim);
  transition: color 0.2s;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #10141c;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--orange-dim); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--silver); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  background: radial-gradient(ellipse at 50% -10%, rgba(255,122,30,0.12), transparent 60%), var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero .tag {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(255,122,30,0.35);
  padding: 6px 16px;
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero h1 span { color: var(--orange); }

.hero p {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: linear-gradient(180deg, var(--orange-dim), var(--orange));
  color: #14100a;
  box-shadow: 0 8px 24px -8px rgba(255,122,30,0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(255,122,30,0.7); }

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--card);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.hero-phones {
  margin-top: 30px;
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--silver);
  font-weight: 700;
  font-size: 1.05rem;
}
.hero-phones a { display: flex; align-items: center; gap: 8px; }
.hero-phones svg { color: var(--orange); }

/* ---------- Section shared ---------- */
section { padding: 80px 0; }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
}

.section-head .eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 700;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-top: 10px;
}

.section-head p { color: var(--text-dim); margin-top: 12px; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: linear-gradient(180deg, var(--card), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s, border-color 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,122,30,0.4);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,122,30,0.12);
  color: var(--orange);
  margin-bottom: 18px;
}

.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { color: var(--text-dim); font-size: 0.94rem; }

/* ---------- Why / stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.stat {
  text-align: center;
  padding: 26px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--orange);
  font-weight: 800;
}
.stat span { color: var(--text-dim); font-size: 0.9rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, #1a1108, #0a0d13 60%);
  border: 1px solid rgba(255,122,30,0.25);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  margin: 0 24px;
}
.cta-band h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.cta-band p { color: var(--text-dim); margin-bottom: 26px; }

/* ---------- Hours / info cards (home summary) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

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

.info-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--orange);
}

.hours-table { width: 100%; font-size: 0.95rem; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 9px 0; color: var(--text-dim); }
.hours-table td:last-child { text-align: right; color: var(--text); font-weight: 600; }
.hours-table tr.today td { color: var(--orange); }
.hours-table tr.today td:last-child { color: var(--orange); }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
  background: var(--bg-alt);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid p { color: var(--text-dim); font-size: 0.92rem; margin-top: 14px; }

.footer-grid h4 { font-size: 0.95rem; margin-bottom: 16px; color: var(--silver); }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--text-dim); font-size: 0.92rem; transition: color 0.2s; }
.footer-grid a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 10px;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--silver);
  transition: border-color 0.2s, color 0.2s;
}
.social:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 30px;
  align-items: start;
}

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

.contact-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }

.contact-row .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,122,30,0.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-row h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-row p, .contact-row a { color: var(--text-dim); font-size: 0.93rem; }
.contact-row a:hover { color: var(--orange); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 460px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 460px; border: 0; filter: grayscale(0.15) invert(0.92) hue-rotate(180deg) contrast(0.9); }

/* ---------- Page header (contact) ---------- */
.page-hero {
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 700;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-top: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { position: fixed; top: 68px; left: 0; right: 0; background: var(--bg); flex-direction: column; align-items: flex-start; padding: 20px 24px; border-bottom: 1px solid var(--border); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s; gap: 18px; }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-cta { margin-top: 6px; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: 40px 24px; margin: 0 16px; }
}
