/* =========================================================
   GLOBAL
========================================================= */

:root {

    --navy: #0b2745;

    --navy-dark: #061c33;

    --green: #079b58;

    --green-light: #14bb6b;

    --blue: #217cff;

    --text: #10233f;

    --muted: #617086;

    --border: #dce4ec;

}


* {

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: #eef2f5;

}


button,
input,
select,
textarea {

    font: inherit;

}



/* =========================================================
   HEADER
========================================================= */

.site-header {

    height: 72px;

    background: white;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 30px;

    position: relative;

    z-index: 20;

    box-shadow:
        0 2px 12px
        rgba(0,0,0,.08);

}


.brand-area {

    display: flex;

    align-items: center;

    gap: 25px;

}


.logo {

    background:
        linear-gradient(
            140deg,
            #0b2745,
            #071c34
        );

    color: white;

    border-radius: 6px;

    padding: 9px 18px;

    min-width: 160px;

    text-align: center;

    font-size: 12px;

    font-weight: 800;

}


.logo-icon {

    display: block;

    font-size: 21px;

    margin-bottom: 2px;

}


.tagline {

    padding-left: 24px;

    border-left:
        1px solid #66768b;

    font-size: 15px;

}


.main-nav {

    display: flex;

    align-items: center;

    gap: 26px;

}


.main-nav a {

    color: var(--text);

    text-decoration: none;

    font-weight: 700;

    font-size: 14px;

}


.quote-button {

    color: white !important;

    background:
        linear-gradient(
            180deg,
            #13ae64,
            #078f52
        );

    padding:
        13px 25px;

    border-radius: 10px;

}



/* =========================================================
   BROWNSTONE HERO
========================================================= */

.hero {

    min-height: 440px;

    background:

        linear-gradient(
            rgba(7,24,37,.27),
            rgba(7,24,37,.38)
        ),

        url("brownstone-bg.jpg");

    background-size:
        cover;

    background-position:
        center;

    display: flex;

    justify-content: center;

    padding-top: 25px;

}


.hero-content {

    text-align: center;

    color: white;

    text-shadow:
        0 3px 14px
        rgba(0,0,0,.55);

}


.hero-content h1 {

    font-size: 62px;

    line-height: 1;

    margin: 0;

}


.hero-content p {

    margin:
        10px 0 20px;

    font-size: 20px;

}


.hero-links {

    display: flex;

    justify-content: center;

    gap: 18px;

}


.hero-links a {

    min-width: 142px;

    padding:
        11px 25px;

    color: white;

    text-decoration: none;

    border:
        1px solid
        rgba(255,255,255,.85);

    border-radius: 8px;

    background:
        rgba(5,20,30,.18);

}



/* =========================================================
   QUICK FIXES
========================================================= */

.quick-container {

    width:
        min(1135px,95%);

    margin:
        -220px auto 55px;

    position: relative;

    z-index: 10;

}


.quick-panel {

    background: white;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 25px 55px
        rgba(8,30,50,.28);

}



/* =========================================================
   QUICK HEADER
========================================================= */

.quick-header {

    padding:
        27px 35px 23px;

    position: relative;

    background:

        linear-gradient(
            105deg,
            white 0%,
            #f8fbfa 40%,
            #6dbf91 68%,
            #0c6148 100%
        );

}


.quick-small {

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .07em;

}


.quick-title {

    margin:
        5px 0 0;

    font-size: 60px;

    line-height: .95;

    font-weight: 900;

}


.quick-title .quick {

    color: var(--navy);

}


.quick-title .fixes {

    color: var(--green);

}


.quick-subtitle {

    margin-top: 9px;

    font-size: 20px;

    font-weight: 700;

}


.quick-message {

    position: absolute;

    right: 58px;

    top: 57px;

    color: white;

    text-align: center;

    line-height: 1.5;

    font-weight: 700;

}


.quick-message small {

    font-weight: 400;

}



/* =========================================================
   SEARCH
========================================================= */

.search-area {

    display: flex;

    padding:
        0 35px 18px;

}


.search-area input {

    flex: 1;

    height: 54px;

    border:
        1px solid #ccd6e0;

    border-right: none;

    border-radius:
        11px 0 0 11px;

    padding:
        0 18px;

    font-size: 15px;

    outline: none;

}


.search-area input:focus {

    border-color:
        var(--green);

}


.search-area button {

    width: 155px;

    border: none;

    color: white;

    background:
        linear-gradient(
            180deg,
            #16bd6d,
            #079b58
        );

    border-radius:
        0 11px 11px 0;

    font-weight: 800;

    cursor: pointer;

}



/* =========================================================
   SERVICES
========================================================= */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 14px;

    padding:
        0 35px 22px;

}


.service-card {

    min-height: 160px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    position: relative;

    border:
        1px solid #e1e7ed;

    border-radius: 18px;

    background: #f5fbff;

    cursor: pointer;

    transition:
        transform .2s ease,
        box-shadow .2s ease;

}


.service-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 12px 25px
        rgba(10,36,66,.13);

}


.service-card:nth-child(2) {

    background:
        #fffaf0;

}


.service-card:nth-child(3) {

    background:
        #f2fbff;

}


.service-card:nth-child(4) {

    background:
        #f9f6ff;

}


.service-card:nth-child(5) {

    background:
        #f2fff6;

}


.service-card:nth-child(6) {

    background:
        #fff5e9;

}


.service-card:nth-child(7) {

    background:
        #fff6f1;

}


.service-card:nth-child(8) {

    background:
        #f1fff6;

}


.service-icon {

    font-size: 43px;

}


.service-card h3 {

    font-size: 20px;

    margin:
        8px 0 5px;

}


.service-card p {

    margin: 0;

    color: #516279;

    font-size: 14px;

    line-height: 1.35;

}


.card-arrow {

    position: absolute;

    right: 20px;

    top: 50%;

    transform:
        translateY(-50%);

    font-size: 30px;

}



/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {

    margin:
        0 35px;

    padding:
        20px 0 24px;

    border-top:
        1px solid var(--border);

    display: grid;

    grid-template-columns:
        1fr 1fr 1fr auto;

    align-items: center;

    gap: 18px;

}


.trust-item {

    display: flex;

    align-items: center;

    gap: 10px;

}


.trust-icon {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: #edf9f2;

    color: var(--green);

    font-size: 23px;

    font-weight: 900;

}


.trust-item strong {

    display: block;

    font-size: 14px;

}


.trust-item span {

    display: block;

    color: #66778d;

    font-size: 12px;

    margin-top: 2px;

}


.help-button {

    text-decoration: none;

    color: white;

    background:
        linear-gradient(
            180deg,
            #16ba6a,
            #078e52
        );

    border-radius:
        999px;

    padding:
        15px 26px;

    font-weight: 800;

}



/* =========================================================
   TECH OVERLAY
========================================================= */

.tech-overlay {

    position: fixed;

    inset: 0;

    padding: 20px;

    background:
        rgba(4,19,36,.66);

    backdrop-filter:
        blur(7px);

    -webkit-backdrop-filter:
        blur(7px);

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 200;

}


.tech-overlay.show {

    display: flex;

}


.tech-modal {

    width:
        min(1120px,96vw);

    max-height:
        94vh;

    overflow-y: auto;

    background: white;

    border-radius: 24px;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.38);

}



/* =========================================================
   TECH MODAL HEADER
========================================================= */

.tech-modal-header {

    padding:
        28px 34px;

    position: relative;

    border-bottom:
        1px solid #e2e8ef;

    background:
        linear-gradient(
            110deg,
            #fff 0%,
            #f5fbf8 60%,
            #ddf4e8 100%
        );

}


.tech-modal-header small {

    color:
        var(--green);

    font-weight: 800;

    letter-spacing:
        .07em;

}


.tech-modal-header h2 {

    margin:
        5px 0;

    font-size: 35px;

}


.tech-modal-header p {

    margin: 0;

    color:
        var(--muted);

}


.tech-close {

    position: absolute;

    right: 20px;

    top: 20px;

    width: 43px;

    height: 43px;

    border-radius: 50%;

    border: none;

    background:
        var(--navy);

    color: white;

    font-size: 27px;

    cursor: pointer;

}



/* =========================================================
   CUSTOMER REQUEST FORM
========================================================= */

.tech-form-wrap {

    padding:
        30px 34px 35px;

}


.selected-service-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    background:
        #effaf4;

    border:
        1px solid #ccebd8;

    border-radius: 14px;

    padding:
        14px 17px;

    margin-bottom: 22px;

}


.selected-service-box span {

    display: block;

    color:
        var(--muted);

    font-size: 12px;

}


.selected-service-box strong {

    display: block;

    color:
        var(--green);

    font-size: 20px;

    margin-top: 3px;

}


.selected-check {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    color: white;

    background:
        var(--green);

    border-radius: 50%;

    font-weight: 900;

}


.tech-form-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

}


.tech-field {

    display: flex;

    flex-direction: column;

    gap: 7px;

}


.tech-field.full {

    grid-column:
        1 / -1;

}


.tech-field label {

    font-size: 14px;

    font-weight: 800;

}


.tech-field input,
.tech-field select,
.tech-field textarea {

    width: 100%;

    border:
        1px solid #ccd6e2;

    border-radius: 11px;

    padding:
        14px 15px;

    background: white;

    outline: none;

}


.tech-field textarea {

    min-height: 125px;

    resize: vertical;

}


.tech-field input:focus,
.tech-field select:focus,
.tech-field textarea:focus {

    border-color:
        var(--green);

    box-shadow:
        0 0 0 3px
        rgba(7,155,88,.12);

}


.find-tech-button {

    width: 100%;

    margin-top: 22px;

    border: none;

    border-radius: 12px;

    padding: 16px;

    color: white;

    background:
        linear-gradient(
            180deg,
            #15bb6a,
            #078f52
        );

    font-size: 17px;

    font-weight: 800;

    cursor: pointer;

}



/* =========================================================
   LOCATING / SPINNER
========================================================= */

.locating-screen {

    display: none;

    text-align: center;

    padding:
        55px 30px 65px;

}


.locating-screen.show {

    display: block;

}


.radar {

    width: 145px;

    height: 145px;

    position: relative;

    margin:
        0 auto 25px;

    display: grid;

    place-items: center;

}


.radar-ring {

    position: absolute;

    border-radius: 50%;

    border:
        2px solid
        rgba(7,155,88,.28);

    animation:
        radarPulse 2s
        infinite ease-out;

}


.radar-ring-one {

    width: 90px;

    height: 90px;

}


.radar-ring-two {

    width: 130px;

    height: 130px;

    animation-delay:
        .5s;

}


.locator {

    position: absolute;

    width: 105px;

    height: 105px;

    border-radius: 50%;

    border:
        8px solid
        #e4f6ec;

    border-top-color:
        var(--green);

    animation:
        spinLocator
        .9s linear infinite;

}


.location-pin {

    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    color: white;

    background:
        var(--green);

    border-radius: 50%;

    font-size: 23px;

    position: relative;

    z-index: 2;

}


@keyframes spinLocator {

    to {

        transform:
            rotate(360deg);

    }

}


@keyframes radarPulse {

    0% {

        transform:
            scale(.6);

        opacity: 1;

    }

    100% {

        transform:
            scale(1.2);

        opacity: 0;

    }

}


.locating-screen h2 {

    margin:
        0 0 7px;

    font-size: 30px;

}


.locating-screen > p {

    color:
        var(--muted);

}


.locating-steps {

    width:
        min(470px,100%);

    margin:
        22px auto 0;

    text-align: left;

    background:
        #f7fafc;

    border-radius: 15px;

    padding:
        14px 20px;

}


.locating-step {

    padding:
        11px 0;

    color:
        #627288;

    border-bottom:
        1px solid #e5eaf0;

}


.locating-step:last-child {

    border-bottom: none;

}


.locating-step.active {

    color:
        var(--green);

    font-weight: 700;

}



/* =========================================================
   RESULTS
========================================================= */

.tech-results {

    display: none;

    padding:
        26px 30px 35px;

    background:
        #f8fafc;

}


.tech-results.show {

    display: block;

}


.results-heading {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 20px;

}


.results-heading small {

    color:
        var(--green);

    font-weight: 800;

}


.results-heading h2 {

    margin:
        4px 0;

    font-size: 34px;

}


.results-heading p {

    margin: 0;

    color:
        var(--muted);

}


.results-tagline {

    color:
        var(--navy);

    font-size: 22px;

    font-style: italic;

    margin-top: 18px;

}



/* =========================================================
   BEST FIT TECHNICIAN
========================================================= */

.best-fit-card {

    display: grid;

    grid-template-columns:
        180px 1fr auto;

    align-items: center;

    gap: 22px;

    background: white;

    border:
        2px solid
        var(--green);

    border-radius: 20px;

    padding: 20px;

    box-shadow:
        0 12px 28px
        rgba(7,155,88,.10);

}


.best-photo {

    height: 180px;

    background:
        linear-gradient(
            135deg,
            #e7f2f6,
            #f4f8fa
        );

    border-radius: 16px;

    display: grid;

    place-items: center;

}


.tech-avatar {

    font-size: 83px;

}


.best-fit-label {

    display:
        inline-block;

    color: white;

    background:
        var(--green);

    padding:
        6px 11px;

    border-radius: 999px;

    font-size: 11px;

    font-weight: 800;

}


.best-fit-info h3 {

    margin:
        8px 0 2px;

    font-size: 30px;

}


.best-specialty {

    color:
        var(--blue);

    font-weight: 800;

}


.best-fit-info ul {

    margin:
        11px 0 0;

    padding-left: 20px;

    color:
        #4d6179;

    line-height: 1.65;

}


.available-badge {

    display:
        inline-flex;

    align-items:
        center;

    gap: 7px;

    border-radius:
        999px;

    background:
        #e7faef;

    color:
        var(--green);

    padding:
        8px 12px;

    font-size: 13px;

    font-weight: 800;

}


.available-badge span {

    width: 9px;

    height: 9px;

    background:
        #11c86e;

    border-radius: 50%;

}


.tech-action-row {

    display: flex;

    gap: 9px;

    margin-top: 14px;

}


.call-button,
.text-button {

    background:
        white;

    border-radius: 10px;

    padding:
        11px 16px;

    font-weight: 800;

    cursor: pointer;

}


.call-button {

    color:
        var(--blue);

    border:
        2px solid
        var(--blue);

}


.text-button {

    color:
        var(--green);

    border:
        2px solid
        var(--green);

}



/* =========================================================
   TEAM
========================================================= */

.partners-heading {

    margin:
        28px 0 13px;

}


.partners-heading h3 {

    margin: 0;

    font-size: 25px;

}


.partners-heading p {

    color:
        var(--muted);

    margin:
        3px 0 0;

}


.partner-grid {

    display: grid;

    gap: 13px;

}


.partner-card {

    display: grid;

    grid-template-columns:
        150px 1fr auto;

    gap: 20px;

    align-items: center;

    background:
        white;

    border:
        1px solid #e2e8ef;

    border-radius: 17px;

    padding: 14px;

    box-shadow:
        0 7px 20px
        rgba(14,40,65,.06);

}


.partner-avatar {

    height: 130px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    background:
        #edf4f7;

    font-size: 62px;

}


.partner-info h4 {

    margin: 0;

    font-size: 25px;

}


.partner-specialty {

    color:
        var(--blue);

    font-weight: 800;

    margin-top: 2px;

}


.partner-info ul {

    padding-left: 20px;

    margin:
        9px 0 0;

    line-height: 1.5;

}


.partner-action-area {

    min-width: 220px;

}


.partner-buttons {

    display: flex;

    gap: 8px;

    margin-top: 12px;

}


.new-search-button {

    width: 100%;

    margin-top: 18px;

    padding: 14px;

    border: none;

    border-radius: 11px;

    background:
        var(--navy);

    color:
        white;

    font-weight: 800;

    cursor: pointer;

}



/* =========================================================
   OUR WORK PULL
========================================================= */

.work-pull {

    position: fixed;

    right: 0;

    top: 145px;

    z-index: 60;

    padding:
        15px 20px;

    border: none;

    border-radius:
        15px 0 0 15px;

    color: white;

    background:
        var(--navy);

    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.28);

}



/* =========================================================
   WORK DRAWER
========================================================= */

.drawer-overlay {

    position: fixed;

    inset: 0;

    z-index: 70;

    background:
        rgba(4,20,38,.48);

    opacity: 0;

    visibility: hidden;

    transition:
        .3s;

}


.drawer-overlay.show {

    opacity: 1;

    visibility: visible;

}


.work-drawer {

    position: fixed;

    right:
        -460px;

    top: 0;

    width:
        min(430px,94vw);

    height:
        100vh;

    z-index: 80;

    overflow-y: auto;

    background:
        white;

    transition:
        right .35s ease;

    box-shadow:
        -15px 0 45px
        rgba(0,0,0,.3);

}


.work-drawer.open {

    right: 0;

}


.drawer-header {

    padding:
        27px 22px;

    position: relative;

    color: white;

    background:
        var(--navy);

}


.drawer-header h2 {

    margin: 0;

    font-size: 35px;

}


.drawer-header p {

    margin:
        4px 0 0;

    color:
        #d7e4ef;

}


.drawer-close {

    position: absolute;

    right: 18px;

    top: 17px;

    color:
        white;

    background:
        transparent;

    border:
        none;

    font-size: 34px;

    cursor: pointer;

}


.work-filters {

    padding:
        16px;

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

}


.filter {

    border: none;

    padding:
        8px 12px;

    border-radius:
        999px;

    background:
        #edf2f7;

    color:
        var(--text);

    font-weight: 700;

    cursor: pointer;

}


.filter.active {

    background:
        var(--green);

    color:
        white;

}


.project-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 11px;

    padding:
        0 16px 20px;

}


.project-card {

    border:
        1px solid #dae3eb;

    border-radius: 13px;

    overflow: hidden;

    background:
        white;

}


.project-image {

    height: 125px;

    display: grid;

    place-items: center;

    background:
        #edf3f6;

    font-size: 45px;

}


.project-card h4 {

    margin: 0;

    padding:
        10px;

    font-size: 13px;

}


.view-more {

    margin:
        0 16px 25px;

    width:
        calc(100% - 32px);

    padding:
        14px;

    border: none;

    border-radius: 10px;

    background:
        var(--navy);

    color:
        white;

    font-weight: 800;

    cursor: pointer;

}



/* =========================================================
   FOOTER
========================================================= */

footer {

    padding:
        28px 45px;

    display: flex;

    justify-content: space-between;

    color:
        white;

    background:
        var(--navy);

}



/* =========================================================
   TABLET
========================================================= */

@media
(max-width: 900px) {


    .main-nav {

        display: none;

    }


    .tagline {

        display: none;

    }


    .hero-content h1 {

        font-size: 46px;

    }


    .services-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .trust-bar {

        grid-template-columns:
            1fr 1fr;

    }


    .quick-message {

        display: none;

    }


    .best-fit-card {

        grid-template-columns:
            150px 1fr;

    }


    .best-actions {

        grid-column:
            1 / -1;

    }


    .partner-card {

        grid-template-columns:
            120px 1fr;

    }


    .partner-action-area {

        grid-column:
            1 / -1;

    }

}



/* =========================================================
   MOBILE
========================================================= */

@media
(max-width: 560px) {


    .site-header {

        padding:
            0 14px;

    }


    .hero {

        min-height:
            390px;

    }


    .hero-content h1 {

        font-size:
            42px;

    }


    .hero-links {

        flex-wrap:
            wrap;

        gap:
            8px;

    }


    .hero-links a {

        min-width:
            120px;

        padding:
            9px 14px;

    }


    .quick-container {

        margin-top:
            -190px;

    }


    .quick-header {

        padding:
            23px 20px;

    }


    .quick-title {

        font-size:
            43px;

    }


    .search-area {

        padding:
            0 20px 15px;

    }


    .search-area button {

        width:
            100px;

    }


    .services-grid {

        grid-template-columns:
            1fr;

        padding:
            0 20px 20px;

    }


    .trust-bar {

        grid-template-columns:
            1fr;

        margin:
            0 20px;

    }


    .tech-overlay {

        padding:
            8px;

    }


    .tech-modal {

        border-radius:
            17px;

    }


    .tech-modal-header {

        padding:
            24px 20px;

    }


    .tech-modal-header h2 {

        font-size:
            26px;

        padding-right:
            40px;

    }


    .tech-form-wrap {

        padding:
            22px 20px;

    }


    .tech-form-grid {

        grid-template-columns:
            1fr;

    }


    .tech-field.full {

        grid-column:
            auto;

    }


    .results-heading {

        display:
            block;

    }


    .results-tagline {

        display:
            none;

    }


    .best-fit-card {

        grid-template-columns:
            1fr;

        text-align:
            center;

    }


    .best-photo {

        width:
            165px;

        margin:
            auto;

    }


    .best-fit-info ul {

        text-align:
            left;

    }


    .tech-action-row {

        justify-content:
            center;

    }


    .partner-card {

        grid-template-columns:
            1fr;

        text-align:
            center;

    }


    .partner-avatar {

        width:
            150px;

        margin:
            auto;

    }


    .partner-info ul {

        text-align:
            left;

    }


    .partner-buttons {

        justify-content:
            center;

    }


    footer {

        display:
            block;

        text-align:
            center;

        line-height:
            2;

    }

}
/* =========================================================
   CONTACT / PROJECT REQUEST MODAL
========================================================= */

.contact-modal {

    position: fixed;
    inset: 0;
    z-index: 5000;

    display: grid;
    place-items: center;

    padding: 24px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .25s ease,
        visibility .25s ease;

}


.contact-modal.open {

    opacity: 1;
    visibility: visible;

}


.contact-modal-backdrop {

    position: absolute;
    inset: 0;

    background:
        rgba(3, 15, 27, .78);

    backdrop-filter:
        blur(5px);

}


.contact-modal-card {

    position: relative;
    z-index: 1;

    width:
        min(920px, 100%);

    max-height:
        calc(100vh - 48px);

    overflow-y: auto;

    padding: 34px;

    border-radius: 24px;

    background: #ffffff;
    color: var(--navy-dark);

    box-shadow:
        0 28px 80px
        rgba(0, 0, 0, .34);

    transform:
        translateY(18px)
        scale(.98);

    transition:
        transform .25s ease;

}


.contact-modal.open
.contact-modal-card {

    transform:
        translateY(0)
        scale(1);

}


.contact-modal-close {

    position: absolute;

    top: 14px;
    right: 18px;

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 50%;

    background: #edf2f6;
    color: var(--navy-dark);

    font-size: 30px;
    line-height: 1;

    cursor: pointer;

}


.contact-modal-heading {

    padding-right: 42px;
    text-align: center;

}


.contact-modal-heading span {

    color: var(--green);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

}


.contact-modal-heading h2 {

    margin:
        7px 0 5px;

    font-size:
        clamp(30px, 4vw, 46px);

    line-height: 1.08;

}


.contact-modal-heading p {

    margin: 0;
    color: #647487;

}


.contact-quick-actions {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin:
        25px 0;

}


.contact-quick-actions a {

    padding:
        14px 12px;

    border-radius: 10px;

    background:
        var(--navy-dark);

    color: #ffffff;

    font-weight: 800;
    text-align: center;
    text-decoration: none;

    transition:
        transform .2s ease,
        background .2s ease;

}


.contact-quick-actions a:hover {

    background:
        var(--green);

    transform:
        translateY(-2px);

}


.project-request-form {

    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    gap: 18px;

}


.project-form-fields {

    display: grid;
    gap: 12px;

}


.project-form-fields label {

    display: grid;
    gap: 6px;

    color:
        var(--navy-dark);

    font-size: 13px;
    font-weight: 800;

}


.project-form-fields input,
.project-form-fields textarea {

    width: 100%;

    padding:
        13px 14px;

    border:
        1px solid #ccd6df;

    border-radius: 9px;

    background: #f9fbfc;
    color: #10263d;

    font: inherit;

    resize: vertical;

}


.project-form-fields input:focus,
.project-form-fields textarea:focus {

    outline:
        3px solid
        rgba(7, 155, 88, .16);

    border-color:
        var(--green);

}


.project-photo-upload {

    display: flex;

    min-height: 100%;

    padding: 24px;

    border:
        2px dashed #bdcad5;

    border-radius: 14px;

    background: #f8fafb;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    text-align: center;

    cursor: pointer;

}


.project-photo-upload input {

    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

}


.upload-icon {

    display: grid;

    width: 58px;
    height: 58px;

    margin-bottom: 10px;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(7, 155, 88, .12);

    color:
        var(--green);

    font-size: 34px;
    font-weight: 900;

}


.project-photo-upload small {

    margin-top: 5px;
    color: #718092;

}


.selected-file-name {

    margin-top: 15px;

    padding:
        8px 13px;

    border-radius: 8px;

    background:
        var(--navy);

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

}


.project-request-submit {

    grid-column:
        1 / -1;

    padding: 16px;

    border: 0;
    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--green),
            var(--green-light)
        );

    color: #ffffff;

    font-size: 16px;
    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 10px 25px
        rgba(7, 155, 88, .22);

}


@media (max-width: 720px) {

    .contact-modal {

        padding: 10px;

    }


    .contact-modal-card {

        max-height:
            calc(100vh - 20px);

        padding:
            28px 18px 20px;

        border-radius: 18px;

    }


    .contact-quick-actions,
    .project-request-form {

        grid-template-columns:
            1fr;

    }


    .project-photo-upload {

        min-height: 190px;

    }


    .project-request-submit {

        grid-column: auto;

    }

}
/* =========================================================
   FIND A TECH DROPDOWN
========================================================= */

.find-tech-dropdown {

    position: relative;

}


.find-tech-button {

    width: 100%;
    height: 100%;

    padding:
        14px 12px;

    border: 0;
    border-radius: 10px;

    background:
        var(--navy-dark);

    color: #ffffff;

    font: inherit;
    font-weight: 800;

    cursor: pointer;

    transition:
        background .2s ease;

}


.find-tech-button:hover,
.find-tech-button.active {

    background:
        var(--green);

}


.find-tech-button span {

    margin-left: 7px;

}


.find-tech-menu {

    position: absolute;

    top:
        calc(100% + 8px);

    right: 0;

    z-index: 20;

    display: none;

    width: 100%;
    min-width: 210px;

    padding: 8px;

    border:
        1px solid #dbe3e9;

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 16px 35px
        rgba(4, 20, 35, .22);

}


.find-tech-menu.open {

    display: grid;

}


.find-tech-menu button {

    width: 100%;

    padding:
        11px 13px;

    border: 0;
    border-radius: 8px;

    background: transparent;
    color: var(--navy-dark);

    font: inherit;
    font-weight: 750;

    text-align: left;

    cursor: pointer;

}


.find-tech-menu button:hover {

    background:
        rgba(7, 155, 88, .12);

    color:
        var(--green);

}


@media (max-width: 720px) {

    .find-tech-menu {

        position: static;

        margin-top: 8px;

    }

}
/* Align Find a Tech with Call and Text */

.contact-quick-actions
.find-tech-button {

    margin-top: 0;
    height: 100%;

}


.contact-quick-actions
.find-tech-dropdown {

    display: flex;
    align-items: stretch;

}
/* =========================================================
   MOBILE POPUP AND DRAWER FIXES
   Add at the very bottom of style.css
========================================================= */

@media (max-width: 720px) {

    /* Prevent the page behind a popup from moving */

    body {

        overflow-x: hidden;

    }


    /* =============================================
       OUR WORK DRAWER
    ============================================= */

    .work-drawer {

        top: 0;
        right: -100%;

        width: 100%;
        max-width: 100%;

        height: 100vh;
        height: 100dvh;

        overflow-y: auto;
        overscroll-behavior: contain;

        padding-bottom:
            env(safe-area-inset-bottom);

    }


    .work-drawer.open {

        right: 0;

    }


    .drawer-header {

        position: sticky;
        top: 0;
        z-index: 5;

        padding:
            17px 56px 14px 16px;

    }


    .drawer-header h2 {

        font-size: 25px;
        line-height: 1.1;

    }


    .drawer-header p {

        margin-top: 3px;

        font-size: 13px;
        line-height: 1.35;

    }


    .drawer-close {

        top: 8px;
        right: 10px;

        width: 42px;
        height: 42px;

        display: grid;
        place-items: center;

        border-radius: 50%;

        background:
            rgba(255, 255, 255, .12);

        font-size: 29px;

    }


    .work-filters {

        flex-wrap: nowrap;

        gap: 6px;

        padding:
            10px 12px;

        overflow-x: auto;

        scrollbar-width: none;

    }


    .work-filters::-webkit-scrollbar {

        display: none;

    }


    .filter {

        flex: 0 0 auto;

        padding:
            7px 11px;

        font-size: 12px;

    }


    .project-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 8px;

        padding:
            0 10px 12px;

    }


    .project-image {

        height: 82px;

        font-size: 34px;

    }


    .project-card {

        border-radius: 10px;

    }


    .project-card h4 {

        padding: 8px;

        font-size: 12px;
        line-height: 1.25;

    }


    .view-more {

        position: sticky;
        bottom: 8px;

        z-index: 4;

        width:
            calc(100% - 20px);

        margin:
            4px 10px 10px;

        padding: 12px;

        box-shadow:
            0 8px 25px
            rgba(4, 20, 38, .25);

    }


    /* =============================================
       CONTACT MODAL
    ============================================= */

    .contact-modal {

        align-items: flex-start;

        padding:
            max(8px, env(safe-area-inset-top))
            8px
            max(8px, env(safe-area-inset-bottom));

        overflow-y: auto;

    }


    .contact-modal-card {

        width: 100%;

        max-height:
            calc(100vh - 16px);

        max-height:
            calc(100dvh - 16px);

        margin: auto;

        padding:
            20px 12px 14px;

        border-radius: 15px;

        overflow-y: auto;
        overscroll-behavior: contain;

    }


    .contact-modal-close {

        position: sticky;

        top: 0;

        z-index: 10;

        float: right;

        width: 35px;
        height: 35px;

        margin:
            -10px -3px -30px 0;

        font-size: 25px;

    }


    .contact-modal-heading {

        padding:
            0 34px;

    }


    .contact-modal-heading span {

        font-size: 9px;

        letter-spacing: 1.4px;

    }


    .contact-modal-heading h2 {

        margin:
            4px 0;

        font-size: 23px;
        line-height: 1.08;

    }


    .contact-modal-heading p {

        font-size: 12px;
        line-height: 1.3;

    }


    .contact-quick-actions {

        grid-template-columns:
            repeat(3, 1fr);

        gap: 5px;

        margin:
            14px 0 12px;

    }


    .contact-quick-actions a,
    .contact-quick-actions
    .find-tech-button {

        min-height: 42px;

        padding:
            9px 5px;

        margin-top: 0;

        display: flex;

        align-items: center;
        justify-content: center;

        font-size: 10px;
        line-height: 1.2;

    }


    .project-request-form {

        grid-template-columns:
            1fr;

        gap: 10px;

    }


    .project-form-fields {

        gap: 8px;

    }


    .project-form-fields label {

        gap: 3px;

        font-size: 11px;

    }


    .project-form-fields input,
    .project-form-fields textarea {

        padding:
            9px 10px;

        font-size: 14px;

    }


    .project-form-fields textarea {

        min-height: 70px;
        max-height: 100px;

    }


    .project-photo-upload {

        min-height: 105px;

        padding: 12px;

    }


    .upload-icon {

        width: 38px;
        height: 38px;

        margin-bottom: 4px;

        font-size: 23px;

    }


    .project-photo-upload strong {

        font-size: 12px;

    }


    .project-photo-upload small {

        font-size: 9px;

    }


    .selected-file-name {

        margin-top: 7px;

        padding:
            6px 10px;

        font-size: 10px;

    }


    .project-request-submit {

        padding: 12px;

        font-size: 13px;

    }


    /* Find a Tech dropdown stays above the form */

    .find-tech-dropdown {

        display: flex;

    }


    .find-tech-menu {

        position: absolute;

        top:
            calc(100% + 5px);

        right: 0;

        width: 190px;
        min-width: 190px;

        max-height: 230px;

        margin-top: 0;

        overflow-y: auto;

        z-index: 100;

    }


    .find-tech-menu button {

        padding:
            9px 11px;

        font-size: 12px;

    }


    /* =============================================
       FIND A TECHNICIAN MODAL
    ============================================= */

    .tech-overlay {

        align-items: flex-start;

        padding:
            max(8px, env(safe-area-inset-top))
            8px
            max(8px, env(safe-area-inset-bottom));

        overflow-y: auto;

    }


    .tech-modal {

        width: 100%;

        max-height:
            calc(100vh - 16px);

        max-height:
            calc(100dvh - 16px);

        margin: auto;

        border-radius: 15px;

        overflow-y: auto;
        overscroll-behavior: contain;

    }


    .tech-modal-header {

        position: sticky;
        top: 0;
        z-index: 5;

        padding:
            17px 50px 13px 14px;

    }


    .tech-modal-header small {

        font-size: 9px;

    }


    .tech-modal-header h2 {

        margin:
            3px 0;

        padding-right: 0;

        font-size: 22px;
        line-height: 1.1;

    }


    .tech-modal-header p {

        font-size: 11px;

    }


    .tech-close {

        top: 8px;
        right: 8px;

        width: 36px;
        height: 36px;

        font-size: 22px;

    }


    .tech-form-wrap {

        padding:
            13px 12px;

    }


    .selected-service-box {

        margin-bottom: 10px;

        padding:
            9px 10px;

    }


    .tech-form-grid {

        grid-template-columns:
            1fr;

        gap: 8px;

    }


    .tech-field {

        gap: 3px;

    }


    .tech-field label {

        font-size: 11px;

    }


    .tech-field input,
    .tech-field select,
    .tech-field textarea {

        padding:
            9px 10px;

        font-size: 14px;

    }


    .tech-field textarea {

        min-height: 75px;
        max-height: 105px;

    }


    .find-tech-button {

        margin-top: 10px;

        padding: 12px;

    }

}


/* Extra-small phones */

@media (max-width: 390px) {

    .contact-quick-actions {

        grid-template-columns:
            1fr 1fr;

    }


    .find-tech-dropdown {

        grid-column:
            1 / -1;

    }


    .project-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .project-image {

        height: 72px;

    }

}
/* =========================================================
   BEFORE AND AFTER PROJECT MODAL
========================================================= */

.project-card {

    cursor: pointer;

}


.project-card:focus-visible {

    outline:
        3px solid var(--green);

    outline-offset: 3px;

}


.project-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

}


.project-gallery-modal {

    position: fixed;
    inset: 0;

    z-index: 6000;

    display: grid;
    place-items: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .25s ease,
        visibility .25s ease;

}


.project-gallery-modal.open {

    opacity: 1;
    visibility: visible;

}


.project-gallery-backdrop {

    position: absolute;
    inset: 0;

    background:
        rgba(3, 15, 27, .84);

    backdrop-filter:
        blur(6px);

}


.project-gallery-card {

    position: relative;
    z-index: 1;

    width:
        min(900px, 100%);

    max-height:
        calc(100vh - 40px);

    max-height:
        calc(100dvh - 40px);

    overflow-y: auto;

    padding: 28px;

    border-radius: 22px;

    background: #ffffff;
    color: var(--navy-dark);

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, .4);

}


.project-gallery-close {

    position: absolute;

    top: 14px;
    right: 16px;

    z-index: 10;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 50%;

    background: #edf2f6;
    color: var(--navy-dark);

    font-size: 29px;

    cursor: pointer;

}


.project-gallery-heading {

    padding:
        0 45px 20px;

    text-align: center;

}


.project-gallery-heading span {

    color: var(--green);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;

}


.project-gallery-heading h2 {

    margin:
        5px 0;

    font-size:
        clamp(27px, 4vw, 42px);

}


.project-gallery-heading p {

    margin: 0;

    color: #647487;

}


.before-after-slider {

    position: relative;

    width: 100%;
    aspect-ratio: 16 / 10;

    overflow: hidden;

    border-radius: 16px;

    background: #dfe6eb;

    user-select: none;
    touch-action: pan-y;

}


.before-after-slider img {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

}


.before-image-wrap {

    position: absolute;

    top: 0;
    left: 0;

    width: 50%;
    height: 100%;

    overflow: hidden;

}


.before-image {

    width: 200% !important;
    max-width: none;

}


.comparison-label {

    position: absolute;

    top: 14px;

    z-index: 5;

    padding:
        7px 10px;

    border-radius: 7px;

    background:
        rgba(4, 20, 38, .78);

    color: #ffffff;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;

}


.before-label {

    left: 14px;

}


.after-label {

    right: 14px;

}


.comparison-divider {

    position: absolute;

    top: 0;
    bottom: 0;
    left: 50%;

    z-index: 4;

    width: 3px;

    background: #ffffff;

    transform:
        translateX(-50%);

    pointer-events: none;

}


.comparison-divider span {

    position: absolute;

    top: 50%;
    left: 50%;

    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border:
        3px solid #ffffff;

    border-radius: 50%;

    background: var(--green);
    color: #ffffff;

    font-size: 19px;
    font-weight: 900;

    transform:
        translate(-50%, -50%);

    box-shadow:
        0 5px 18px
        rgba(0, 0, 0, .3);

}


.comparison-range {

    position: absolute;
    inset: 0;

    z-index: 8;

    width: 100%;
    height: 100%;

    margin: 0;

    opacity: 0;

    cursor: ew-resize;

}


.project-gallery-actions {

    padding-top: 16px;

}


.gallery-contact-button {

    width: 100%;

    padding: 14px;

    border: 0;
    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--green),
            var(--green-light)
        );

    color: #ffffff;

    font-size: 15px;
    font-weight: 900;

    cursor: pointer;

}


/* Mobile view */

@media (max-width: 720px) {

    .project-gallery-modal {

        align-items: center;
        padding: 8px;

    }


    .project-gallery-card {

        width: 100%;

        max-height:
            calc(100vh - 16px);

        max-height:
            calc(100dvh - 16px);

        padding:
            18px 10px 12px;

        border-radius: 15px;

    }


    .project-gallery-close {

        position: sticky;

        top: 0;

        float: right;

        width: 36px;
        height: 36px;

        margin:
            -8px 0 -28px;

        font-size: 25px;

    }


    .project-gallery-heading {

        padding:
            0 35px 12px;

    }


    .project-gallery-heading span {

        font-size: 10px;

    }


    .project-gallery-heading h2 {

        font-size: 23px;

    }


    .project-gallery-heading p {

        font-size: 12px;

    }


    .before-after-slider {

        aspect-ratio: 4 / 5;

        max-height:
            calc(100dvh - 190px);

    }


    .comparison-label {

        top: 9px;

        padding:
            6px 8px;

        font-size: 10px;

    }


    .before-label {

        left: 9px;

    }


    .after-label {

        right: 9px;

    }


    .gallery-contact-button {

        padding: 12px;

        font-size: 13px;

    }

}
/* =========================================================
   OUR WORK MENU AND CARD TEXT FIX
========================================================= */

/* Our Work filter menu — one line with visible slider */

.work-filters {

    display: flex;
    flex-wrap: nowrap;

    gap: 7px;

    padding:
        14px 12px 12px;

    overflow-x: auto;
    overflow-y: hidden;

    white-space: nowrap;

    scrollbar-width: thin;

    scrollbar-color:
        var(--green)
        #e2e8ef;

}


.work-filters .filter {

    flex:
        0 0 auto;

}


.work-filters::-webkit-scrollbar {

    display: block;

    height: 7px;

}


.work-filters::-webkit-scrollbar-track {

    background: #e2e8ef;

    border-radius: 20px;

}


.work-filters::-webkit-scrollbar-thumb {

    background:
        var(--green);

    border-radius: 20px;

}


.work-filters::-webkit-scrollbar-thumb:hover {

    background:
        var(--green-light);

}
.project-card.project-hidden {

    display: none !important;

}


/* Remove View Before & After temporary text */

.project-card-label {

    display: none !important;

}


/* Prevent broken image description from appearing */

.project-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    color: transparent !important;
    font-size: 0 !important;

}
/* Dark-blue project-card hover shadow */

.project-card {

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}


.project-card:hover,
.project-card:focus-visible {

    transform:
        translateY(-4px);

    border-color:
        #0b2745;

    box-shadow:
        0 10px 24px
        rgba(11, 39, 69, .55);

}
/* Strong dark-blue card hover */

.project-grid .project-card:hover,
.project-grid .project-card:focus-visible {

    background:
        #0b2745 !important;

    border-color:
        #0b2745 !important;

    box-shadow:
        0 12px 28px
        rgba(11, 39, 69, .75) !important;

    transform:
        translateY(-5px);

}


.project-grid .project-card:hover h4,
.project-grid .project-card:focus-visible h4 {

    background:
        #0b2745 !important;

    color:
        #ffffff !important;

}
/* =========================================================
   DARK-BLUE HOVER EFFECT FOR ALL CARDS
========================================================= */

.service-card,
.project-card,
.trust-item,
.best-fit-card,
.partner-card,
.team-card {

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease,
        background-color .25s ease,
        color .25s ease;

}


.service-card:hover,
.project-card:hover,
.trust-item:hover,
.best-fit-card:hover,
.partner-card:hover,
.team-card:hover,
.service-card:focus-visible,
.project-card:focus-visible,
.team-card:focus-visible {

    transform:
        translateY(-5px);

    border-color:
        #0b2745 !important;

    box-shadow:
        0 12px 28px
        rgba(11, 39, 69, .65) !important;

}


/* Turn the card title area dark blue */

.service-card:hover h3,
.service-card:hover h4,
.project-card:hover h3,
.project-card:hover h4,
.best-fit-card:hover h3,
.best-fit-card:hover h4,
.partner-card:hover h3,
.partner-card:hover h4,
.team-card:hover h3,
.team-card:hover h4 {

    color:
        #0b2745 !important;

}


/* Keyboard accessibility */

.service-card:focus-visible,
.project-card:focus-visible,
.team-card:focus-visible {

    outline:
        3px solid #0b2745;

    outline-offset: 3px;

}
/* Mobile touch highlight */

@media (hover: none) and (pointer: coarse) {

    .service-card,
    .project-card,
    .trust-item,
    .best-fit-card,
    .partner-card,
    .team-card {

        -webkit-tap-highlight-color:
            transparent;

        transition:
            transform .12s ease,
            box-shadow .12s ease,
            border-color .12s ease,
            background-color .12s ease;

    }


    .service-card:active,
    .project-card:active,
    .trust-item:active,
    .best-fit-card:active,
    .partner-card:active,
    .team-card:active {

        transform:
            translateY(-3px)
            scale(.98);

        border-color:
            #0b2745 !important;

        background-color:
            #f0f5fa !important;

        box-shadow:
            0 9px 22px
            rgba(11, 39, 69, .7) !important;

    }

}
/* =========================================================
   LOGO STATE DROPDOWN
========================================================= */

.logo {

    min-width: 160px;
    min-height: 58px;

    padding:
        6px 12px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

}


.logo-icon {

    flex:
        0 0 auto;

    margin-bottom: 0;

    font-size: 20px;

}


.logo-name {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 4px;

    white-space: nowrap;

    font-size: 10px;
    line-height: 1;

}


.logo-state-area {

    display: inline-flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 1px;

}


.logo-state-area strong {

    color: #ffffff;

    font-size: 9px;
    line-height: 1;

}


.logo-state-select {

    width: 34px;
    height: 17px;

    padding:
        0 2px;

    border:
        1px solid
        rgba(255, 255, 255, .45);

    border-radius: 4px;

    background:
        rgba(255, 255, 255, .12);

    color: #ffffff;

    font-size: 9px;
    font-weight: 900;

    cursor: pointer;

}


.logo-state-select option {

    background: #ffffff;
    color: #0b2745;

}


@media (max-width: 720px) {

    .logo {

        min-width: 145px;
        min-height: 52px;

        padding:
            5px 9px;

    }


    .logo-name {

        font-size: 9px;

    }

}
/* Fix NY selector and LLC alignment */

.logo-state-area {

    position: relative;

    display: inline-flex;

    flex-direction: row;

    align-items: center;
    justify-content: center;

    gap: 0;

}


.logo-state-area strong {

    display: inline-block;

    color: #ffffff;

    font-size: 10px;
    line-height: 1;

}


/* Position NY above LLC without pushing LLC down */

/* =========================================================
   LOGO STATE DROPDOWN FIX
========================================================= */

.logo {

    position: relative;

    min-width: 160px;
    height: 58px;

    box-sizing: border-box;

    overflow: visible;

    background:
        linear-gradient(
            140deg,
            #0b2745,
            #071c34
        ) !important;

}


.logo-name {

    padding-top: 0;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    white-space: nowrap;

}


.logo-state-area {

    position: relative;

    display: inline-flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 1px;

    width: 40px;
    height: 34px;

}


.logo-state-area strong {

    color: #ffffff;

    font-size: 9px;
    line-height: 9px;

}


.logo-state-dropdown {

    position: relative;

    width: 40px;

}


.logo-state-dropdown summary {

    width: 40px;
    height: 19px;

    box-sizing: border-box;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 3px;

    padding:
        0 4px;

    border-radius: 4px;

    background: #ffffff;
    color: #0b2745;

    font-size: 10px;
    font-weight: 900;

    line-height: 19px;

    list-style: none;

    cursor: pointer;

}


.logo-state-dropdown summary::after {

    content: "⌄";

    font-size: 9px;

}


.logo-state-dropdown summary::-webkit-details-marker {

    display: none;

}


.logo-state-menu {

    position: absolute;

    top:
        calc(100% + 4px);

    left: 50%;

    z-index: 9000;

    width: 54px;

    padding: 4px;

    border-radius: 6px;

    background: #ffffff;

    box-shadow:
        0 8px 20px
        rgba(0, 0, 0, .3);

    transform:
        translateX(-50%);

}


.logo-state-menu button {

    width: 100%;

    padding:
        5px 4px;

    border: 0;
    border-radius: 4px;

    background: #ffffff;
    color: #0b2745;

    font-size: 10px;
    font-weight: 800;

    cursor: pointer;

}


.logo-state-menu button:hover {

    background: #e9f1f7;

}
/* Keep NY above LLC without pushing anything down */

.logo-state-area {

    position: relative;

    display: inline-flex;

    width: 42px;
    height: 10px;

    align-items: center;
    justify-content: center;

    flex-direction: row;

    margin: 0;
    padding: 0;

}


.logo-state-area strong {

    display: block;

    margin: 0;
    padding: 0;

    color: #ffffff;

    font-size: 9px;
    line-height: 10px;

    transform: none;

}


/* Remove dropdown from normal layout */

.logo-state-dropdown {

    position: absolute;

    left: 50%;
    bottom: 12px;

    width: 42px;
    height: 18px;

    margin: 0;

    transform:
        translateX(-50%);

}


/* Keep NY and arrow centered */

.logo-state-dropdown summary {

    width: 42px;
    height: 18px;

    padding:
        0 4px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 3px;

    box-sizing: border-box;

    background: #ffffff;
    color: #0b2745;

    font-size: 9px;
    font-weight: 900;

    line-height: 18px;

}


.logo-state-dropdown summary::after {

    content: "▼";

    position: static;

    display: inline-block;

    margin: 0;

    color: #0b2745;

    font-size: 6px;
    line-height: 1;

    transform: none;

}


/* Keep the dropdown choices positioned below NY */

.logo-state-menu {

    top:
        calc(100% + 3px);

}
/* Move New Dimension LLC slightly downward */

.logo-name {

    transform:
        translateY(3px);

}
/* Final LLC alignment */

.logo-state-area {

    width: 22px;
    margin-left: -4px;

}


.logo-state-area strong {

    position: relative;

    left: 0;
    top: 0;

    transform: none;

    white-space: nowrap;

}


.logo-state-dropdown {

    left: 48%;

}
/* =========================================================
   CLEAN LOGO AND STATE DROPDOWN
========================================================= */

.logo {

    position: relative;

    width: 160px;
    min-width: 160px;
    height: 58px;
    min-height: 58px;

    box-sizing: border-box;

    display: flex;

    align-items: flex-end;
    justify-content: center;

    gap: 5px;

    padding:
        7px 8px 9px;

    overflow: visible;

    background:
        linear-gradient(
            140deg,
            #0b2745,
            #071c34
        ) !important;

    color: #ffffff;

}


.logo-icon {

    display: inline-block;

    margin: 0;

    font-size: 18px;
    line-height: 13px;

}


.logo-name {

    display: inline-block;

    margin: 0;
    padding: 0;

    color: #ffffff;

    font-size: 9px;
    font-weight: 900;
    line-height: 13px;

    white-space: nowrap;

    transform: none;

}


/* State selector is separate from company name */

.logo-location-dropdown {

    position: absolute;

    top: 4px;
    right: 8px;

    z-index: 1000;

    width: 42px;

    margin: 0;
    padding: 0;

}


.logo-location-dropdown summary {

    width: 42px;
    height: 18px;

    box-sizing: border-box;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 3px;

    padding:
        0 4px;

    border:
        1px solid
        rgba(255, 255, 255, .8);

    border-radius: 4px;

    background: #ffffff;
    color: #0b2745;

    font-size: 9px;
    font-weight: 900;
    line-height: 18px;

    list-style: none;

    cursor: pointer;

}


.logo-location-dropdown summary::after {

    content: "▼";

    color: #0b2745;

    font-size: 6px;

}


.logo-location-dropdown summary::-webkit-details-marker {

    display: none;

}


/* Dropdown opens downward vertically */

.logo-location-menu {

    position: absolute;

    top:
        calc(100% + 4px);

    right: 0;

    z-index: 2000;

    display: none;

    width: 52px;

    padding: 4px;

    border:
        1px solid #d7e1e9;

    border-radius: 6px;

    background: #ffffff;

    box-shadow:
        0 8px 20px
        rgba(0, 0, 0, .3);

}


.logo-location-dropdown[open]
.logo-location-menu {

    display: grid;

    grid-template-columns:
        1fr;

    gap: 2px;

}


.logo-location-menu button {

    width: 100%;

    padding:
        5px;

    border: 0;
    border-radius: 4px;

    background: #ffffff;
    color: #0b2745;

    font-size: 10px;
    font-weight: 900;

    text-align: center;

    cursor: pointer;

}


.logo-location-menu button:hover {

    background: #0b2745;
    color: #ffffff;

}
/* Center the complete company name inside the logo card */

.logo {

    display: flex;

    align-items: flex-end;
    justify-content: center;

    padding:
        7px 8px 9px;

}


.logo-icon,
.logo-name {

    position: relative;

    left: 0;

    margin: 0;

    transform: none;

}


.logo-icon {

    display: inline-block;

    font-size: 18px;
    line-height: 13px;

}


.logo-name {

    display: inline-block;

    font-size: 9px;
    line-height: 13px;

    white-space: nowrap;

}
/* Force complete company name to exact center */

.logo {

    position: relative;

}


.logo-company-line {

    position: absolute;

    left: 50%;
    bottom: 9px;

    width: max-content;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 4px;

    transform:
        translateX(-50%);

    white-space: nowrap;

}


.logo-company-line
.logo-icon {

    position: static;

    display: inline-block;

    margin: 0;

    font-size: 16px;
    line-height: 1;

    transform: none;

}


.logo-company-line
.logo-name {

    position: static;

    display: inline-block;

    margin: 0;
    padding: 0;

    color: #ffffff;

    font-size: 9px;
    font-weight: 900;
    line-height: 1;

    transform: none;

}
/* Increase company name and logo size */

.logo-company-line
.logo-icon {

    font-size: 20px;

}


.logo-company-line
.logo-name {

    font-size: 11px;
    font-weight: 900;

    letter-spacing: .2px;

}


/* Give the centered name enough width */

.logo-company-line {

    gap: 5px;

}
/* Logo icon in upper-left and company name on its own line */

.logo-company-line {

    position: static;

    width: 100%;

    display: block;

    transform: none;

}


.logo-company-line
.logo-icon {

    position: absolute;

    top: 6px;
    left: 8px;

    display: block;

    margin: 0;

    font-size: 20px;
    line-height: 1;

}


.logo-company-line
.logo-name {

    position: absolute;

    left: 50%;
    bottom: 10px;

    display: block;

    width: max-content;

    margin: 0;

    color: #ffffff;

    font-size: 11px;
    font-weight: 900;
    line-height: 1;

    text-align: center;
    white-space: nowrap;

    transform:
        translateX(-50%);

}
/* =========================================================
   FINAL LOGO LAYOUT
   Image | Company Name | State Dropdown
========================================================= */

.logo {
    position: relative;
    width: auto;
    min-width: 245px;
    height: 58px;
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 8px 12px;

    overflow: visible;
    white-space: nowrap;
}


/* Keep icon and company name together */

.logo-company-line {
    position: static;

    width: auto;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;

    transform: none;
    white-space: nowrap;
}


/* Image/icon before company name */

.logo-company-line .logo-icon {
    position: static;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 0;

    font-size: 23px;
    line-height: 1;

    transform: none;
}


/* Company name */

.logo-company-line .logo-name {
    position: static;

    display: inline-block;
    width: auto;

    margin: 0;
    padding: 0;

    color: #ffffff;

    font-size: 12px;
    font-weight: 900;
    line-height: 1;

    text-align: left;
    white-space: nowrap;

    transform: none;
}


/* State dropdown on right */

.logo-location-dropdown {
    position: relative;
    top: auto;
    right: auto;

    flex: 0 0 auto;

    width: 44px;

    margin: 0;
    padding: 0;
}


/* State button */

.logo-location-dropdown summary {
    width: 44px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;

    padding: 0 5px;

    border: 1px solid #ffffff;
    border-radius: 4px;

    background: #ffffff;
    color: #0b2745;

    font-size: 10px;
    font-weight: 900;
    line-height: 25px;
}


/* Dropdown choices open downward */

.logo-location-menu {
    top: calc(100% + 5px);
    right: 0;
}


/* Mobile adjustment */

@media (max-width: 720px) {
    .logo {
        min-width: 215px;
        height: 52px;
        min-height: 52px;

        gap: 7px;
        padding: 7px 9px;
    }

    .logo-company-line {
        gap: 4px;
    }

    .logo-company-line .logo-icon {
        font-size: 19px;
    }

    .logo-company-line .logo-name {
        font-size: 10px;
    }

    .logo-location-dropdown,
    .logo-location-dropdown summary {
        width: 40px;
    }
}
/* Move home icon upward */

.logo-company-line .logo-icon {
    transform: translateY(-3px);
}
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 6px;
}