/* =====================================================
   SERVICE LANDING PAGE: HERO BANNER
   ===================================================== */

.service-hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.service-hero-banner {
    position: relative;
    width: 100%;
    height: clamp(350px, 45vw, 700px);
    /* responsive height based on viewport width */
    background-color: #eaeae5;
}

.service-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    /* align slightly higher so the pool & sofa are visible */
    display: block;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.08) 40%,
            rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.service-hero-content {
    position: absolute;
    bottom: 8%;
    /* position near the bottom center */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    text-align: center;
    pointer-events: none;
}

.service-hero-title {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* ── Responsive breakpoints ── */

@media (max-width: 768px) {
    .service-hero-banner {
        height: 380px;
        /* fixed height for smaller tablets */
    }

    .service-hero-content {
        bottom: 12%;
    }

    .service-hero-title {
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {
    .service-hero-banner {
        height: 280px;
        /* fixed height for mobile screens */
    }

    .service-hero-content {
        bottom: 15%;
    }

    .service-hero-title {
        letter-spacing: 3px;
    }
}


/* =====================================================
   ABOUT / OBJECTIVE SPLIT SECTION
   ===================================================== */

.about-split-section {
    width: 100%;
    background: #fff;
    overflow: hidden;
}

/* Flex wrapper: left text + right image, full viewport width */
.about-split-inner {
    display: flex;
    align-items: stretch;
    min-height: 480px;
}

/* ---- LEFT column: takes ~50% width, text inside container ---- */
.about-split-left {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    /* Push text to the right so it aligns with the container edge */
    justify-content: flex-end;
    padding: 72px 0;
    padding-left: calc((100% - 1290px) / 2);
}




/* ---- RIGHT column: image full-bleed to edge ---- */
.about-split-right {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
}

.about-split-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.about-split-right:hover .about-split-img {
    transform: scale(1.03);
}

/* =====================================================
   RESPONSIVE: ABOUT SPLIT SECTION
   ===================================================== */

/* Tablet: shrink padding */
@media (max-width: 1100px) {
    .about-text-wrap {
        padding-right: 48px;
    }
}

@media (max-width: 991px) {
    .about-text-wrap {
        padding-right: 32px;
        padding-left: 24px;
    }
}

/* Mobile: stack vertically, image on top */
@media (max-width: 767px) {
    .about-split-inner {
        flex-direction: column-reverse;
        min-height: auto;
    }

    .about-split-left,
    .about-split-right {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .about-split-right {
        height: 56vw;
        min-height: 240px;
        max-height: 400px;
    }

    .about-split-left {
        justify-content: flex-start;
        padding: 48px 0;
    }

    .about-text-wrap {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-heading {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .about-split-left {
        padding: 36px 0;
    }

    .about-btn {
        padding: 14px 26px;
        font-size: 10px;
    }
}

/* =====================================================
   SERVICE FEATURE SECTION: EXPERT VISION & INDEPTH ADVICE
   ===================================================== */

.sv-feature-section {
    background-color: #F2F2EB;
    /* warm linen / off-white matching reference */
    padding: 80px 0;
    overflow: hidden;
}

/* ---- Flex inner: collage left + text right ---- */
.sv-feature-inner {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

/* ---- LEFT: Collage ---- */
.sv-feature-collage {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
    min-height: 460px;
}

/* Top image: sits to the right within the collage, slightly higher */
.sv-collage-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 72%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 1;
    background: #fff;
    padding: 10px;
}

/* Bottom image: overlaps lower-left, larger, in front */
.sv-collage-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 68%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 2;
    background: #fff;
    padding: 10px;
}

.sv-collage-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ---- RIGHT: Text ---- */
.sv-feature-text {
    flex: 1;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* .sv-feature-block — no specific styles needed beyond flex gap */

/* Section heading: "EXPERT VISION" */
.sv-feature-heading {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 16px;
    line-height: 1;
}

.sv-feature-body ul {
    /* list-style: none; */
}

.sv-feature-body ul li {
    margin-bottom: 6px;
    margin-left: 20px;
}

#sv-get-in-touch {
    width: max-content;
}

/* ── Responsive ── */

@media (max-width: 1100px) {
    .sv-feature-inner {
        gap: 50px;
    }

    .sv-feature-collage {
        flex: 0 0 42%;
        max-width: 42%;
        min-height: 400px;
    }
}

@media (max-width: 900px) {
    .sv-feature-inner {
        gap: 40px;
    }

    .sv-feature-collage {
        flex: 0 0 40%;
        max-width: 40%;
        min-height: 360px;
    }
}

@media (max-width: 767px) {
    .sv-feature-section {
        padding: 70px 0 80px;
    }

    .sv-feature-inner {
        flex-direction: column;
        gap: 0;
    }

    .sv-feature-collage {
        flex: none;
        max-width: 100%;
        width: 100%;
        min-height: 340px;
        /* space for overlapping bottom image */
        margin-bottom: 35px;
    }

    .sv-collage-top {
        width: 65%;
    }

    .sv-collage-bottom {
        width: 60%;
    }

    .sv-feature-text {
        padding-top: 0;
        gap: 30px;
    }

    .sv-feature-body {
        max-width: 100%;
    }

    .sv-feature-btn {
        align-self: stretch;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .sv-feature-section {
        padding: 40px 0;
    }

    .sv-feature-collage {
        min-height: 280px;
    }

    .sv-collage-top {
        padding: 6px;
    }

    .sv-collage-bottom {
        padding: 6px;
    }
}

/* =====================================================
   OUR PROCESS SECTION
   ===================================================== */

.sv-process-section {
    background-color: #ffffff;
    padding: 80px 0;
}

/* ---- Section heading ---- */
.sv-process-title {
    font-size: clamp(22px, 2vw, 26px);
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    margin: 0 0 60px;
}

/* ---- 3-column CSS Grid with border dividers ---- */
.sv-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    border: none;
    /* No outer border */
}

.sv-process-cell {
    padding: 50px 40px;
    text-align: center;
    border: none;
}

/* 3-column borders (Desktop) */
@media (min-width: 992px) {
    .sv-process-cell {
        border-right: 1px solid #7d7d76;
    }

    .sv-process-cell:nth-child(3n) {
        border-right: none;
    }

    .sv-process-cell:nth-child(-n+3) {
        border-bottom: 1px solid #7d7d76;
    }
}

/* ---- Step heading: "1. CONSULT" ---- */
.sv-process-step-title {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 22px;
    line-height: 1;
}


/* ---- Body paragraph ---- */
.sv-process-body {
    font-size: 16px;
    font-weight: 200;
    line-height: 1.8;
    margin: 0;
}

/* Highlight some text in blue (matching the reference selective blue text) */
.sv-process-body .sv-blue {
    color: #4a6fa5;
}

/* ── Responsive ── */

/* 2-column borders (Tablet) */
@media (max-width: 991px) and (min-width: 768px) {
    .sv-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-process-cell {
        border-right: 1px solid #7d7d76;
        border-bottom: 1px solid #7d7d76;
    }

    .sv-process-cell:nth-child(2n) {
        border-right: none;
    }

    .sv-process-cell:nth-child(5),
    .sv-process-cell:nth-child(6) {
        border-bottom: none;
    }
}

/* 1-column borders (Mobile) */
@media (max-width: 767px) {
    .sv-process-section {
        padding: 70px 0 80px;
    }

    .sv-process-title {
        margin-bottom: 25px;
    }

    .sv-process-grid {
        grid-template-columns: 1fr;
    }

    .sv-process-cell {
        padding: 36px 24px;
        border-right: none;
        border-bottom: 1px solid #7d7d76;
    }

    .sv-process-cell:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .sv-process-section {
        padding: 50px 0 20px;
    }

    .sv-process-cell {
        padding: 30px 20px;
    }
}

/* =====================================================
   CTA BANNER SECTION
   ===================================================== */

.sv-cta-section {
    position: relative;
    width: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ---- Background image layer ---- */
.sv-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sv-cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.sv-cta-overlay {
    position: absolute;
    inset: 0;
    /* very light dark wash so the card stands out */
    background: rgba(30, 28, 26, 0.15);
}

/* ---- Container layer over the image ---- */
.sv-cta-ctnr {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 120px;
}

/* ---- Cream semi-transparent card ---- */
.sv-cta-card {
    background: #F2F2EB;
    /* warm cream with slight transparency */
    padding: 60px;
    max-width: 650px;
    text-align: center;
    /* Center horizontally within ctnr */
    margin: 0 auto;
}

/* ---- Heading ---- */
.sv-cta-heading {
    font-size: clamp(22px, 2vw, 26px);
    font-weight: 300;
    line-height: 1.5;
    /* dark almost-black */
    margin: 0 0 32px;
    letter-spacing: 1px;
}

.sv-cta-accent {
    color: #8a7451;
    /* warm gold-brown, matching "Property Styling" highlight */
}

/* ---- CTA Button ---- */
.sv-cta-btn {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background: #6b5b3e;
    /* dark taupe, matching reference button */
    padding: 18px 32px;
    transition: background 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.sv-cta-btn:hover {
    background: #4a3f2d;
    transform: translateY(-1px);
    color: #ffffff;
    text-decoration: none;
}

/* ── Responsive ── */

@media (max-width: 991px) {
    .sv-cta-card {
        max-width: 420px;
        padding: 40px 44px;
    }
}

@media (max-width: 767px) {
    .sv-cta-section {
        min-height: 280px;
    }

    .sv-cta-ctnr {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .sv-cta-card {
        max-width: 100%;
        padding: 36px 32px;
    }

    .sv-cta-btn {
        white-space: normal;
        display: block;
    }
}

@media (max-width: 480px) {
    .sv-cta-ctnr {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .sv-cta-card {
        padding: 28px 22px;
    }

    .sv-cta-btn {
        letter-spacing: 1.5px;
        padding: 16px 24px;
    }
}