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

:root {
    --border-blue: rgba(11, 72, 130, 0.2);
    --brand-default: #0b4882;
    --brand-light: #e7edf2;
    --brand-accent: #ea4f96;
    --white: #ffffff;
    --nav-brand-color: var(--brand-default);
    --nav-brand-color-dark: var(--brand-default);
    --footer-bg: #1b344b;
    --footer-bottom-bg: #16283a;
    --font: "Google Sans", sans-serif;
}

body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

button,
.button {
    font-family: var(--font);
    cursor: pointer;
    margin-inline: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 99px;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.15rem);
    transition: background 0.2s;
    width: fit-content;
}

.button img {
    width: 12px;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: var(--white);
}

.btn-pink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--brand-accent);
    border-radius: 99px;
    border: 1px solid var(--border-blue);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--white);
    transition: background 0.2s;
}

.btn-pink:hover {
    background: #d9447f;
}

.btn-pink-lg {
    padding: 20px 32px;
    font-size: clamp(1rem, 2vw, 1.35rem);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 99px;
    border: 1px solid var(--border-blue);
    font-weight: 700;
    color: var(--brand-default);
    transition: background 0.2s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.5);
}

.btn-outline-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-blue {
    background: rgba(11, 72, 130, 0.05);
    border: 1px solid var(--border-blue);
    color: var(--brand-default);
}

.btn-outline-blue:hover {
    background: rgba(11, 72, 130, 0.1);
}

.chevron-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.section-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--brand-accent);
    line-height: 20.3px;
}

.section-heading {
    font-weight: 800;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    text-transform: uppercase;
    color: var(--brand-default);
    line-height: 1.05;
    margin-bottom: .5rem;
}

.section-heading .accent {
    color: var(--brand-accent);
    font-weight: 400;
}

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

.service-area {
    display: flex;
    align-items: stretch;
    gap: 48px;
    padding: clamp(48px, 8vw, 96px) clamp(1rem, 100vw, calc((100vw - 1600px) / 2) + 64px);
    width: 100%;
    background: var(--white);
}

.service-area__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 27px;
    flex: 1 1 40%;
}

.service-area__info-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 36px;
    width: 100%;
    background: var(--brand-light);
    border-radius: 15px;
}

.service-area__label-heading {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-area__heading {
    font-weight: 800;
    font-size: 38px;
    color: var(--brand-default);
    line-height: 38px;
}

.service-area__heading .accent {
    color: var(--brand-accent);
}

.service-area__text {
    font-size: 16px;
    color: var(--black);
    line-height: 24px;
}

.service-area__cities-heading {
    font-weight: 700;
    font-size: 20px;
    color: var(--brand-default);
    line-height: 30px;
}

.service-area__cities-heading .accent {
    color: var(--brand-accent);
}

.service-area__cities-scroll {
    width: 100%;
    max-height: 225px;
    overflow-y: auto;
    background: var(--white);
    border-radius: 15px;
    border: 1px solid var(--border-blue);
}

.service-area__cities-grid {
    padding: 20px 24px;
}

#cities-grid h3 {
    display: none;
}

span.city_scroll_list_title {
    font-weight: 800;
    text-transform: uppercase;
    color: var(--brand-default);
}

ul.city_scroll_list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1rem;
    margin-block: .5rem 1.5rem;
}

ul.city_scroll_list li {
    white-space: nowrap;
    font-size: clamp(.875rem, 2vw, .95rem);
    font-weight: 600;
}

ul.city_scroll_list li a {
    border-bottom: .1rem dotted currentColor;
    color: currentColor;
}

ul.city_scroll_list li a:hover {
    border-bottom: 0;
    background-color: var(--brand-light);
    box-shadow: -5px 0 var(--brand-light), 5px 0 var(--brand-light);
}

span.city_scroll_list_local_phone {
    font-size: .875rem;
}

.city_scroll_list_footer {
    display: none;
}

.service-area__more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 99px;
    border: 1px solid var(--border-blue);
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--brand-default);
}

.service-area__more-btn svg {
    width: 8px;
    height: 8px;
}

.service-area__right {
    container-name: territory;
    container-type: inline-size;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    flex: 1 1 65%;
    border-radius: 15px;
    border: 1px solid var(--border-blue);
}

button.service-item {
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
    width: 100%;
    justify-content: space-between;
    color: var(--brand-default);
    border: 1px solid var(--border-blue);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    line-height: 1.2;
    flex: 1;
}

button.service-item span.icon svg {
    width: 12px;
    transform: scaleX(-1);
    fill: currentColor;
}

.service-item span:not(.icon) {
    flex: 1;
    text-align: left;
    font-size: clamp(.875rem, 2vw, .975rem);
}

.service-map-container {
    display: flex;
    gap: 24px;
    align-self: stretch;
}

.map-display {
    border: 1px solid var(--border-blue);
    border-radius: 10px;
    overflow: hidden;
    align-self: center;
}

img#map-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.service-list-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

#map-alert {
    display: flex;
    align-items: center;
    background-color: var(--brand-light);
    color: var(--brand-default);
    border-radius: 7px;
    border: 1px solid var(--border-blue);
    padding: 1rem 1.5rem;
    gap: 1rem;
}

#map-alert p {
    margin: 0;
    line-height: 1.2;
    font-size: clamp(.875rem, 2vw, .95rem);
}

#alert-icon {
    flex: 0 0 24px;
}

button.service-item:hover,
button.service-item.active {
    background-color: var(--brand-default);
    color: #fff;
}

@container territory (width <=700px) {
    .service-map-container {
        flex-flow: column wrap;
    }
    .map-display {
        flex: 1 1 350px;
    }
    .service-list-footer {
        flex-flow: row wrap;
        flex: 0;
        justify-content: center;
    }
    #map-alert {
        flex: 1 1 100%;
        justify-content: center;
    }
    #alert-icon {
        flex: unset;
    }
    button.service-item {
        flex: 1 1 250px;
    }
    button.service-item:first-of-type {
        flex: 1 1 100%;
    }
}

/* ===================== SVG ICONS (inline) ===================== */

.icon-phone {
    width: 29px;
    height: 29px;
    stroke: var(--brand-default);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-chevron-right {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-chevron-down {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-chevron-right-card {
    width: clamp(16px, 5vw, 28px);
    aspect-ratio: 1 / 1;
}

/* ===================== Silo Banners (Video) ===================== */

#siloBanner:has(#video-silo-header) {
    height: unset;
}

#video-silo-header {
    background: linear-gradient(to bottom, var(--brand-light), #fff 75%);
    padding: clamp(1rem, 3vw, 3rem) clamp(2rem, 100vw, calc((100vw - 1440px) / 2)) !important;
    border-top: 1px solid var(--brand-dark);
}

#silo-content {
    width: 100% !important;
}

#silo-text * {
    font-family: 'Poppins' !important;
}

#silo-text p.badge span {
    font-weight: 700;
}

#silo-text p.headline {
    font-weight: 700;
    font-size: clamp(1.25rem, 1.75vw, 1.95rem);
}

#silo-text p.headline span {
    font-weight: 700;
    font-size: clamp(1.65rem, 3.5vw, 3rem) !important;
    line-height: 1;
}

#silo-text a {
    font-weight: 600;
    color: #fff !important;
}

#silo-text a:hover {
    text-decoration: none !important;
}

#silo-text a span img {
    height: auto;
    display: inline;
    opacity: .5;
}

@media (width >=769px) {
    #silo-video {
        flex: 1 1 720px;
    }
    #silo-text {
        flex: 1 1 500px;
    }
}

/* ===================== SLIDERS ===================== */

/* Global Horizontal Slider Nav */

.tns-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
    gap: clamp(.75rem, 2vw, 1rem);
}

.tns-nav button {
    margin: 0;
    background-color: var(--border-blue);
    display: block;
    width: 1rem;
    height: 15px;
    border-radius: 99px;
    border: 0;
    padding: 0;
    transition: none;
}

.tns-nav button.tns-nav-active {
    background-color: var(--brand-default, #000);
    transform: scaleX(2.5);
    margin-inline: .75rem;
    border-radius: 40px / 100px;
    transition: transform .3s ease;
}

.tns-item {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tns-controls {
    display: flex;
    justify-content: center;
    gap: 13rem;
    margin-top: -1.35rem;
}

.tns-controls button {
    padding: 0;
    border: 1px solid var(--border-blue);
    width: 32px;
    aspect-ratio: 1 / 1;
    background-color: rgb(11 72 130 / 5%);
}

.tns-controls button svg {
    fill: var(--brand-default);
    width: 16px;
}

.tns-controls button:hover {
    border-color: var(--brand-default);
}

@media (width >=768px) {
    .tns-controls {
        gap: 28rem;
    }
    #reviews__slider .tns-controls {
        gap: 14rem;
    }
}

/* ===================== RESPONSIVE ===================== */

@media (width <=1024px) {
    .service-area {
        flex-direction: column;
    }
    .service-area__right {
        width: 100%;
        flex-direction: column;
    }
    .service-area__map-card {
        width: 100%;
        height: 400px;
    }
    .footer-main {
        flex-direction: column;
        gap: 48px;
    }
    .footer-bottom__inner {
        flex-wrap: wrap;
        gap: 24px;
    }
    button.menu-mobile-toggle {
        border: 0;
        padding: 0;
    }
    .menu-mobile-toggle span:last-child {
        width: 60%;
    }
}

@media (width <=768px) {
    .header {
        flex-direction: column;
    }
    .header__nav {
        width: 100%;
        align-items: stretch;
    }
    .header__top-bar {
        border-radius: 0;
        padding-right: 16px;
    }
    .header__menu {
        flex-wrap: wrap;
        gap: 16px;
        padding: 0 16px;
        justify-content: center;
    }
}

/***** Content Overrides *****/

#content-wrap.full-width {
    padding-top: 2rem;
    justify-self: center;
    grid-column: span 2;
    max-width: 100%;
    width: 100%;
    padding-inline: clamp(2rem, 100vw, calc((100vw - 1100px) / 2));
}

@media (width >=1024px) {
    #sidebar-nav {
        max-height: 80vh;
        overflow-y: auto;
    }
}

.widget-component {
    max-width: calc(100vw - 3rem);
}

.ba-widget {
    clear: both;
}

.columns.end {
    justify-self: unset;
}

/* City page */

.citypage_sidebar :is(input, select, textarea) {
    border: 1px solid #ccc;
    padding: 0 .25rem;
    height: 2rem;
}

.citypage_sidebar form {
    margin-inline: auto;
}

.citypage_sidebar .zip {
    box-shadow: none;
    background-color: transparent;
    padding: 0;
}

.citypage_index .widget_item .stars {
    display: flex;
    gap: 2px;
    margin-bottom: .25rem;
}

/* Video Module */

.video_playlists :is(.playlist_row, .video_playlist_row) {
    width: 100%;
    display: flex !important;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem !important;
}

.video_playlists :is(.playlist_item, .video_playlist_item) {
    flex: 1 1 200px;
    padding: 0;
    border: 1px solid var(--border-blue);
}

.video_playlists :is(.playlist_item, .video_playlist_item)>a {
    width: 100% !important;
    aspect-ratio: 16/9 !important;
}

.video_playlists .video_playlist_item .video_playlist_item_thumbnail {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 16/9;
}

.video_playlists .playlist_item a {
    padding: 1rem;
    background-image: linear-gradient(0deg, #f5f9fc, #dfe9f2);
}

.playlist_item_title {
    width: 100%;
}

.video_playlists .playlist_item_title a {
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    width: 100%;
}

.video_playlists .playlist_item .playlist_item_thumbnail {
    display: none;
}

.video_playlist_item_title {
    padding: .75rem 1rem;
    line-height: 1.2;
    font-size: clamp(.875rem, 1vw, .95rem);
}

/* Zip Search CSS */

#contact_form :is(input[type=text], input[type=email], select, textarea) {
    border: 1px solid #ccc;
    min-height: 2.75rem;
    padding-inline: .5rem;
}

#contact_form label {
    font-size: .875rem;
    color: #444;
    font-weight: 600;
}

#contact_form label.error {
    color: red;
    font-style: italic;
    font-size: .75rem;
    font-weight: normal;
}

label#sms_consent-label {
    font-weight: normal;
    font-style: normal;
    font-size: .75rem;
}

.contact_form [type="submit"] {
    background-color: var(--brand-accent);
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
}

.contact_form.page_widget.us {
    margin-bottom: 0;
    width: min(100%, 750px) !important;
    max-width: unset;
}