@import url("style.css");

/* Services Hero */
.services-hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&q=80&w=1920");
  background-size: cover;
  background-position: center;
}

.services-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.3)
  );
  z-index: 10;
}

.services-hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.services-hero .hero-content p {
  font-size: 1.2rem;
}

/* Detailed Services */
.detailed-services {
  padding: 80px 0;
  background: #f9f9f9;
}

.service-detail {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.service-detail.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-content {
  flex: 1;
}

.service-content h2 {
  color: var(--primary-green);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.service-content li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #666;
}

.service-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

.service-content .btn-primary {
  display: inline-block;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .services-hero .hero-content h1 {
    font-size: 2rem;
  }

  .services-hero .hero-content p {
    font-size: 1rem;
  }

  .service-detail {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
  }

  .service-detail.reverse {
    flex-direction: column;
  }

  .service-content h2 {
    font-size: 2rem;
  }

  .detailed-services {
    padding: 60px 0;
  }
}
