/* Additional styles specific to the hero highlights and service banners */
.hero-highlights {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.hero-highlight-card {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.hero-highlight-card h5 {
  font-size: 1.05rem;
  color: #fff;
  margin: 0;
}
.hero-highlight-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin: 0;
}
.hero-highlight-card i {
  font-size: 1.8rem;
  color: #fff;
}
.service-banner {
  padding: 1.5rem;
  border-radius: 1rem 1rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.service-banner h5 {
  margin: 0;
}
.banner-icon i {
  font-size: 2.8rem;
}

@media (max-width: 768px) {
  .hero { padding-top: 3rem; }
  .hero-highlights {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 400px) {
  .hero-highlights {
    grid-template-columns: 1fr;
  }
  .hero-highlight-card {
    padding: 0.7rem 0.85rem;
  }
}
