/* ==========================================================================
   services-overview.css — Services Overview Page
   A Perfect Choice Home Care WordPress Theme
   Main /services/ page listing all 6 services
   ========================================================================== */

/* --------------------------------------------------------------------------
   Services Overview Intro
   -------------------------------------------------------------------------- */
.apch-svc-overview-intro {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}
.apch-svc-overview-intro::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 143, 113, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.apch-svc-overview-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.apch-svc-overview-intro h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 20px;
}
.apch-svc-overview-intro p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
}
.apch-svc-overview-intro p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .apch-svc-overview-intro {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   Full Services Grid (larger cards)
   -------------------------------------------------------------------------- */
.apch-svc-overview-grid-section {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.apch-svc-overview-grid-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(107, 143, 113, 0.04) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(196, 74, 63, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.apch-svc-overview-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}
.apch-svc-overview-header .apch-section-label {
  justify-content: center;
}
.apch-svc-overview-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  max-width: 640px;
  margin: 0 auto 16px;
}
.apch-svc-overview-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}
.apch-svc-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
}
.apch-svc-overview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
}
.apch-svc-overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--coral);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.apch-svc-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.apch-svc-overview-card:hover::before {
  transform: scaleY(1);
}
.apch-svc-overview-card-image {
  overflow: hidden;
  background: var(--cream);
  min-height: 200px;
}
.apch-svc-overview-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.apch-svc-overview-card:hover .apch-svc-overview-card-image img {
  transform: scale(1.05);
}
.apch-svc-overview-card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.apch-svc-overview-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}
.apch-svc-overview-card-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.apch-svc-overview-card-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}
.apch-svc-overview-card-features {
  list-style: none;
  margin-bottom: 20px;
}
.apch-svc-overview-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  padding: 4px 0;
}
.apch-svc-overview-card-features li svg {
  color: var(--sage);
  min-width: 16px;
}
.apch-svc-overview-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--coral);
}
.apch-svc-overview-card-link:hover {
  gap: 10px;
}

@media (max-width: 900px) {
  .apch-svc-overview-grid {
    grid-template-columns: 1fr;
  }
  .apch-svc-overview-card {
    grid-template-columns: 1fr;
  }
  .apch-svc-overview-card-image {
    aspect-ratio: 16/9;
    min-height: auto;
  }
  .apch-svc-overview-grid-section {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .apch-svc-overview-grid {
    gap: 24px;
  }
  .apch-svc-overview-card-content {
    padding: 28px;
  }
  .apch-svc-overview-header {
    margin-bottom: 48px;
  }
}
@media (max-width: 600px) {
  .apch-svc-overview-grid-section {
    padding: 60px 0;
  }
  .apch-svc-overview-card-content {
    padding: 24px;
  }
}

/* --------------------------------------------------------------------------
   Service Comparison / Features Section
   -------------------------------------------------------------------------- */
.apch-svc-overview-compare {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.apch-svc-overview-compare-header {
  text-align: center;
  margin-bottom: 56px;
}
.apch-svc-overview-compare-header .apch-section-label {
  justify-content: center;
}
.apch-svc-overview-compare-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  max-width: 640px;
  margin: 0 auto 16px;
}
.apch-svc-overview-compare-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.apch-svc-overview-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.apch-svc-overview-compare-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}
.apch-svc-overview-compare-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.apch-svc-overview-compare-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.apch-svc-overview-compare-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.apch-svc-overview-compare-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}
.apch-svc-overview-compare-list {
  list-style: none;
}
.apch-svc-overview-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  line-height: 1.5;
}
.apch-svc-overview-compare-list li svg {
  color: var(--sage);
  min-width: 16px;
  margin-top: 3px;
}

@media (max-width: 900px) {
  .apch-svc-overview-compare-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .apch-svc-overview-compare {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .apch-svc-overview-compare-grid {
    gap: 20px;
  }
  .apch-svc-overview-compare-card {
    padding: 28px 22px;
  }
}
@media (max-width: 600px) {
  .apch-svc-overview-compare-grid {
    grid-template-columns: 1fr;
  }
  .apch-svc-overview-compare {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   Why Us Quick Section (Services Overview)
   -------------------------------------------------------------------------- */
.apch-svc-overview-why {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.apch-svc-overview-why::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 74, 63, 0.1), transparent 70%);
  pointer-events: none;
}
.apch-svc-overview-why-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.apch-svc-overview-why-inner .apch-section-label {
  justify-content: center;
  color: var(--coral);
}
.apch-svc-overview-why-inner .apch-section-label::before {
  background: var(--coral);
}
.apch-svc-overview-why-inner h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.apch-svc-overview-why-inner > p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.apch-svc-overview-why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.apch-svc-overview-why-stat {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.apch-svc-overview-why-stat:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.apch-svc-overview-why-stat-number {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--coral);
  line-height: 1.1;
  margin-bottom: 8px;
}
.apch-svc-overview-why-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .apch-svc-overview-why-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .apch-svc-overview-why-stats {
    gap: 16px;
  }
  .apch-svc-overview-why-stat {
    padding: 20px 12px;
  }
}
@media (max-width: 600px) {
  .apch-svc-overview-why {
    padding: 60px 0;
  }
  .apch-svc-overview-why-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
