/* Hero Section */
.maintenance-hero {
  background: linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
    url("../images/walkin-hero.png") center/cover no-repeat;
  padding: 120px 20px;
  border-radius: 20px;
  margin-top: 40px;
  text-align: center;
  color: #fff;
}

.maintenance-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.maintenance-hero-text h1{
  color: #fff;
}

.maintenance-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Overview */
.maintenance-overview {
  margin-top: 90px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.maintenance-overview h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.maintenance-overview p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
}

/* Services */
.maintenance-services {
  margin-top: 100px;
  text-align: center;
}

.maintenance-services h2 {
  font-size: 2.3rem;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #1f4568;
}

.service-card p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

/* Plans */
.maintenance-plans {
  margin-top: 120px;
  padding: 80px 20px;
  background: #f2f5f8;
  border-radius: 24px;
  text-align: center;
}

.maintenance-plans h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.maintenance-plans p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 30px;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.plan-list li {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #333;
}

/* Button */
.maintenance-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #2a5d8f;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.maintenance-btn:hover {
  background: #1f4568;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .maintenance-hero h1 {
    font-size: 2.2rem;
  }

  .maintenance-hero p {
    font-size: 1rem;
  }
}
