/* RESET & BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; background: #f4f4f4; }
a { text-decoration: none; }
ul { list-style: none; }

/* UTILITIES */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; padding: 12px 25px; font-weight: bold; text-transform: uppercase; border-radius: 4px; transition: all 0.3s; text-align: center; }
.btn-primary { background-color: #ffcc00; color: #000; border: 2px solid #ffcc00; }
.btn-primary:hover { background-color: #e6b800; border-color: #e6b800; }
.btn-secondary { background-color: transparent; color: #fff; border: 2px solid #fff; margin-left: 10px; }
.btn-secondary:hover { background-color: #fff; color: #000; }
.btn-large { font-size: 1.5rem; padding: 15px 40px; margin-top: 10px; }

/* MOBILE STICKY BAR */
.mobile-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: #ffcc00; z-index: 999; text-align: center; box-shadow: 0 -2px 10px rgba(0,0,0,0.2); }
.mobile-call-btn { display: block; padding: 15px; font-weight: 900; font-size: 1.2rem; color: #000; }

/* HEADER */
.site-header { background: #1a1a1a; color: #fff; padding: 15px 0; border-bottom: 4px solid #ffcc00; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; }
.logo-icon { font-size: 2.5rem; margin-right: 15px; }
.company-name { display: block; font-weight: 900; font-size: 1.2rem; letter-spacing: 1px; }
.division-name { display: block; font-size: 0.9rem; color: #ccc; text-transform: uppercase; }
.header-contact { text-align: right; }
.dispatch-label { display: block; font-size: 0.8rem; color: #ffcc00; text-transform: uppercase; letter-spacing: 1px; }
.phone-number { color: #fff; font-size: 1.5rem; font-weight: bold; }

/* HERO */
.hero { position: relative; background: #333; height: 500px; display: flex; align-items: center; text-align: center; color: #fff; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)); }
/* NOTE: Add a real background image to .hero in production if available */
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; text-transform: uppercase; }
.hero-sub { font-size: 1.3rem; margin-bottom: 30px; color: #ddd; }

/* TRUST STRIP */
.trust-strip { background: #e6e6e6; padding: 15px 0; border-bottom: 1px solid #ccc; }
.trust-flex { display: flex; justify-content: space-around; flex-wrap: wrap; font-weight: bold; color: #555; }
.trust-item { margin: 5px 10px; }

/* MAIN SECTIONS */
section { padding: 60px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 40px; text-transform: uppercase; color: #1a1a1a; }
.intro-section { background: #fff; text-align: center; }
.intro-section h2 { margin-bottom: 20px; color: #1a1a1a; }
.intro-section p { max-width: 800px; margin: 0 auto 15px auto; font-size: 1.1rem; }

/* SERVICES GRID */
.services-section { background: #1a1a1a; color: #fff; }
.services-section .section-title { color: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: #2a2a2a; padding: 30px; border-radius: 4px; border-left: 5px solid #ffcc00; transition: transform 0.2s; }
.service-card:hover { transform: translateY(-5px); }
.card-icon { font-size: 3rem; margin-bottom: 15px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #ffcc00; }
.service-card ul { margin-top: 15px; padding-left: 20px; }
.service-card ul li { list-style: square; margin-bottom: 5px; color: #ccc; }

/* AREA SECTION */
.area-section { background: #ffcc00; color: #000; text-align: center; }
.area-box h2 { margin-bottom: 15px; text-transform: uppercase; }
.locations-list { font-weight: bold; margin-top: 20px; font-size: 1.1rem; }

/* FINAL CTA */
.final-cta { background: #fff; text-align: center; border-top: 5px solid #1a1a1a; }
.final-cta h2 { margin-bottom: 10px; }
.email-link { margin-top: 20px; color: #666; }

/* FOOTER */
footer { background: #111; color: #777; padding: 40px 0; font-size: 0.9rem; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-right { text-align: right; }
.footer-right a { color: #ccc; }

/* MEDIA QUERIES */
@media (max-width: 768px) {
    .hero { height: auto; padding: 80px 0; }
    .hero h1 { font-size: 2rem; }
    .header-contact { display: none; } /* Hide header phone on mobile, rely on sticky bar */
    .mobile-sticky-bar { display: block; }
    .btn-secondary { display: block; margin: 15px 0 0 0; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-right { text-align: center; margin-top: 20px; }
}