/* Detailed Services Section */
.detailed-services {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  width: 100%;
}

.detailed-services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.detailed-services h2 {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
}

.detailed-services h2:after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #333, #f7be16);
  margin: 20px auto 0;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: #f7be16;
}

.service-image {
  width: 100%;
  height: 120px;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f7be16, #ffc107);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: white;
  box-shadow: 0 5px 15px rgba(247, 190, 22, 0.3);
}

.service-card h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .detailed-services {
    padding: 60px 0;
  }

  .detailed-services h2 {
    font-size: 2.2rem;
  }

  .services-grid {
    /* Changed from 2 columns to 1 column for full width cards on mobile */
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .detailed-services h2 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 25px 15px;
  }

  .service-card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}
