/* HERO SECTION */
.vehicle-hero {
  position: relative;
  background: url("../images/servicing-hero.jpg") center center / cover
    no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.vehicle-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-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);
}

.vehicle-hero-box h1 {
  font-size: 2rem;
  color: #fccf21;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.vehicle-hero-box p {
  color: #f0f0f0;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.vehicle-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;
}

.vehicle-btn:hover {
  background: #e98059;
  transform: translateY(-3px);
}

/* INTRO */
.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;
}

/* TABS */
.service-tabs {
  background: #f9f9f9;
  padding: 5rem 1rem;
  text-align: center;
}

.tab-header {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: #202c60;
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: #f97d1a;
  color: #fff;
}

.tab-panel {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  color: #202c60;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.tab-panel h3 {
  color: #202c60;
  margin-bottom: 1rem;
}

.tab-panel p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.tab-panel ul {
  list-style: disc;
  margin-left: 1.5rem;
  line-height: 1.8;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HONDA MODELS */
.honda-models {
  background: #fff;
  text-align: center;
  color: #202c60;
  padding: 4rem 1rem;
}

.honda-models h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 2rem auto 0;
}

.models-grid span {
  background: #f97d1a;
  color: #000;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* 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);
}
