/* Custom Styles for First Light Cleaners */
#main-header.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
}
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
.map-btn.active {
    background-color: #F7D98A;
    color: #2E2E2E;
}
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(247, 217, 138, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(247, 217, 138, 0); }
    100% { box-shadow: 0 0 0 0 rgba(247, 217, 138, 0); }
}
.cta-pulse {
    animation: pulse-gold 2s infinite;
}