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

:root {
  --blue: #0a6fc2;
  --blue-dark: #084e8c;
  --blue-light: #e8f3fc;
  --accent: #f0a500;
  --text: #1a1a2e;
  --muted: #5a6070;
  --border: #d8e3ef;
  --bg: #f7f9fc;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 48px;
  width: auto;
  border-radius: 4px;
}

.nav-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover { background: var(--blue-light); }

.btn-accent {
  background: var(--accent);
  color: var(--text);
}

.btn-accent:hover { background: #d89400; transform: translateY(-1px); }

/* HERO */
.hero {
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.91) 0%, rgba(13, 37, 69, 0.87) 40%, rgba(10, 74, 143, 0.81) 100%),
    url('../images/hero-garage.jpg') center/cover no-repeat;
  color: white;
  padding: 5rem 2.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(10, 111, 194, 0.15);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(240, 165, 0, 0.07);
  pointer-events: none;
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240, 165, 0, 0.15);
  border: 1px solid rgba(240, 165, 0, 0.4);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '★';
  font-size: 0.75rem;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

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

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* SECTION */
section { padding: 4.5rem 2.5rem; }

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 10px;
  padding: 1.6rem 1.4rem;
  transition: box-shadow 0.2s, transform 0.2s, border-left-color 0.2s;
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(10, 111, 194, 0.1);
  transform: translateY(-3px);
  border-left-color: var(--accent);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--blue);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* WHY */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.why-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 111, 194, 0.13);
  aspect-ratio: 3/4;
  max-height: 500px;
}

.why-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}

.why-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.why-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* REVIEWS */
.reviews-bg { background: var(--bg); }

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

.reviews-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.big-rating {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.rating-sub {
  font-size: 0.85rem;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.4rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}

.reviewer {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* HOURS */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 400px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.hours-row { display: contents; }

.hours-day, .hours-time {
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.hours-day {
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
}

.hours-time {
  color: var(--muted);
  background: var(--white);
}

.hours-row:last-child .hours-day,
.hours-row:last-child .hours-time { border-bottom: none; }

.closed { color: #c0392b; font-weight: 600; }

/* CONTACT DARK */
.contact-bg {
  background: linear-gradient(135deg, #0a1628 0%, #0d2545 70%, #0a4a8f 100%);
  color: white;
}

/* FOOTER */
footer {
  background: #08101e;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.82rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer strong { color: rgba(255,255,255,0.7); }

@media (max-width: 680px) {
  nav { padding: 0.65rem 1.25rem; }
  .nav-links { display: none; }
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  section { padding: 3.5rem 1.25rem; }
  .hours-grid { max-width: 100%; }
  .why-layout { grid-template-columns: 1fr; }
  .why-image-wrap { aspect-ratio: 16/9; max-height: 260px; order: -1; }
}
