/* Featured Services Section Styles */

.featured-services {
  padding: 80px 0;
  background: #ffffff;
}

.featured-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 968px) {
  .featured-services-grid {
    grid-template-columns: 1fr;
  }
}

.featured-service-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.featured-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.15);
  border-color: #0A2463;
}
.service-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  width: fit-content;
}

.service-badge.popular {
  background: #10B981;
  color: #ffffff;
}

.service-badge.new {
  background: #10B981;
  color: #ffffff;
}

.service-duration {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #f1f5f9;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 1rem;
  font-weight: 600;
  width: fit-content;
}-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.5rem;
}

.service-benefits {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.service-benefits li {
  padding: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
}

.service-benefits li strong {
  color: #0A2463;
  font-weight: 600;
}

.service-ideal-for {
  margin-top: auto;
  padding-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #64748b;
}

.featured-service-card .btn {
  margin-top: 0;
}

.other-services-link {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.05rem;
  color: #64748b;
}

.other-services-link a {
  color: #0A2463;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.other-services-link a:hover {
  color: #0A2463;
  text-decoration: underline;
}
