/* Car Interior Cleaning Services Styles */
.car-services {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.car-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.car-service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  transform: translateY(0);
}

.car-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: inherit;
}

.car-service-card.featured {
  border: 3px solid #2c3e50;
  transform: scale(1.05);
}

.car-service-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.car-service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #2c3e50;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.car-service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.car-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.car-service-card:hover .car-service-image img {
  transform: scale(1.1);
}

.car-service-content {
  padding: 25px;
  text-align: center;
}

.car-service-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.car-service-price {
  font-size: 32px;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 15px;
}

.car-service-description {
  margin-bottom: 20px;
}

.car-service-description p {
  color: #6c757d;
  font-size: 16px;
  line-height: 1.5;
}

.car-service-btn {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
}

.car-service-card:hover .car-service-btn {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  transform: translateY(-2px);
}

.car-services-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.car-benefit {
  text-align: center;
  padding: 20px;
}

.car-benefit i {
  font-size: 40px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.car-benefit h5 {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.car-benefit p {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .car-services {
    padding: 60px 0;
  }

  .car-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .car-service-card.featured {
    transform: none;
  }

  .car-service-card.featured:hover {
    transform: translateY(-10px);
  }

  .car-services-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .car-services-benefits {
    grid-template-columns: 1fr;
  }

  .car-service-content {
    padding: 20px;
  }

  .car-service-content h4 {
    font-size: 20px;
  }

  .car-service-price {
    font-size: 28px;
  }
}
