/* =========================================================
   DFW EMERGENCY CLEANUP
   MAIN WEBSITE STYLES
   ========================================================= */

/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 155px;
}

body {
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: #172033;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(92%, 1180px);
    margin: 0 auto;
}


/* =========================================================
   24/7 EMERGENCY BAR
   ========================================================= */

.emergency-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 42px;

    background: #c62828;
    color: #ffffff;

    z-index: 6000;
}

.emergency-inner {
    width: min(92%, 1180px);
    height: 42px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.emergency-inner a {
    color: #ffffff;
    text-decoration: underline;
}


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

.site-header {
    position: fixed;
    top: 42px;
    left: 0;
    width: 100%;

    z-index: 5000;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   LOGO BAR
   ========================================================= */

.logo-bar {
    height: 82px;

    background: #092c50;
    color: #ffffff;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.logo-container {
    height: 82px;

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

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

.logo img {
    height: 62px;
    width: auto;
    max-width: 230px;
    object-fit: contain;
}


/* =========================================================
   HEADER EMERGENCY CALL
   ========================================================= */

.header-call {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    color: #ffffff;

    line-height: 1.2;
}

.header-call span {
    font-size: 12px;
    font-weight: 700;
    color: #cbd8e5;
    margin-bottom: 3px;
}

.header-call strong {
    font-size: 20px;
    font-weight: 900;
}


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

.navigation-bar {
    height: 54px;

    background: #061f38;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navigation-container {
    height: 54px;

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

.main-navigation {
    height: 54px;

    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: static;
    height: 54px;

    display: flex;
    align-items: center;
}

.nav-item > a {
    height: 54px;

    display: flex;
    align-items: center;
    gap: 7px;

    padding: 0 17px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.nav-item > a:hover {
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
}

.arrow {
    font-size: 13px;
    opacity: 0.8;
}


/* =========================================================
   FULL-WIDTH HORIZONTAL DROPDOWN
   ========================================================= */

.dropdown-menu {
    position: fixed;

    top: 178px;
    left: 0;

    width: 100%;

    min-height: 58px;

    background: #ffffff;

    border-top: 3px solid #e53935;
    border-bottom: 1px solid #d9e0e7;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.12);

    display: flex;

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

    gap: 4px;

    padding: 8px 20px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-5px);

    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0.18s ease;

    z-index: 5500;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}

.dropdown-menu a {
    display: inline-flex;

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

    padding: 9px 14px;

    color: #092c50;

    font-size: 13px;
    font-weight: 800;

    white-space: nowrap;

    border-radius: 5px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.dropdown-menu a:hover {
    background: #edf3f8;
    color: #c62828;
}

.area-dropdown {
    gap: 3px;
}

.area-dropdown a {
    padding-left: 12px;
    padding-right: 12px;
}


/* =========================================================
   NAV CALL BUTTON
   ========================================================= */

.nav-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 38px;

    padding: 0 18px;

    background: #e53935;
    color: #ffffff;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 900;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.nav-call:hover {
    background: #c62828;
    transform: translateY(-1px);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 40px;

    padding: 8px;

    border: none;
    border-radius: 6px;

    background: rgba(255, 255, 255, 0.1);

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: #ffffff;
}


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

.hero {
    position: relative;

    min-height: 760px;

    padding-top: 178px;

    display: flex;
    align-items: center;

    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            rgba(4, 28, 52, 0.94) 0%,
            rgba(5, 39, 70, 0.82) 48%,
            rgba(5, 39, 70, 0.48) 100%
        ),
        url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=2000&q=85");

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 25, 46, 0.3),
            transparent
        );

    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 850px;

    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;

    margin-bottom: 22px;

    padding: 8px 13px;

    background: rgba(229, 57, 53, 0.18);

    border: 1px solid rgba(255, 130, 130, 0.45);

    border-radius: 999px;

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

    letter-spacing: 0.7px;
}

.hero h1 {
    max-width: 900px;

    margin-bottom: 24px;

    font-size: clamp(42px, 6vw, 72px);

    line-height: 1.03;

    letter-spacing: -1.8px;
}

.hero p {
    max-width: 760px;

    margin-bottom: 34px;

    color: #e5edf5;

    font-size: 19px;
    line-height: 1.7;
}


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

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.button {
    display: inline-flex;

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

    padding: 15px 25px;

    border-radius: 7px;

    font-size: 16px;
    font-weight: 900;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.red-button {
    background: #e53935;
    color: #ffffff;

    box-shadow:
        0 10px 25px rgba(229, 57, 53, 0.28);
}

.red-button:hover {
    background: #c62828;
    transform: translateY(-2px);
}

.white-button {
    background: #ffffff;
    color: #092c50;
}

.white-button:hover {
    background: #edf3f8;
    transform: translateY(-2px);
}


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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;

    margin-top: 27px;

    color: #ffffff;

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


/* =========================================================
   TRUST BAR
   ========================================================= */

.trust-bar {
    padding: 0;

    background: #f3f6f9;

    border-bottom: 1px solid #e1e6eb;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    min-height: 100px;

    display: flex;
    flex-direction: column;

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

    padding: 15px;

    text-align: center;

    border-right: 1px solid #dfe5eb;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item strong {
    color: #092c50;

    font-size: 25px;
    line-height: 1.1;

    margin-bottom: 4px;
}

.trust-item span {
    color: #667085;

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


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
    padding: 90px 0;
}

.section-heading {
    max-width: 760px;

    margin: 0 auto 52px;

    text-align: center;
}

.section-eyebrow {
    margin-bottom: 10px;

    color: #e53935;

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

    letter-spacing: 1.2px;
}

.section-heading h2,
.contact-header h2 {
    color: #092c50;

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.12;

    margin-bottom: 15px;
}

.section-heading p,
.contact-header p {
    color: #667085;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   SERVICE GRID
   ========================================================= */

.service-grid {
    display: grid;

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

    gap: 24px;
}

.service-card {
    position: relative;

    padding: 32px;

    background: #ffffff;

    border: 1px solid #e1e7ed;

    border-radius: 14px;

    box-shadow:
        0 8px 28px rgba(16, 24, 40, 0.06);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #e53935;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.25s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: #d4dce4;

    box-shadow:
        0 18px 45px rgba(16, 24, 40, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    margin-bottom: 18px;

    font-size: 34px;
}

.service-card h3 {
    margin-bottom: 12px;

    color: #092c50;

    font-size: 21px;

    line-height: 1.25;
}

.service-card p {
    margin-bottom: 18px;

    color: #667085;

    font-size: 15px;

    line-height: 1.65;
}

.card-link {
    color: #c62828;

    font-size: 14px;
    font-weight: 900;
}


/* =========================================================
   EMERGENCY CTA
   ========================================================= */

.emergency-cta {
    padding: 65px 0;

    background:
        linear-gradient(
            110deg,
            #092c50,
            #0d477b
        );

    color: #ffffff;
}

.emergency-cta-inner {
    display: flex;

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

    gap: 40px;
}

.cta-eyebrow {
    color: #ffb2b2;

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

    letter-spacing: 1px;
}

.emergency-cta h2 {
    margin: 8px 0 10px;

    font-size: clamp(30px, 4vw, 43px);

    line-height: 1.1;
}

.emergency-cta p {
    max-width: 700px;

    color: #dce8f2;
}

.cta-phone {
    flex-shrink: 0;

    display: flex;
    flex-direction: column;

    align-items: center;

    padding: 17px 28px;

    background: #e53935;
    color: #ffffff;

    border-radius: 8px;

    font-size: 20px;
    font-weight: 900;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.18);
}

.cta-phone small {
    margin-bottom: 2px;

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


/* =========================================================
   SPECIALTY
   ========================================================= */

.specialty-section {
    background: #f5f7fa;
}

.specialty-grid {
    display: grid;

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

    gap: 20px;
}

.specialty-card {
    padding: 27px;

    background: #ffffff;

    border: 1px solid #e0e6ec;

    border-radius: 12px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.specialty-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 14px 35px rgba(16, 24, 40, 0.09);
}

.specialty-card h3 {
    color: #092c50;

    font-size: 19px;

    margin-bottom: 9px;
}

.specialty-card p {
    margin-bottom: 13px;

    color: #667085;

    font-size: 14px;

    line-height: 1.65;
}

.specialty-card span {
    color: #c62828;

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


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.how-section {
    background: #ffffff;
}

.steps {
    display: grid;

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

    gap: 45px;
}

.step {
    text-align: center;

    padding: 20px;
}

.step-number {
    width: 64px;
    height: 64px;

    margin: 0 auto 20px;

    display: flex;

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

    border-radius: 50%;

    background: #e53935;

    color: #ffffff;

    font-size: 20px;
    font-weight: 900;
}

.step h3 {
    color: #092c50;

    font-size: 20px;

    margin-bottom: 9px;
}

.step p {
    color: #667085;

    font-size: 15px;

    line-height: 1.65;
}


/* =========================================================
   SERVICE AREAS
   ========================================================= */

.areas-section {
    background: #f5f7fa;
}

.area-list {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;

    max-width: 1050px;

    margin: 0 auto;
}

.area-list a {
    padding: 9px 15px;

    background: #ffffff;

    border: 1px solid #dce3ea;

    border-radius: 999px;

    color: #344054;

    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.area-list a:hover {
    background: #092c50;
    color: #ffffff;

    transform: translateY(-2px);
}


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

.contact-section {
    padding: 90px 0;

    background: #ffffff;
}

.contact-header {
    max-width: 760px;

    margin: 0 auto 45px;

    text-align: center;
}

.contact-form {
    max-width: 820px;

    margin: 0 auto;

    padding: 38px;

    background: #f5f7fa;

    border: 1px solid #dfe5eb;

    border-radius: 16px;

    box-shadow:
        0 12px 40px rgba(16, 24, 40, 0.07);
}

.form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

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

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #172033;

    font-size: 14px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;

    padding: 14px 15px;

    background: #ffffff;

    border: 1px solid #ccd5df;

    border-radius: 8px;

    color: #172033;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #1261a0;

    box-shadow:
        0 0 0 3px rgba(18, 97, 160, 0.12);
}

textarea {
    min-height: 145px;

    resize: vertical;
}

.submit-button {
    width: 100%;

    margin-top: 22px;

    padding: 16px;

    border: none;
    border-radius: 8px;

    background: #e53935;
    color: #ffffff;

    font-size: 17px;
    font-weight: 900;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.submit-button:hover {
    background: #c62828;

    transform: translateY(-2px);
}

.form-note {
    margin-top: 14px;

    color: #667085;

    font-size: 13px;

    line-height: 1.55;

    text-align: center;
}


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

.site-footer {
    background: #071f39;
    color: #ffffff;
}

.footer-grid {
    display: grid;

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

    gap: 50px;

    padding: 65px 0;
}

.footer-logo {
    width: auto;

    /* LARGER FOOTER LOGO */
    height: 95px;

    max-width: 300px;

    margin-bottom: 18px;
}

.footer-grid p {
    max-width: 340px;

    color: #b9c7d5;

    font-size: 14px;
}

.footer-grid h3 {
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 16px;
}

.footer-grid > div > a:not(.footer-phone) {
    display: block;

    margin: 8px 0;

    color: #b9c7d5;

    font-size: 14px;
}

.footer-grid > div > a:hover {
    color: #ffffff;
}

.footer-phone {
    display: block;

    margin-bottom: 8px;

    color: #ffffff;

    font-size: 22px;
    font-weight: 900;
}

.footer-bottom {
    padding: 22px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    text-align: center;
}

.footer-bottom p {
    margin: 6px auto;

    color: #8fa3b7;

    font-size: 13px;
}

.footer-bottom .disclaimer {
    max-width: 850px;

    margin-top: 18px;
}


/* =========================================================
   MOBILE CALL BAR
   ========================================================= */

.mobile-call {
    display: none;

    position: fixed;

    bottom: 0;
    left: 0;
    right: 0;

    z-index: 9999;

    padding: 15px;

    background: #e53935;

    color: #ffffff;

    text-align: center;

    font-size: 16px;
    font-weight: 900;

    box-shadow:
        0 -5px 20px rgba(0, 0, 0, 0.15);
}


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

@media (max-width: 1000px) {

    .nav-item > a {
        padding-left: 11px;
        padding-right: 11px;
    }

    .nav-call {
        padding: 0 13px;
    }

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

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

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

@media (max-width: 700px) {

    html {
        scroll-padding-top: 112px;
    }

    body {
        padding-bottom: 56px;
    }

    .container {
        width: 90%;
    }


    /* =====================================================
       EMERGENCY BAR
       ===================================================== */

    .emergency-bar,
    .emergency-inner {
        height: 42px;
    }

    .emergency-inner {
        font-size: 11px;
    }


    /* =====================================================
       LOGO BAR
       ===================================================== */

    .logo-bar {
        height: 70px;
    }

    .logo-container {
        height: 70px;

        position: relative;
    }

    .logo img {
        height: 51px;
        max-width: 175px;
    }

    .header-call {
        display: none;
    }


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

    .navigation-bar {
        height: 0;

        border: none;

        position: relative;

        z-index: 5200;
    }

    .navigation-container {
        height: 0;

        position: relative;

        z-index: 5201;
    }


    /* =====================================================
       MOBILE MAIN MENU
       ===================================================== */

    .main-navigation {
        position: absolute;

        /*
           The logo bar is 70px tall.
           This places the menu immediately underneath it.
        */
        top: 70px;
        left: 0;

        width: 100%;

        height: auto;

        display: none;

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

        background: #061f38;

        box-shadow:
            0 12px 25px rgba(0, 0, 0, 0.22);

        z-index: 5300;
    }

    .main-navigation.mobile-open {
        display: flex;
    }


    /* =====================================================
       MOBILE NAV ITEMS
       ===================================================== */

    .nav-item {
        height: auto;

        display: block;
    }

    .nav-item > a {
        height: 52px;

        display: flex;

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

        padding: 0 20px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.08);
    }


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

    .dropdown-menu {
        position: static;

        width: 100%;

        min-height: auto;

        display: none;

        flex-direction: column;

        align-items: stretch;
        justify-content: flex-start;

        gap: 0;

        padding: 0;
        margin: 0;

        background: #ffffff;

        border-top: 2px solid #e53935;
        border-bottom: none;

        box-shadow: none;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: none;
    }


    /*
       Dropdown opens directly underneath
       the selected parent item.
    */

    .dropdown.mobile-dropdown-open .dropdown-menu {
        display: flex;
    }


    /*
       Prevent desktop hover behavior
       from interfering with mobile.
    */

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.mobile-dropdown-open:hover .dropdown-menu {
        display: flex;
    }


    /* =====================================================
       MOBILE DROPDOWN LINKS
       ===================================================== */

    .dropdown-menu a {
        display: flex;

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

        width: 100%;

        min-height: 44px;

        padding: 10px 20px;

        background: #ffffff;

        color: #092c50;

        border-radius: 0;

        border-bottom: 1px solid #e5e7eb;

        font-size: 14px;
        font-weight: 800;
    }

    .dropdown-menu a:hover {
        background: #edf3f8;

        color: #c62828;
    }


    /* =====================================================
       HAMBURGER BUTTON
       ===================================================== */

    .mobile-menu-button {
        display: block;

        position: absolute;

        /*
           Keeps the hamburger completely inside
           the 70px logo bar.
        */
        top: 15px;
        right: 5%;

        width: 44px;
        height: 40px;

        padding: 8px;

        border: none;

        border-radius: 6px;

        background:
            rgba(255, 255, 255, 0.12);

        cursor: pointer;

        z-index: 5600;
    }

    .mobile-menu-button span {
        display: block;

        width: 100%;
        height: 2px;

        margin: 5px 0;

        background: #ffffff;
    }

    .nav-call {
        display: none;
    }


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

    .hero {
        min-height: 680px;

        padding-top: 112px;

        background-position: 58% center;
    }

    .hero-content {
        padding: 55px 0;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 52px);

        letter-spacing: -1px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;

        gap: 8px;
    }


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

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

    .trust-item {
        min-height: 82px;
    }

    .trust-item:nth-child(2) {
        border-right: none;
    }

    .trust-item:nth-child(-n+2) {
        border-bottom:
            1px solid #dfe5eb;
    }


    /* =====================================================
       GRIDS
       ===================================================== */

    .service-grid,
    .specialty-grid,
    .steps {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       CTA
       ===================================================== */

    .emergency-cta-inner {
        flex-direction: column;

        text-align: center;
    }

    .cta-phone {
        width: 100%;
    }


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

    .contact-form {
        padding: 24px 18px;
    }

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

        gap: 16px;
    }

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


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

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

        gap: 30px;

        padding: 50px 0;
    }

    .footer-grid > div {
        text-align: center;
    }

    .footer-grid p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }


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

    .mobile-call {
        display: block;
    }
}

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

@media (max-width: 420px) {

    .emergency-inner {
        font-size: 10px;
    }

    .logo img {
        height: 46px;
        max-width: 155px;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .section-heading h2,
    .contact-header h2 {
        font-size: 31px;
    }

    .trust-item strong {
        font-size: 21px;
    }

    .trust-item span {
        font-size: 11px;
    }

    /*
       Slightly reduce footer logo on very small phones
       while keeping it substantially larger than before.
    */
    .footer-logo {
        height: 75px;
        max-width: 240px;
    }
}
