/* === BASE === */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: sans-serif; background: #fff; color: #333; }
a { color: inherit; }
main { display: block; }

/* === NAV === */
.site-nav { background: #002D62; padding: 12px 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; position: sticky; top: 0; z-index: 999; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.nav-logo { color: white; text-decoration: none; font-size: 1.3rem; font-weight: 900; text-transform: uppercase; }
.nav-links { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.nav-links a { color: white; text-decoration: none; font-weight: bold; font-size: 0.95rem; }
.nav-links li:last-child a { background: #ffcc00; color: #002D62; padding: 8px 18px; border-radius: 6px; font-weight: 900; }

/* === BUTTONS === */
.btn-call { background: #ffcc00; color: #002D62 !important; padding: 15px 25px; font-size: 1.4rem; font-weight: bold; text-decoration: none; display: inline-block; border-radius: 8px; text-align: center; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }

/* === CTA INCLUDE === */
.cta { background: #002D62; color: white; padding: 60px 10%; text-align: center; }
.cta h2 { font-size: 2.5rem; margin-bottom: 20px; }
.cta p { font-size: 1.3rem; margin-bottom: 30px; }
.cta-button { background: #ffcc00; color: #002D62; padding: 15px 35px; font-size: 1.2rem; font-weight: 900; text-decoration: none; border-radius: 8px; display: inline-block; }

/* === FOOTER === */
.site-footer { background: #111; color: white; padding: 50px 10% 30px; text-align: center; font-size: 1rem; border-top: 4px solid #ffcc00; }
.footer-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; max-width: 1200px; margin: 0 auto 30px; }
.footer-services h3, .footer-info h3 { color: #ffcc00; font-size: 1.2rem; text-transform: uppercase; margin-bottom: 15px; }
.footer-services ul { list-style: none; margin: 0; padding: 0; }
.footer-services ul li { margin-bottom: 8px; }
.footer-services a, .footer-info a { color: white; text-decoration: none; }
.footer-services a:hover, .footer-info a:hover { color: #ffcc00; }
.footer-info p { margin: 8px 0; line-height: 1.6; }
.footer-base { margin-top: 20px; font-size: 0.9rem; opacity: 0.8; border-top: 1px solid #333; padding-top: 20px; }

/* === SERVICE-LOCATION PAGE === */
.service-location-page { max-width: 1200px; margin: 0 auto; padding: 40px 5%; }
.service-location-page header { margin-bottom: 30px; }
.service-location-page h1 { color: #002D62; font-size: 2.5rem; margin-bottom: 10px; }
.service-intro { font-size: 1.2rem; color: #555; }
.service-content { margin-bottom: 40px; line-height: 1.8; font-size: 1.1rem; }
.nearby-locations { background: #f4f4f4; padding: 30px; border-radius: 10px; margin-bottom: 40px; }
.nearby-locations h2 { color: #002D62; margin-bottom: 15px; }
.nearby-locations ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.nearby-locations ul li { background: white; padding: 8px 16px; border-radius: 50px; border: 1px solid #ddd; font-size: 0.95rem; }

/* === LOCATION PAGE === */
.location-page { max-width: 1200px; margin: 0 auto; padding: 40px 5%; }
.location-page header { margin-bottom: 30px; }
.location-page h1 { color: #002D62; font-size: 2.5rem; margin-bottom: 10px; }
.location-intro { font-size: 1.2rem; color: #555; }
.services-list { margin-bottom: 40px; }
.services-list h2 { color: #002D62; margin-bottom: 20px; }
.services-list ul { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.services-list ul li a { display: block; background: white; padding: 20px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); text-decoration: none; color: #002D62; font-weight: bold; transition: box-shadow 0.2s; }
.services-list ul li a:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    /* mobile nav stack removed */
    .nav-links { gap: 10px; }
    .btn-call { width: 100%; }
    .footer-container { flex-direction: column; gap: 20px; }
    .service-location-page h1, .location-page h1 { font-size: 1.8rem; }
    .cta h2 { font-size: 1.8rem; }
}
