/* HERO SECTION */
.diagnostics-hero {
  position: relative;
  background: url("../images/diagnostics-hero.jpg") center center / cover
    no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.diagnostics-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HERO BOX */
.diagnostics-hero-box {
  background: rgba(32, 44, 96, 0.9);
  padding: 2.5rem 3rem;
  border-radius: 12px;
  max-width: 700px;
  color: #fff;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.diagnostics-hero-box h1 {
  font-size: 2rem;
  color: #fccf21;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.diagnostics-hero-box p {
  color: #f0f0f0;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* BUTTON */
.diagnostics-btn {
  background: #f97d1a;
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.diagnostics-btn:hover {
  background: #e98059;
  transform: translateY(-3px);
}

/* INTRO SECTION */
.service-intro {
  background: #fff;
  color: #202c60;
  text-align: center;
  padding: 4rem 1rem;
}

.service-intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-intro p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* GRID */
.repair-grid {
  background: #f9f9f9;
  padding: 5rem 1rem;
}

.repair-grid .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-items: center;
}

.repair-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.repair-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.repair-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.repair-card h3 {
  background: #f97d1a;
  color: #000;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.repair-card p {
  padding: 1rem;
  color: #202c60;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA */
.service-cta {
  background: #202c60;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
}

.service-cta h2 {
  color: #fccf21;
  margin-bottom: 1rem;
}

.service-cta p {
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-cta .cta-btn {
  background: #f97d1a;
  color: #fff;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-cta .cta-btn:hover {
  background: #e98059;
  transform: translateY(-2px);
}

/* QUOTE */
.car-quote {
  background: #fff;
  color: #202c60;
  text-align: center;
  padding: 4rem 1rem;
}

.car-quote blockquote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.car-quote cite {
  display: block;
  color: #f97d1a;
  font-weight: 700;
  margin-top: 1rem;
  letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .repair-grid .container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .repair-grid .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .repair-grid .container {
    grid-template-columns: 1fr;
  }

  .diagnostics-hero-box {
    max-width: 90%;
    padding: 2rem;
  }

  .diagnostics-hero-box h1 {
    font-size: 1.6rem;
  }

  .diagnostics-hero-box p {
    font-size: 0.95rem;
  }
}
