/* Lakeside Plumbing Services Hero — Plum3 */
.lakeside-services-hero {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    min-height: 500px;
    background: #edf3f9;
}

.lakeside-services-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.lakeside-services-hero-content {
    position: relative;
    z-index: 2;
    width: 53%;
    min-height: 500px;
    box-sizing: border-box;
    padding: 60px 5.8vw 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.lakeside-services-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #075db6;
    font-size: 15px;
    font-weight: 800;
}

.lakeside-services-eyebrow span {
    display: inline-block;
    width: 32px;
    height: 3px;
    background: #075db6;
}

.lakeside-services-hero h2 {
    margin: 0 0 16px;
    color: #062c58;
    font-size: clamp(43px, 4.2vw, 68px);
    line-height: .98;
    letter-spacing: -2px;
    font-weight: 800;
}

.lakeside-services-hero p {
    max-width: 620px;
    margin: 0 0 25px;
    color: #3d4147;
    font-size: clamp(17px, 1.3vw, 21px);
    line-height: 1.38;
}

.lakeside-services-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 16px 28px;
    min-width: 210px;
    border-radius: 4px;
    background: #075fbd;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 17px;
    font-weight: 800;
    transition: .2s ease;
}

.lakeside-services-button span {
    font-size: 30px;
    line-height: 15px;
    font-weight: 300;
}

.lakeside-services-button:hover {
    background: #064d9b;
    color: #fff !important;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .lakeside-services-hero,
    .lakeside-services-hero-content { min-height: 600px; }
    .lakeside-services-hero-bg { background-position: center center; }
    .lakeside-services-hero-content {
        width: 68%;
        padding: 50px 35px;
        background: linear-gradient(90deg, rgba(247,250,252,.98), rgba(247,250,252,.15));
    }
}

@media (max-width: 650px) {
    .lakeside-services-hero,
    .lakeside-services-hero-content { min-height: 610px; }
    .lakeside-services-hero-bg { background-position: center center; }
    .lakeside-services-hero-content {
        width: 100%;
        padding: 45px 24px;
        justify-content: flex-start;
        background: linear-gradient(90deg, rgba(247,250,252,.98), rgba(247,250,252,.75));
    }
    .lakeside-services-hero h2 {
        font-size: 42px;
        letter-spacing: -1px;
    }
}
