/* ===========================================
   SERVICES.CSS - Services Page Styles
   =========================================== */

/* -----------------------------------------
   Hero Section - Clean with jarallax wave
   ----------------------------------------- */
.services-hero-wrapper {
  position: relative;
  padding: 2rem 1rem;
  padding-top: 6rem; /* Account for navbar */
  padding-bottom: 4rem;
  overflow: hidden;
}

.services-hero-wrapper .jarallax-img {
  background-position: center bottom;
  background-size: cover;
}

@media (min-width: 992px) {
  .services-hero-wrapper {
    padding: 2rem 2rem;
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
}

.services-hero-content {
  position: relative;
  z-index: 1;
}

.services-hero-badge {
  display: inline-block;
  background: #00668c;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.services-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1d1c1c;
}

.services-hero-title .highlight {
  color: #00668c; /* Primary blue accent */
}

.services-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #6c757d;
  margin-bottom: 2rem;
  max-width: 600px;
}

.services-hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.services-hero-features li {
  display: inline-flex;
  align-items: center;
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: #313d44;
}

.services-hero-features li i {
  margin-right: 0.5rem;
}

/* -----------------------------------------
   Trust Signals Section
   ----------------------------------------- */
.trust-signals {
  padding: 1.5rem 0;
  background: #f8f9fa;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.9375rem;
}

.trust-item i {
  color: #198754;
}

/* -----------------------------------------
   Services Section
   ----------------------------------------- */
.services-grid-section {
  padding: 2rem 0 4rem 0;
  background: white;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1d1c1c;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.125rem;
}

/* Service Cards - matching business page */
.service-card {
  display: block;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border-color: #00668c;
  color: inherit;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #00668c;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
  background: #00668c;
  color: white;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1d1c1c;
  margin-bottom: 0.75rem;
}

.service-card-description {
  font-size: 0.9375rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-card-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: #313d44;
}

.service-card-features li i {
  font-size: 0.875rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #00668c;
  transition: color 0.2s ease;
}

.service-card:hover .service-card-link {
  color: #004d6a;
}

.service-card-link i {
  transition: transform 0.2s ease;
}

.service-card:hover .service-card-link i {
  transform: translateX(4px);
}

/* Subcategory list within cards */
.service-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.service-card-list li {
  border-bottom: 1px solid #f0f0f0;
}

.service-card-list li:last-child {
  border-bottom: none;
}

.service-card-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  text-decoration: none;
  color: #313d44;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.service-card-list a:hover {
  color: #00668c;
}

.service-card-list a i {
  color: #00668c;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-card-list a:hover i {
  opacity: 1;
  transform: translateX(4px);
}

/* -----------------------------------------
   How It Works Section
   ----------------------------------------- */
.how-it-works-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

/* -----------------------------------------
   CTA Section
   ----------------------------------------- */
.cta-section {
  padding: 4rem 0;
  background: #00668c;
}

.cta-section .section-title {
  color: white;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
}

/* -----------------------------------------
   Responsive adjustments
   ----------------------------------------- */
@media (max-width: 768px) {
  .services-hero-features li {
    display: flex;
    margin-right: 0;
    margin-bottom: 0.75rem;
  }

  .service-card {
    margin-bottom: 1.5rem;
  }
}
