/* Services page banner */
.services-banner {
  background: linear-gradient(135deg, rgba(15,61,145,0.9), rgba(15,61,145,0.8)), url('/assets/banners/services-banner.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  text-align: center;
}
.services-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.services-banner p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Service cards (within grid-4 already styled by main.css, but we add icons emphasis) */
#servicesGrid .card i {
  font-size: 48px;
  color: var(--bright-orange);
  margin-bottom: 16px;
  transition: transform 0.2s;
}
#servicesGrid .card:hover i {
  transform: scale(1.1);
}
#servicesGrid .card h3 {
  margin: 16px 0 12px;
}

/* Service highlights section */
.service-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
.service-highlight-card {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.service-highlight-card i {
  font-size: 44px;
  color: var(--deep-blue);
  margin-bottom: 16px;
}
.service-highlight-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.service-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* CTA section (reuse from index but customize) */
.cta-section {
  text-align: center;
  background: var(--deep-blue);
  color: white;
  border-radius: 48px;
  margin-bottom: 60px;
}
.cta-section h2 {
  color: white;
  margin-bottom: 16px;
}
.cta-section p {
  margin-bottom: 24px;
  font-size: 1.1rem;
}
.cta-section .btn-primary {
  background: var(--bright-orange);
  color: white;
}
.cta-section .btn-primary:hover {
  background: #e06e00;
}

@media (max-width: 768px) {
  .services-banner h1 { font-size: 1.8rem; }
  .service-highlights { gap: 20px; }
}