/* =============================== */
/* GLOBAL RESET + BASE STYLING    */
/* =============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #111;
    color: #f2f2f2;
    line-height: 1.6;
    text-align: center;
}

/* =============================== */
/* COLOR VARIABLES (TACTICAL)     */
/* =============================== */

:root {
    --hazard-yellow: #f7c600;
    --hazard-dark: #111;
    --hazard-gray: #222;
    --hazard-light: #f2f2f2;
}

/* =============================== */
/* GLOBAL LINK CONTROL            */
/* =============================== */

a {
    color: var(--hazard-yellow);
    text-decoration: none;
    font-weight: 600;
}

a:hover,
a:focus {
    color: #fff;
    text-decoration: underline;
}

a:active {
    color: #ffa500;
}

/* =============================== */
/* LOGO + HEADER                  */
/* =============================== */

.logo-section {
    padding: 25px 0 10px;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
}

.homepage-logo {
    width: 500px;
    height: auto;
}

.header-subtitle {
    font-size: 1.1rem;
    color: var(--hazard-light);
    margin-top: 10px;
}

/* =============================== */
/* TOP CALL NOW BAR               */
/* =============================== */

.top-call-now {
    background: var(--hazard-yellow);
    padding: 10px 0;
}

.top-call-now a {
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
}

/* =============================== */
/* NAVIGATION BAR                 */
/* =============================== */

.nav-main {
    background: #000;
    border-bottom: 4px solid var(--hazard-yellow);
    padding: 12px 0;
}

.nav-main a {
    color: var(--hazard-yellow);
    margin: 0 12px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
}

.nav-main a.active,
.nav-main a:hover {
    color: #fff;
}

/* =============================== */
/* BREADCRUMBS                    */
/* =============================== */

.breadcrumbs {
    padding: 10px 0;
    background: #181818;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* =============================== */
/* EMERGENCY BAR                  */
/* =============================== */

.emergency-bar {
    background: #b30000;
    color: #fff;
    padding: 12px 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.emergency-bar a {
    color: var(--hazard-yellow);
}

/* =============================== */
/* HERO SECTION                   */
/* =============================== */

.hero-tactical {
    padding: 40px 20px;
    background: #111;
}

.hero-content h1 {
    font-size: 2rem;
    color: var(--hazard-yellow);
    text-transform: uppercase;
    font-weight: 800;
}

.hero-sub {
    font-size: 1.1rem;
    margin: 10px 0 20px;
}

.hero-cta {
    display: inline-block;
    background: var(--hazard-yellow);
    color: #000;
    padding: 12px 22px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 6px;
}

.hero-cta:hover {
    background: #ffdb4d;
}

.hero-badges {
    margin-top: 20px;
}

.hero-badges span {
    display: block;
    margin: 5px 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* =============================== */
/* CHEVRON DIVIDER                */
/* =============================== */

.chevron-divider {
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(
        -45deg,
        var(--hazard-yellow),
        var(--hazard-yellow) 10px,
        #000 10px,
        #000 20px
    );
    margin: 30px 0;
}

/* =============================== */
/* SECTION BASE                   */
/* =============================== */

.section {
    padding: 20px;
}

.section h2 {
    font-size: 1.8rem;
    color: var(--hazard-yellow);
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* =============================== */
/* TRUST BOXES                    */
/* =============================== */

.trust-box {
    background: #1a1a1a;
    border-left: 4px solid var(--hazard-yellow);
    padding: 18px;
    margin: 15px auto;
    border-radius: 4px;
    max-width: 650px;
}

.trust-box h3 {
    font-size: 1.3rem;
    color: var(--hazard-yellow);
    margin-bottom: 8px;
}

.trust-box p {
    font-size: 1rem;
}

/* =============================== */
/* SERVICE AREA LIST              */
/* =============================== */

.service-area-list {
    list-style: none;
    margin: 15px 0;
}

.service-area-list li {
    padding: 6px 0;
    font-size: 1.1rem;
}

/* =============================== */
/* CTA LINKS                      */
/* =============================== */

.cta-link {
    color: var(--hazard-yellow);
    font-weight: bold;
}

.cta-link:hover {
    color: #fff;
}

/* =============================== */
/* FOOTER                         */
/* =============================== */

footer {
    background: #000;
    padding: 30px 20px;
    margin-top: 30px;
}

.footer-trust {
    margin-bottom: 20px;
}

.trust-item {
    margin: 6px 0;
    font-size: 1rem;
}

.footer-links {
    margin: 15px 0;
}

.footer-links a {
    color: var(--hazard-yellow);
    margin: 0 5px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-area {
    margin: 15px 0;
    font-size: 0.95rem;
    opacity: 0.85;
}

.footer-badge {
    margin: 25px 0;
}

.footer-cert-badge {
    width: 150px;
    height: auto;
}

.footer-cta a {
    display: inline-block;
    background: var(--hazard-yellow);
    color: #000;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 6px;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* =============================== */
/* STICKY MOBILE CALL BAR         */
/* =============================== */

.sticky-call-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--hazard-yellow);
    padding: 12px 0;
    text-align: center;
    z-index: 999;
}

.sticky-call-bar a {
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
}

/* =============================== */
/* TABLE STYLING                  */
/* =============================== */

table {
    width: 90%;
    max-width: 900px;
    margin: 0 auto 25px auto;
    border-collapse: collapse;
    background: #111;
    border: 2px solid var(--hazard-yellow);
}

th, td {
    padding: 14px 12px;
    border: 1px solid var(--hazard-yellow);
    text-align: center;
    vertical-align: middle;
    color: var(--hazard-light);
}

th {
    background: #000;
    color: var(--hazard-yellow);
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
}

tr:nth-child(even) td {
    background: #181818;
}

tr:nth-child(odd) td {
    background: #111;
}

/* =============================== */
/* SOCIAL ICON BAR                */
/* =============================== */

.social-icon-bar {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social-icon svg {
    transition: 0.2s ease-in-out;
}

.social-icon:hover svg {
    transform: scale(1.15);
}

/* Brand icon overrides */

.fb-icon svg,
.bing-icon svg,
.yelp-icon svg,
.li-icon svg,
.x-icon svg {
    transition: 0.2s ease-in-out;
}

.fb-icon:hover svg,
.bing-icon:hover svg,
.yelp-icon:hover svg,
.li-icon:hover svg,
.x-icon:hover svg {
    transform: scale(1.15);
    filter: brightness(1.2);
}

/* =============================== */
/* MOBILE OPTIMIZATION            */
/* =============================== */

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .trust-box {
        padding: 14px;
    }

    .hero-cta {
        font-size: 1.1rem;
    }
}
