/* ======================================================
   HEADER
====================================================== */

.site-header {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.site-logo {
    height: 78px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 15px;
}

.logo-top {
    color: #0b1d3f;
    font-size: 30px;
    font-weight: 800;
}

.logo-bottom {
    color: #ff8c00;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .04em;
}

@media (max-width: 768px) {
    .site-logo {
        height: 58px;
    }

    .logo-top {
        font-size: 22px;
    }

    .logo-bottom {
        font-size: 13px;
    }
}

/* ======================================================
   DESKTOP NAVIGATION
====================================================== */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.desktop-menu a {
    color: #023059;
    font-weight: 600;
    text-decoration: none;
}

.desktop-menu a:hover {
    color: #ff8c00;
}

.phone-link {
    text-decoration: none;
    color: #023059;
    font-weight: 700;
}

.phone-link:hover {
    color: #ff8c00;
}

.quote-button {
    background: #ff8c00;
    color: white;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
}

.quote-button:hover {
    background: #df5a00;
}


/* ======================================================
   MOBILE
====================================================== */

.menu-toggle {

    display: none;

    font-size: 34px;

    background: none;

    border: none;

    cursor: pointer;

    color: #023059;

}

.mobile-nav {

    display: none;

}

@media (max-width: 900px) {

    .desktop-nav {

        display: none;

    }

    .menu-toggle {

        display: block;

    }

    .site-logo {

        height: 68px;

    }

}

.mobile-nav.active {

    display: flex;

    flex-direction: column;

    gap: 18px;

    background: white;

    padding: 24px;

    border-top: 1px solid #ddd;

}

.mobile-menu {

    list-style: none;

    padding: 0;

    margin: 0;

}

.mobile-menu li {

    margin-bottom: 18px;

}

.mobile-menu a {

    color: #023059;

    text-decoration: none;

    font-size: 20px;

    font-weight: 700;

}

.mobile-phone,
.mobile-quote {

    text-decoration: none;

    font-weight: 700;

}

.mobile-quote {

    background: #ff8c00;

    color: white;

    text-align: center;

    padding: 14px;

    border-radius: 10px;

}
/* ==========================================
   MOBILE IMPROVEMENTS
========================================== */

@media (max-width: 768px) {

    /* Consistent spacing */
    section {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    /* Headings */
    h1 {
        font-size: 2.25rem !important;
        line-height: 1.2;
    }

    h2 {
        font-size: 2rem !important;
        line-height: 1.25;
    }

    /* Hero text */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Service cards */
    .grid > div {
        margin-left: auto;
        margin-right: auto;
    }

    /* Brand badges */
    .section-padding span {
        width: 100%;
        text-align: center;
    }

    /* Buttons */
    .bg-accent,
    .border-accent {
        width: 100%;
        justify-content: center;
    }

}