/* IMPORT CUSTOM FONT */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');

/* Hero Section */
.services-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/services-hero.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.services-hero-content h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.services-hero-content p {
  color: white !important;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 1 !important;
}

/* Category Section */
.service-category {
  padding: 100px 0;
}

.service-category.alt-background {
  background-color: #f9f2f6;
}

/* Category Title (UPDATED) */
.category-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 35px;
  position: relative;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--primary-color);
}

.category-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

/* Category Description (Larger) */
.category-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--dark-color);
  line-height: 1.8;
}

/* Category Images */
.service-category-image {
  max-width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-category-image:hover {
  transform: scale(1.02);
}

/* Service Cards */
.service-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.service-item {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.service-item h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-item p {
  font-size: 1.15rem;
  color: var(--secondary-color);
  line-height: 1.6;
}

/* CTA Section */
.service-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), #ff9a8b);
  color: white;
  text-align: center;
}

.service-cta h2 {
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-cta p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.95);
}

.service-cta .btn {
  background-color: white;
  color: var(--primary-color);
  padding: 14px 36px;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.service-cta .btn:hover {
  background-color: var(--light-color);
}

/* Responsive */
@media (max-width: 768px) {
  .services-hero-content h1 {
    font-size: 2.6rem;
  }

  .services-hero-content p {
    font-size: 1.15rem;
  }

  .category-title {
    font-size: 2.4rem;
  }

  .category-description {
    font-size: 1.4rem;
  }

  .service-item h3 {
    font-size: 1.4rem;
  }

  .service-item p {
    font-size: 1rem;
  }

  .service-cta h2 {
    font-size: 2rem;
  }

  .service-cta p {
    font-size: 1rem;
  }
}
