/* ============================================
   SERVICES PAGE SPECIFIC STYLES
   ============================================ */

/* Services Page Hero */
.services-hero {
  position: relative;
  padding: 6rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2d2d3a 0%, #3d4a20 100%);
}

/* Service Detail Sections */
.service-detail-section {
  padding: 5rem 0;
  background-color: white;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .service-detail {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-detail .image-wrapper {
  overflow: hidden;
  border-radius: 0.125rem;
}

.service-detail img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.service-detail .label {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 0.125rem;
  color: white;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  margin-bottom: 1rem;
}

.service-detail h2 {
  font-family: Arial, sans-serif;
  color: #1c1c1c;
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-detail .description p {
  font-family: Arial, sans-serif;
  color: #555;
  font-size: 16px;
  line-height: 1.375;
  margin-bottom: 0.25rem;
}

.service-detail .features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.service-detail .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #333;
}

.service-detail .feature-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.service-detail .cta-btn {
  display: inline-block;
  background: linear-gradient(to right, rgba(218, 185, 32, 0.9), rgba(154, 162, 45, 0.9));
  color: white;
  padding: 0.75rem 2.25rem;
  border-radius: 9999px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  transition: opacity 0.15s ease;
}

.service-detail .cta-btn:hover {
  opacity: 0.9;
}

/* Services CTA Banner */
.services-cta {
  background-color: #2d2d3a;
  padding: 4rem 0;
}

.services-cta h3 {
  font-family: Arial, sans-serif;
  color: white;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.services-cta p {
  font-family: Arial, sans-serif;
  color: #b0b0b0;
  font-size: 16px;
}
