/* Import Partials files */
@import url("partials/nav.css");
@import url("partials/hero.css");
@import url("partials/email-prompt.css");
@import url("partials/footer.css");
@import url("partials/hiring-banner.css");

/* Import Components files */
@import url("components.css");


/* ==========================
   GENERAL RESET AND BASE
   ========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Open Sans', sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: underline;
    color: #333;
}

.content-section {
    padding: 4rem 2rem;
}

.section-inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.text-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.text-block h2, .text-block h3 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 1rem;
}

.text-block p {
    margin-bottom: 1rem;
}

.text-block.text-left {
    text-align: left;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    color: #0077cc;
    margin-bottom: 0.5rem;
}

.dark-blue {
    background-color: #182741;
    color: #fff;

    a {
        color: #fff;;
    }
}

.light-grey {
    background-color: #efefef;
}

main.content-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-section .section-heading {
    margin-bottom: 1.5rem;
}

.content-section ul,
.content-section ol {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.content-section ul li,
.content-section ol li {
    margin-bottom: 0.5rem;
}

.content-with-image img {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    text-align: left;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.card h3 {
    margin-bottom: 0.5rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}

.contact-details {
    text-align: left;
}

.contact-details p {
    margin-bottom: 0.75rem;
}

.contact-details a {
    color: #0077cc;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-form label {
    font-weight: 600;
    text-align: left;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid #d4d4d8;
    border-radius: 6px;
    font: inherit;
    background-color: #fff;
}

.contact-form textarea {
    resize: vertical;
}

.form-microcopy {
    margin: -0.35rem 0 0.15rem;
    color: #64748b;
    font-size: 0.88rem;
    text-align: left;
}

.estimate-photo-section {
    position: relative;
    isolation: isolate;
    background-image:
        linear-gradient(90deg, rgba(15, 23, 42, 0.88), rgba(24, 39, 65, 0.76)),
        var(--section-bg-image, none);
    background-size: cover;
    background-position: center;
    color: #fff;
    margin-bottom: -2rem;
}

.estimate-photo-section .contact-details,
.estimate-photo-section .contact-details a {
    color: #fff;
}

.estimate-photo-section .eyebrow {
    color: #fbbf24;
}

.estimate-photo-section .contact-details p {
    color: rgba(255, 255, 255, 0.88);
}

.estimate-photo-section .contact-details .btn-outline {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #0f172a;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.22);
}

.estimate-photo-section .contact-details .btn-outline:hover,
.estimate-photo-section .contact-details .btn-outline:focus-visible {
    background: #fbbf24;
    border-color: #fbbf24;
    color: #0f172a;
}

.estimate-photo-section .contact-form {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 12px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.28);
    color: #0f172a;
    padding: 1.25rem;
}

.estimate-photo-section .contact-form label,
.estimate-photo-section .contact-form .form-microcopy {
    color: #0f172a;
}

.door-hanger-hero {
    position: relative;
    min-height: auto;
    isolation: isolate;
    overflow: hidden;
    background: #0f172a;
}

.door-hanger-hero__media {
    position: absolute;
    inset: -2%;
    z-index: 0;
    background: url("/image/img_2666.webp") 92% 92% / cover no-repeat;
    opacity: 0.42;
    transform: scale(1.12);
}

.door-hanger-hero__inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 2rem));
    min-height: 720px;
    margin: 0 auto;
    padding: clamp(4rem, 9vh, 6.5rem) 0 4rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: 2rem;
    align-items: center;
}

.door-hanger-copy {
    color: #fff;
    max-width: 680px;
}

.door-hanger-offer-label {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.72rem;
    margin-bottom: 0.85rem;
    border: 1px solid rgba(251, 191, 36, 0.7);
    border-radius: 8px;
    color: #fbbf24;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(15, 23, 42, 0.55);
}

.door-hanger-offer {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.door-hanger-offer__amount {
    color: #fbbf24;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(4rem, 10vw, 7.25rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
}

.door-hanger-offer__detail {
    max-width: 190px;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.door-hanger-copy h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.1rem, 4.5vw, 3.7rem);
    line-height: 1.02;
    margin-bottom: 1rem;
}

.door-hanger-intro {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.12rem;
}

.door-hanger-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.door-hanger-actions .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.door-hanger-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 0.85rem;
    max-width: 520px;
}

.door-hanger-proof div {
    border-left: 4px solid #f59e0b;
    padding-left: 0.85rem;
}

.door-hanger-proof dt {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.door-hanger-proof dd {
    color: #fff;
    font-weight: 800;
}

.door-hanger-form {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.32);
    margin-top: -1rem;
}

.door-hanger-form__header h2 {
    font-family: 'Oswald', sans-serif;
    line-height: 1.08;
}

.door-hanger-form__header p:last-child {
    color: #475569;
    margin-top: 0.35rem;
}

.door-hanger-terms {
    border: 1px solid #f59e0b;
    border-radius: 8px;
    background: #fffbeb;
    color: #713f12;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
    padding: 0.75rem;
}

.door-hanger-form button {
    width: 100%;
}

@media (max-width: 860px) {
    .door-hanger-hero__media {
        inset: -8% -8% auto -8%;
        height: 34rem;
        background-position: 96% bottom;
        transform: scale(1.28);
    }

    .door-hanger-hero,
    .door-hanger-hero__inner {
        min-height: auto;
    }

    .door-hanger-hero__inner {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 3rem 0 0.75rem;
    }

    .door-hanger-form {
        margin-top: 0;
    }

    .door-hanger-proof {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .door-hanger-hero__media {
        inset: -6% -6% auto -6%;
        height: 31rem;
        background-position: 100% 100%;
        transform: scale(1.2);
    }

    .door-hanger-hero__inner {
        width: min(100% - 1rem, 1180px);
        gap: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .door-hanger-actions .btn {
        width: 100%;
    }

    .door-hanger-offer {
        gap: 0.75rem;
    }

    .door-hanger-offer__detail {
        max-width: 150px;
        font-size: 1rem;
    }

    .door-hanger-form {
        padding: 1rem;
    }
}

.map-embed {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.map-embed iframe {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    border: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-list {
    max-width: 800px;
    text-align: left;
    margin: 0 auto;
}

.faq-list dt {
    font-weight: 700;
    margin-top: 1.5rem;
    font-family: 'Oswald', sans-serif;
}

.faq-list dd {
    margin-left: 0;
    margin-top: 0.5rem;
}

.team-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.team-gallery img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.team-careers-link {
    margin: 1.1rem 0 0.4rem;
    text-align: center;
}

.cta-section {
    text-align: center;
}

.cta-section p {
    margin-bottom: 1rem;
}

.trust-strip {
    background: #0f172a;
    color: #fff;
    margin-top: -2rem;
    padding: 0.95rem 1rem;
    overflow: hidden;
    min-height: 54px;
}

.trust-strip__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
}

.trust-strip__item {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
}

.trust-strip__item--clone {
    display: none;
}

.trust-strip__review span {
    color: #f59e0b;
    letter-spacing: 0.04em;
}

.handyman-lander .hero-banner {
    order: 0;
}

.handyman-lander .trust-strip {
    order: 1;
}

.handyman-lander .review-carousel-section {
    order: 2;
}

.handyman-lander .content-with-image {
    order: 3;
}

.handyman-lander .estimate-photo-section {
    order: 4;
}

.handyman-lander .what-we-do-section {
    order: 5;
}

.handyman-lander .scope-clarity-section {
    order: 6;
}

.handyman-lander .faq-section {
    order: 7;
}

.handyman-lander .final-cta-section {
    order: 8;
}

.scope-clarity-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.review-carousel-section {
    background: #f8fafc;
    margin-top: -2rem;
    margin-bottom: -2rem;
    min-height: 430px;
}

.review-carousel-frame {
    position: relative;
    margin-top: 1.75rem;
    padding: 0 3.25rem;
}

.review-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    gap: 1rem;
    overflow-x: auto;
    padding: 0.25rem 0 0.75rem;
    scroll-snap-type: x mandatory;
}

.review-carousel-button {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(148, 163, 184, 0.55);
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    color: #475569;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transform: translateY(-50%);
}

.review-carousel-button svg {
    display: block;
    width: 1.45rem;
    height: 1.45rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.25;
}

.review-carousel-button--prev {
    left: 0;
}

.review-carousel-button--next {
    right: 0;
}

.review-carousel-button:hover,
.review-carousel-button:focus-visible {
    background: linear-gradient(180deg, #ffffff 0%, #e0f2fe 100%);
    border-color: #94a3b8;
    color: #334155;
    transform: translateY(-50%) scale(1.03);
}

.review-card {
    min-height: 230px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    padding: 1.35rem;
    text-align: left;
}

.review-card__stars {
    color: #f59e0b;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
}

.review-card__quote {
    color: #0f172a;
    font-size: 1.08rem;
    line-height: 1.55;
    margin: 0;
}

.review-card__name {
    color: #475569;
    font-weight: 700;
    margin: 0;
}

.review-card--cta {
    background: #182741;
}

.review-card--cta .review-card__quote,
.review-card--cta .review-card__name {
    color: #fff;
}

.content-section.final-cta-section {
    background-color: #182741;
    color: #fff;
    margin-top: -2rem;
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
}

.final-cta-section h2 {
    color: #fff;
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.86);
}

.section-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.25rem;
}

.text-left .section-ctas {
    justify-content: flex-start;
}

.section-ctas--left {
    justify-content: flex-start;
}

.handyman-lander .service-list {
    margin-bottom: 1.25rem;
}

.pro-connect-overview {
    background: #ffffff;
    margin-bottom: -2rem;
}

.pro-connect-lander .pro-connect-overview {
    order: 2;
}

.pro-connect-heading {
    max-width: 790px;
    margin: 0 auto 1.75rem;
    text-align: left;
}

.pro-connect-heading h2 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 0.8rem;
}

.pro-connect-proof {
    display: grid;
    gap: 0;
    max-width: 790px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    border-top: 1px solid #dbe3ee;
    border-bottom: 1px solid #dbe3ee;
}

.pro-connect-proof li {
    margin: 0;
    padding: 0.85rem 0;
    color: #475569;
    border-top: 1px solid #e8edf3;
}

.pro-connect-proof li:first-child {
    border-top: 0;
}

.pro-connect-proof strong {
    color: #0f172a;
}

.service-arrow {
    display: inline-block;
    margin: 0 0.45rem;
    color: #0f172a;
    font-size: 1.08em;
    font-weight: 900;
    line-height: 1;
    vertical-align: -0.05em;
}

.mobile-sticky-cta {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    width: min(92vw, 440px);
    padding: 0.55rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, calc(100% + 1.5rem));
    transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
}

.mobile-sticky-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    border: 1px solid #182741;
    border-radius: 10px;
    background: #182741;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.1;
    min-height: 3rem;
    padding: 0.72rem 0.7rem;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.16);
}

.mobile-sticky-cta a:last-child {
    border-color: #f59e0b;
    background: #f59e0b;
    color: #0f172a;
}

.content-wide {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.policy-section h2 {
    margin-top: 2rem;
}

.thank-you {
    text-align: center;
}

.thank-you .button {
    margin-top: 1.5rem;
}

.card-image {
    width: 20vw;
}

.carousel-module {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    width: 100%;
}

.carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.carousel-titles h3 {
    margin: 4px 0 0;
}

.carousel-controls {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.carousel-controls.is-hidden {
    display: none;
}

.carousel-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.carousel-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
    background: #f8fafc;
}

.carousel-viewport {
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.carousel-track {
    --carousel-card-size: minmax(220px, 1fr);
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: var(--carousel-card-size);
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    min-height: 240px;
    width: 100%;
}

.carousel-card {
    scroll-snap-align: start;
    border-radius: 14px;
    overflow: hidden;
    background: #f1f5f9;
    aspect-ratio: 1 / 1;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-module.is-two-row .carousel-viewport {
    min-height: calc((220px * 2) + 12px);
}

.carousel-module.is-two-row .carousel-track {
    grid-template-rows: repeat(2, 220px);
    min-height: calc((220px * 2) + 12px);
}

.carousel-module.is-autoscroll .carousel-viewport {
    overflow: hidden;
}

.carousel-module.is-autoscroll .carousel-track {
    --carousel-card-size: 220px;
    width: max-content;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
    animation: carousel-marquee var(--carousel-duration, 160s) linear infinite;
    will-change: transform;
}

.carousel-module.is-autoscroll:hover .carousel-track,
.carousel-module.is-autoscroll:focus-within .carousel-track {
    animation-play-state: paused;
}

.carousel-module.is-autoscroll.is-manual .carousel-track {
    animation: none;
    transition: transform 0.45s ease;
}

.carousel-module.is-autoscroll .carousel-card {
    scroll-snap-align: none;
}

@keyframes carousel-marquee {
    to {
        transform: translateX(calc(-50% - 6px));
    }
}

@keyframes trust-strip-marquee {
    to {
        transform: translateX(calc(-50% - 0.325rem));
    }
}

.carousel-track::-webkit-scrollbar {
    height: 8px;
}

.carousel-track::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

.carousel-track::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 999px;
}

.content-with-image .carousel-shell {
    width: 100%;
    margin: 0 auto 1.75rem;
    display: block;
    min-height: 540px;
}


/* ==========================
   RESPONSIVE BREAKPOINTS
   ========================== */
@media (max-width: 768px) {
    body.has-sticky-cta {
        padding-bottom: 86px;
    }

    .service-spotlight {
        flex-direction: column;
    }

    #company-title {
        font-size: 2rem;
    }

    .content-with-image {
        flex-direction: column;
        align-items: flex-start;
    }

    .content-with-image img,
    .text-block {
        width: 100%;
        max-height: none;
    }

    .carousel-track {
        --carousel-card-size: minmax(160px, 72%);
    }

    .carousel-module.is-two-row .carousel-viewport {
        min-height: calc((160px * 2) + 12px);
    }

    .carousel-module.is-two-row .carousel-track {
        grid-template-rows: repeat(2, 160px);
        min-height: calc((160px * 2) + 12px);
    }

    .content-with-image .carousel-shell {
        min-height: 430px;
    }

    .carousel-module.is-autoscroll .carousel-track {
        --carousel-card-size: 160px;
    }

    .carousel-header {
        align-items: flex-start;
    }

    .trust-strip__inner {
        justify-content: flex-start;
    }

    .mobile-sticky-cta a {
        min-height: 3.15rem;
        padding: 0.72rem 0.55rem;
    }

    .handyman-lander .problem-solution-copy {
        display: none;
    }

    .handyman-lander .content-with-image {
        padding-bottom: 1.5rem;
    }

    .handyman-lander .content-with-image .carousel-shell {
        margin-bottom: 0;
    }

    .pro-connect-overview {
        padding-top: 3rem;
    }

    .pro-connect-proof li {
        padding: 0.95rem 0;
    }
}

@media (max-width: 700px) {
    .trust-strip {
        padding-left: 0;
        padding-right: 0;
    }

    .trust-strip__inner {
        width: max-content;
        max-width: none;
        flex-wrap: nowrap;
        animation: trust-strip-marquee 22s linear infinite;
    }

    .trust-strip__item--clone {
        display: inline-flex;
    }
}

@media (max-width: 480px) {
    #company-title {
        font-size: 1.5rem;
    }

    .button a {
        padding: 0.5rem 1rem;
    }
}
