/* Hero Section */
.services-hero {
  background: linear-gradient(to right, #f97316, #c2410c);
  color: #fff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.services-hero-back {
  margin-bottom: 1.5rem;
}
.services-hero-back-link {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  transition: color 0.2s;
}
.services-hero-back-link:hover {
  color: #fed7aa;
}
.arrow-left {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}
.services-hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .services-hero-title {
    font-size: 3rem;
  }
}
.services-hero-desc {
  font-size: 1.25rem;
  max-width: 48rem;
}

/* Services Details Section */
.services-details {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #fff;
}
.services-details-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}
@media (min-width: 768px) {
  .services-details-container {
    gap: 5rem;
  }
}
.service-detail-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .service-detail-row {
    flex-direction: row;
    gap: 2rem;
  }
  .service-detail-row.reverse {
    flex-direction: row-reverse;
  }
}
.service-detail-img-col {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .service-detail-img-col {
    width: 33.3333%;
  }
}
.service-detail-img {
  border-radius: 0.5rem;
  object-fit: cover;
  max-width: 100%;
  width: 100%;
  min-width: 180px;
  max-height: 260px;
}
.service-detail-content-col {
  width: 100%;
}
@media (min-width: 768px) {
  .service-detail-content-col {
    width: 66.6666%;
  }
}
.service-detail-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
}
.service-detail-desc {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}
.service-detail-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .service-detail-features {
    grid-template-columns: 1fr 1fr;
  }
}
.service-detail-feature {
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  color: #374151;
}
.service-detail-feature-icon {
  color: #f97316;
  margin-right: 0.5rem;
  margin-top: 0.15em;
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

/* CTA Section */
.services-cta {
  background: #f9fafb;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.services-cta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.services-cta-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .services-cta-title {
    font-size: 2.5rem;
  }
}
.services-cta-desc {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
.services-cta-btn-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 640px) {
  .services-cta-btn-row {
    flex-direction: row;
    justify-content: center;
  }
}
.services-cta-btn {
  background: #f97316;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.services-cta-btn:hover {
  background: #ea580c;
}