/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: #000000 !important;
    background-color: #000000 !important;
    background-image: none !important;

    border-bottom: 1px solid rgba(255,255,255,.15);

    color: #ffffff !important;
}

.site-header .container,
.site-header .nav-wrap {
    background: #000000 !important;
    background-color: #000000 !important;
    background-image: none !important;
}

.nav-wrap {
    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;

    background: #000000 !important;
}

.logo img {
    width: 160px !important;
    max-width: 160px !important;
    max-height: 70px !important;
    height: auto !important;

    display: block !important;

    object-fit: contain;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.nav-links {
    display: flex !important;

    align-items: center !important;
    justify-content: flex-end !important;

    gap: 25px !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    font-weight: 700;
    font-size: 13px;
}

.nav-links > a {
    text-decoration: none !important;
}


/* =========================================================
   NORMAL NAVIGATION LINKS
   ========================================================= */

.site-header .nav-links > a:not(.nav-insurance-button) {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    height: 46px !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    color: #ffffff !important;

    border: 0 !important;
    border-radius: 0 !important;

    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 800 !important;

    line-height: 1 !important;

    white-space: nowrap !important;

    text-decoration: none !important;

    transition: color .2s ease;
}

.site-header .nav-links > a:not(.nav-insurance-button):hover {
    color: #FFC400 !important;
}


/* =========================================================
   STORM & INSURANCE REPAIRS
   MAIN NAVIGATION BUTTON
   ========================================================= */

.site-header nav.nav-links > a.nav-insurance-button {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    flex: 0 0 auto !important;

    width: 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;

    height: 50px !important;
    min-height: 50px !important;
    max-height: 50px !important;

    margin: 0 0 0 5px !important;

    padding: 0 20px !important;

    background: #FFC400 !important;
    background-color: #FFC400 !important;
    background-image: none !important;

    color: #071D33 !important;

    border: 2px solid #FFC400 !important;
    border-radius: 10px !important;

    outline: none !important;

    font-family: inherit !important;
    font-size: 12px !important;
    font-weight: 900 !important;

    letter-spacing: .015em !important;
    line-height: 1 !important;

    text-align: center !important;
    text-decoration: none !important;

    white-space: nowrap !important;

    opacity: 1 !important;
    visibility: visible !important;

    box-shadow: 0 5px 18px rgba(255,196,0,.22) !important;

    transform: none !important;

    cursor: pointer !important;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease !important;
}


/* =========================================================
   STORM BUTTON — HOVER
   ========================================================= */

.site-header nav.nav-links > a.nav-insurance-button:hover {
    display: inline-flex !important;

    background: #FFC400 !important;
    background-color: #FFC400 !important;
    background-image: none !important;

    color: #071D33 !important;

    border-color: #FFC400 !important;

    transform: translateY(-2px) !important;

    box-shadow: 0 8px 25px rgba(255,196,0,.38) !important;
}


/* =========================================================
   STORM BUTTON — FOCUS
   ========================================================= */

.site-header nav.nav-links > a.nav-insurance-button:focus,
.site-header nav.nav-links > a.nav-insurance-button:focus-visible {
    background: #FFC400 !important;
    background-color: #FFC400 !important;

    color: #071D33 !important;

    border-color: #FFC400 !important;

    outline: 3px solid rgba(255,196,0,.25) !important;
    outline-offset: 2px !important;
}


/* =========================================================
   STORM BUTTON — ACTIVE
   ========================================================= */

.site-header nav.nav-links > a.nav-insurance-button:active {
    background: #FFC400 !important;
    background-color: #FFC400 !important;

    color: #071D33 !important;

    border-color: #FFC400 !important;

    transform: translateY(0) !important;

    box-shadow: 0 4px 12px rgba(255,196,0,.25) !important;
}


/* =========================================================
   NAV TOGGLE
   ========================================================= */

.nav-toggle {
    display: none;

    border: 0 !important;

    background: transparent !important;

    color: #ffffff !important;

    font-size: 30px !important;

    cursor: pointer;
}


/* =========================================================
   TABLET / MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 980px) {

    .nav-toggle {
        display: block !important;

        position: relative !important;

        z-index: 10001 !important;

        width: auto !important;
        height: auto !important;

        padding: 8px !important;

        background: transparent !important;

        color: #ffffff !important;

        border: 0 !important;

        font-size: 30px !important;

        cursor: pointer !important;
    }


    .nav-links {
        display: none !important;

        position: fixed !important;

        top: 105px !important;

        left: 14px !important;
        right: 14px !important;

        width: auto !important;

        height: auto !important;

        flex-direction: column !important;

        align-items: stretch !important;

        justify-content: flex-start !important;

        gap: 0 !important;

        padding: 20px !important;

        background: #000000 !important;
        background-color: #000000 !important;

        border-radius: 18px !important;

        box-shadow: 0 18px 45px rgba(0,0,0,.35) !important;

        z-index: 10000 !important;
    }


    .nav-links.open {
        display: flex !important;
    }


    /* MOBILE NORMAL LINKS */

    .site-header .nav-links > a:not(.nav-insurance-button) {
        display: flex !important;

        align-items: center !important;

        justify-content: flex-start !important;

        width: 100% !important;

        height: auto !important;

        min-height: 45px !important;

        margin: 0 !important;

        padding: 14px 10px !important;

        background: transparent !important;

        color: #ffffff !important;

        border: 0 !important;

        border-radius: 0 !important;

        font-size: 13px !important;

        text-decoration: none !important;
    }


    .site-header .nav-links > a:not(.nav-insurance-button):hover {
        color: #FFC400 !important;
    }


    /* =====================================================
       MOBILE STORM & INSURANCE BUTTON
       ===================================================== */

    .site-header nav.nav-links > a.nav-insurance-button {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;

        height: 50px !important;
        min-height: 50px !important;
        max-height: 50px !important;

        margin: 12px 0 5px 0 !important;

        padding: 0 18px !important;

        background: #FFC400 !important;
        background-color: #FFC400 !important;

        color: #071D33 !important;

        border: 2px solid #FFC400 !important;
        border-radius: 10px !important;

        font-size: 12px !important;
        font-weight: 900 !important;

        text-align: center !important;

        white-space: nowrap !important;

        box-shadow: 0 5px 18px rgba(255,196,0,.22) !important;
    }


    .site-header nav.nav-links > a.nav-insurance-button:hover {
        background: #FFC400 !important;
        background-color: #FFC400 !important;

        color: #071D33 !important;

        border-color: #FFC400 !important;

        transform: translateY(-2px) !important;

        box-shadow: 0 8px 22px rgba(255,196,0,.35) !important;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 680px) {

    .nav-wrap {
        min-height: 65px;
    }


    .logo img {
        width: 120px !important;
        max-width: 120px !important;
        max-height: 55px !important;
    }


    .nav-links {
        top: 75px !important;

        left: 12px !important;
        right: 12px !important;

        padding: 18px !important;
    }


    .site-header nav.nav-links > a.nav-insurance-button {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;

        height: 50px !important;
        min-height: 50px !important;

        border-radius: 10px !important;

        font-size: 11px !important;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

    .site-header nav.nav-links > a.nav-insurance-button {
        font-size: 10px !important;

        padding-left: 10px !important;
        padding-right: 10px !important;
    }

}

/* =========================================================
   FINAL HEADER + STORM / INSURANCE BUTTON
   KEEP THIS SECTION AT THE VERY BOTTOM OF CSS
   ========================================================= */


/* HEADER */

header.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;

    width: 100% !important;

    background: #000000 !important;
    background-color: #000000 !important;
    background-image: none !important;

    border-bottom: 1px solid rgba(255,255,255,.15) !important;

    color: #ffffff !important;
}


/* HEADER INNER */

header.site-header .nav-wrap {
    min-height: 100px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    gap: 30px !important;

    background: #000000 !important;
    background-color: #000000 !important;
}


/* LOGO */

header.site-header .logo {
    display: flex !important;
    align-items: center !important;

    background: transparent !important;

    flex-shrink: 0 !important;
}

header.site-header .logo img {
    display: block !important;

    width: 160px !important;
    max-width: 160px !important;

    height: auto !important;
    max-height: 70px !important;

    object-fit: contain !important;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

header.site-header .nav-links {
    display: flex !important;

    align-items: center !important;
    justify-content: flex-end !important;

    gap: 25px !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    flex: 1 1 auto !important;
}


/* NORMAL LINKS */

header.site-header .nav-links > a:not(.nav-insurance-button) {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    height: 46px !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    color: #ffffff !important;

    border: none !important;
    border-radius: 0 !important;

    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 800 !important;

    line-height: 1 !important;

    text-decoration: none !important;
    white-space: nowrap !important;

    box-shadow: none !important;
}

header.site-header .nav-links > a:not(.nav-insurance-button):hover {
    color: #FFC400 !important;
}


/* =========================================================
   STORM & INSURANCE REPAIRS BUTTON
   ========================================================= */

header.site-header .nav-links > a.nav-insurance-button,
header.site-header nav.nav-links a.nav-insurance-button {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    flex: 0 0 auto !important;

    width: 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;

    height: 50px !important;
    min-height: 50px !important;
    max-height: 50px !important;

    margin: 0 0 0 5px !important;

    padding: 0 20px !important;

    background: #FFC400 !important;
    background-color: #FFC400 !important;
    background-image: none !important;

    color: #071D33 !important;

    border: 2px solid #FFC400 !important;
    border-radius: 10px !important;

    font-family: inherit !important;
    font-size: 12px !important;
    font-weight: 900 !important;

    letter-spacing: .01em !important;
    line-height: 1 !important;

    text-align: center !important;
    text-decoration: none !important;

    white-space: nowrap !important;

    opacity: 1 !important;
    visibility: visible !important;

    box-shadow: 0 5px 18px rgba(255,196,0,.20) !important;

    transform: none !important;

    cursor: pointer !important;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background-color .2s ease !important;
}


/* HOVER */

header.site-header .nav-links > a.nav-insurance-button:hover,
header.site-header nav.nav-links a.nav-insurance-button:hover {
    background: #FFC400 !important;
    background-color: #FFC400 !important;

    color: #071D33 !important;

    border-color: #FFC400 !important;

    transform: translateY(-2px) !important;

    box-shadow: 0 9px 25px rgba(255,196,0,.38) !important;
}


/* FOCUS */

header.site-header .nav-links > a.nav-insurance-button:focus,
header.site-header .nav-links > a.nav-insurance-button:focus-visible {
    background: #FFC400 !important;
    background-color: #FFC400 !important;

    color: #071D33 !important;

    border-color: #FFC400 !important;

    outline: 3px solid rgba(255,196,0,.25) !important;
    outline-offset: 2px !important;
}


/* ACTIVE */

header.site-header .nav-links > a.nav-insurance-button:active {
    background: #FFC400 !important;
    background-color: #FFC400 !important;

    color: #071D33 !important;

    transform: translateY(0) !important;

    box-shadow: 0 4px 12px rgba(255,196,0,.25) !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 980px) {

    header.site-header .nav-toggle {
        display: block !important;

        position: relative !important;
        z-index: 10001 !important;

        padding: 8px !important;

        background: transparent !important;

        color: #ffffff !important;

        border: none !important;

        font-size: 30px !important;

        cursor: pointer !important;
    }


    header.site-header .nav-links {
        display: none !important;

        position: fixed !important;

        top: 105px !important;
        left: 14px !important;
        right: 14px !important;

        width: auto !important;

        flex-direction: column !important;
        align-items: stretch !important;

        gap: 0 !important;

        padding: 20px !important;

        background: #000000 !important;
        background-color: #000000 !important;

        border-radius: 18px !important;

        box-shadow: 0 18px 45px rgba(0,0,0,.35) !important;

        z-index: 10000 !important;
    }


    header.site-header .nav-links.open {
        display: flex !important;
    }


    /* MOBILE NORMAL LINKS */

    header.site-header .nav-links > a:not(.nav-insurance-button) {
        display: flex !important;

        width: 100% !important;

        min-height: 45px !important;

        height: auto !important;

        align-items: center !important;
        justify-content: flex-start !important;

        padding: 14px 10px !important;

        color: #ffffff !important;

        font-size: 13px !important;
    }


    /* MOBILE INSURANCE BUTTON */

    header.site-header .nav-links > a.nav-insurance-button,
    header.site-header nav.nav-links a.nav-insurance-button {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;

        height: 50px !important;
        min-height: 50px !important;
        max-height: 50px !important;

        margin: 12px 0 5px 0 !important;

        padding: 0 15px !important;

        background: #FFC400 !important;
        background-color: #FFC400 !important;

        color: #071D33 !important;

        border: 2px solid #FFC400 !important;
        border-radius: 10px !important;

        font-size: 11px !important;
        font-weight: 900 !important;

        white-space: nowrap !important;

        box-shadow: 0 5px 18px rgba(255,196,0,.20) !important;
    }

}


/* SMALL PHONES */

@media (max-width: 680px) {

    header.site-header .nav-wrap {
        min-height: 70px !important;
    }


    header.site-header .logo img {
        width: 125px !important;
        max-width: 125px !important;
        max-height: 55px !important;
    }


    header.site-header .nav-links {
        top: 78px !important;
    }


    header.site-header .nav-links > a.nav-insurance-button,
    header.site-header nav.nav-links a.nav-insurance-button {
        width: 100% !important;

        min-width: 0 !important;
        max-width: none !important;

        height: 50px !important;

        border-radius: 10px !important;

        font-size: 10px !important;
    }

}

/* =========================================================
   HOMEPAGE — GLOBAL LAYOUT
   ========================================================= */

/* ---------- GLOBAL BOX SIZING ---------- */

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}


/* ---------- PAGE WIDTH ---------- */

.container {
    width: 1120px !important;
    max-width: calc(100% - 48px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* ---------- MAIN PAGE ---------- */

body {
    margin: 0;
    padding: 0;
}

main {
    width: 100%;
    margin: 0;
    padding: 0;
}

main > section,
main > div {
    width: 100%;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.topbar {
    width: 100%;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    width: 100%;
}

.hero-content {
    width: 1120px !important;
    max-width: calc(100% - 48px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.trust-strip {
    width: 100%;
}

.trust-grid {
    width: 1120px !important;
    max-width: calc(100% - 48px) !important;
    margin-left: auto !important;
    margin-right: auto !important;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* =========================================================
   STANDARD SECTIONS
   ========================================================= */

.section {
    width: 100%;
}

.section > .container {
    width: 1120px !important;
    max-width: calc(100% - 48px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* =========================================================
   SECTION HEAD
   ========================================================= */

.section-head {
    width: 100%;
    max-width: 1120px;

    margin-left: auto !important;
    margin-right: auto !important;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.section-head > div {
    min-width: 0;
}

.section-head > p {
    max-width: 500px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-grid {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

.about-image {
    position: relative;
    min-width: 0;
}

.about-image img {
    display: block;
    width: 100%;
    height: auto;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    min-width: 0;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.gallery-item {
    min-width: 0;
    position: relative;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.process-card {
    min-width: 0;
}


/* =========================================================
   RESIDENTIAL / COMMERCIAL
   ========================================================= */

.scope-grid {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.scope-card {
    min-width: 0;
    overflow: hidden;
}

.scope-card img {
    display: block;
    width: 100%;
    height: auto;
}


/* =========================================================
   FEATURE
   ========================================================= */

.feature-grid {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 0;

    align-items: stretch;
}

.feature-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.feature-copy {
    min-width: 0;
}


/* =========================================================
   MINI GRID
   ========================================================= */

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.mini-item {
    min-width: 0;
}


/* =========================================================
   SERVICE AREA
   ========================================================= */

.area-grid {
    width: 100%;

    display: grid;
    grid-template-columns: 1.1fr .9fr;

    gap: 60px;

    align-items: center;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


/* =========================================================
   MAP CARD
   ========================================================= */

.map-card {
    min-width: 0;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-wrap {
    width: 100%;
    max-width: 900px !important;

    margin-left: auto !important;
    margin-right: auto !important;
}

.faq-item {
    width: 100%;
}


/* =========================================================
   CONTACT / QUOTE
   ========================================================= */

.contact-grid {
    width: 100%;

    display: grid;
    grid-template-columns: .9fr 1.1fr;

    gap: 60px;

    align-items: start;
}

.contact-card,
.quote-form {
    min-width: 0;
}


/* =========================================================
   FORM GRID
   ========================================================= */

.form-grid {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.form-group {
    min-width: 0;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    width: 100%;
}

.footer-grid {
    width: 100%;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 60px;
}

.footer-brand {
    min-width: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   IMAGES — PREVENT OVERFLOW
   ========================================================= */

img {
    max-width: 100%;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

    .container,
    .hero-content,
    .section > .container,
    .trust-grid {
        width: calc(100% - 36px) !important;
        max-width: 900px !important;
    }


    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }


    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .scope-grid {
        grid-template-columns: 1fr;
    }


    .feature-grid {
        grid-template-columns: 1fr;
    }


    .feature-image {
        height: auto;
    }


    .area-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

    .container,
    .hero-content,
    .section > .container,
    .trust-grid {
        width: calc(100% - 30px) !important;
        max-width: none !important;
    }


    .services-grid,
    .gallery-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }


    .about-grid,
    .scope-grid,
    .feature-grid,
    .area-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }


    .mini-grid {
        grid-template-columns: 1fr;
    }


    .form-grid {
        grid-template-columns: 1fr;
    }


    .form-group.full {
        grid-column: auto;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }


    .section-head {
        gap: 15px;
    }


    .actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }


    .actions .btn {
        width: 100%;
    }

}