/* PAGE: home-specific sections and responsive tweaks */

@import url('./hero.css');
@import url('./area.css');
@import url('./map.css');
@import url('./responsive.css');

/* Testimonials subtle glow */
.bg-light .container {
  position: relative;
}

.bg-light .container::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at top, rgba(255, 215, 0, 0.08), transparent 65%);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

