/* =====================================================
   HOME BANNER SLIDER - SLICK SLIDE
   ===================================================== */

/* ---- Wrapper ---- */
.banner-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0d0d0d;
}

/* ---- Each slide ---- */
.banner-slider .banner-slide {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 480px;
    max-height: 900px;
    overflow: hidden;
    outline: none;
}

/* ---- Background image ---- */
.banner-slider .banner-slide .banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Ken Burns zoom in when slide is active */
.banner-slider .slick-active .banner-bg {
    transform: scale(1);
}

/* ---- Gradient overlay ---- */
.banner-slider .banner-slide .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.10) 0%,
            rgba(0, 0, 0, 0.08) 40%,
            rgba(0, 0, 0, 0.45) 75%,
            rgba(0, 0, 0, 0.62) 100%);
    z-index: 1;
}

/* ---- Content area ---- */
.banner-slider .banner-slide .banner-content {
    position: absolute;
    bottom: 11%;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s,
        transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
}

.banner-slider .slick-active .banner-content {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Subtitle ---- */
.banner-slide .banner-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.7s ease 0.65s,
        transform 0.7s ease 0.65s;
}

.banner-slider .slick-active .banner-subtitle {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Heading ---- */
.banner-slide .banner-title {
    font-size: clamp(22px, 4.5vw, 46px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.18;
    margin: 0 auto 20px;
    max-width: 900px;
    text-shadow: 0em 0em 0.3em rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.8s ease 0.75s,
        transform 0.8s ease 0.75s;
    text-transform: uppercase;
}

.banner-slider .slick-active .banner-title {
    opacity: 1;
    transform: translateY(0);
}

/* ---- CTA Button ---- */
.banner-slide .banner-cta {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.75);
    padding: 14px 36px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.7s ease 0.95s,
        transform 0.7s ease 0.95s,
        color 0.38s ease,
        border-color 0.38s ease,
        background 0.38s ease;
}

.banner-slide .banner-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.38s ease;
}

.banner-slide .banner-cta:hover::before {
    transform: scaleX(1);
}

.banner-slide .banner-cta:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.banner-slider .slick-active .banner-cta {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   SLICK ARROW CUSTOMIZATION
   ===================================================== */
.banner-slider-section .slick-prev,
.banner-slider-section .slick-next {
    z-index: 10;
    width: 52px;
    height: 52px;
    top: 50%;
    transform: translateY(-50%);
}

.banner-slider-section .slick-prev {
    left: 28px;
}

.banner-slider-section .slick-next {
    right: 28px;
}

.banner-slider-section .slick-prev::before,
.banner-slider-section .slick-next::before {
    content: '';
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.30);
    font-family: 'Material Symbols Outlined';
    font-size: 22px;
    color: #fff;
    line-height: 52px;
    text-align: center;
    transition: background 0.3s ease;
    opacity: 1;
}

.banner-slider-section .slick-prev::before {
    content: 'chevron_left';
}

.banner-slider-section .slick-next::before {
    content: 'chevron_right';
}

.banner-slider-section .slick-prev:hover::before,
.banner-slider-section .slick-next:hover::before {
    background: rgba(255, 255, 255, 0.30);
}

/* =====================================================
   SLICK DOTS CUSTOMIZATION
   ===================================================== */
.banner-slider-section .slick-dots {
    bottom: 28px;
    z-index: 10;
}

.banner-slider-section .slick-dots li {
    margin: 0 5px;
    width: auto;
    height: auto;
}

.banner-slider-section .slick-dots li button {
    width: 28px;
    height: 3px;
    padding: 0;
    background: rgba(255, 255, 255, 0.40);
    border-radius: 2px;
    transition: width 0.35s ease, background 0.35s ease;
}

.banner-slider-section .slick-dots li button::before {
    display: none;
}

.banner-slider-section .slick-dots li.slick-active button {
    width: 52px;
    background: #ffffff;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
    .banner-slider .banner-slide {
        height: 70vh;
        min-height: 380px;
    }

    .banner-slider-section .slick-prev {
        left: 14px;
    }

    .banner-slider-section .slick-next {
        right: 14px;
    }
}

@media (max-width: 767px) {
    .banner-slider .banner-slide {
        height: 60vh;
        min-height: 320px;
    }

    .banner-slider .banner-slide .banner-content {
        bottom: 10%;
    }

    .banner-slide .banner-cta {
        font-size: 11px;
        padding: 12px 26px;
        letter-spacing: 2px;
    }

    .banner-slider-section .slick-prev,
    .banner-slider-section .slick-next {
        width: 40px;
        height: 40px;
    }

    .banner-slider-section .slick-prev::before,
    .banner-slider-section .slick-next::before {
        width: 40px;
        height: 40px;
        font-size: 18px;
        line-height: 40px;
    }

    .banner-slider-section .slick-dots {
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    .banner-slider .banner-slide {
        height: 55vh;
        min-height: 280px;
    }

    .banner-slider-section .slick-prev,
    .banner-slider-section .slick-next {
        display: none !important;
    }
}


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

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

/* 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); */
}

/* Inner text wrapper respects container max-width */
/* .about-text-wrap {
    width: 100%;
    max-width: 520px;
    padding-right: 72px;
    padding-left: 20px;
} */

.about-text-wrap {
    padding: 0 60px 0 15px;
}

/* Eyebrow */
.about-eyebrow {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* warm gold-brown */
    margin: 0 0 10px;
    line-height: 1;
}

/* Main heading */
.about-content h2 {
    font-size: clamp(22px, 2.4vw, 26px);
    /* font-size: 26px; */
    font-weight: 500;
    line-height: 1.45;
    margin: 0 0 15px;
}

/* Body text */
.about-content p {
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 10px;
}

/* CTA button */
.about-btn {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: var(--color-3);
    border: 1px solid var(--color-3);
    /* warm dark taupe */
    padding: 15px 40px;
    font-weight: 400;
    transition: background 0.3s ease, transform 0.2s ease;
}

.about-btn:hover {
    background: var(--color-4);
    color: var(--color-1);
    border-color: #171717;
}

/* ---- 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;
        order: 1;
    }

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

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

    .about-split-section {
        padding: 0px 0 30px;
    }
}

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

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


/* =====================================================
   SERVICE HIGHLIGHT SECTION (Property Styling)
   ===================================================== */

.service-highlight-section {
    background: #F2F2EB;
    /* light warm beige giống ảnh */
    padding: 80px 0;
}

/* 2-col flex layout inside container */
.service-highlight-inner {
    display: flex;
    align-items: center;
    gap: 72px;
}

/* ---- LEFT: collage ---- */
.service-collage {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    /* Height driven by back image */
    min-height: 480px;
}

/* Background image — larger, behind, shifted top-left */
.service-collage-back {
    position: relative;
    z-index: 1;
    width: 76%;
    /* ~380px on 500px column */
    margin-left: 0;
    margin-top: 32px;
    /* pushes it down so front image can sit higher */
    border: 6px solid #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.service-collage-back .service-collage-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: transform 0.6s ease;
}

/* Front image — smaller, overlaps back image from the right */
.service-collage-front {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    /* sits higher than back image */
    width: 54%;
    /* ~270px */
    border: 6px solid #fff;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.13);
    overflow: hidden;
}

.service-collage-front .service-collage-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3/4;
    transition: transform 0.6s ease;
}

.service-collage-back:hover .service-collage-img,
.service-collage-front:hover .service-collage-img {
    transform: scale(1.04);
}

/* ---- RIGHT: text ---- */
.service-highlight-text {
    flex: 1;
    min-width: 0;
}

/* Body */
.service-body {
    margin: 0 0 36px;
}

/* =====================================================
   RESPONSIVE: SERVICE HIGHLIGHT
   ===================================================== */

@media (max-width: 1100px) {
    .service-highlight-inner {
        gap: 48px;
    }
}

@media (max-width: 991px) {
    .service-highlight-section {
        padding: 60px 0;
    }

    .service-highlight-inner {
        gap: 36px;
    }

    .service-collage {
        flex: 0 0 48%;
        max-width: 48%;
    }
}

/* Tablet: stack vertically */
@media (max-width: 767px) {
    .service-highlight-inner {
        flex-direction: column;
        gap: 30px;
    }

    .service-collage {
        flex: none;
        max-width: 100%;
        width: 100%;
        min-height: 300px;
    }

    .service-collage-back {
        width: 72%;
        margin-top: 24px;
    }

    .service-collage-front {
        width: 50%;
    }

    .service-highlight-text {
        width: 100%;
    }

    .service-body {
        max-width: 100%;
    }
}

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

    .service-collage {
        min-height: 240px;
    }

    .service-collage-back {
        width: 70%;
    }

    .service-collage-front {
        width: 52%;
    }

    .service-btn {
        padding: 13px 28px;
        font-size: 10px;
    }
}


/* =====================================================
   DARK SERVICE SECTION (Airbnb / Holiday Home Styling)
   ===================================================== */

.dark-service-section {
    background: #222222;
    padding: 80px 0;
    color: #FFF;
}

/* Inner flex: left text + right image, full-height */
.dark-service-inner {
    display: flex;
    align-items: center;
    min-height: 580px;
}

/* ---- LEFT: text ---- */
.dark-service-text {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 80px 80px 80px 0;
}

/* Body */
.dark-service-body {
    margin: 0 0 40px;
}

/* Button */
.dark-service-btn {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: #6b5b3e;
    padding: 16px 36px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.dark-service-btn:hover {
    background: #8a7451;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

/* ---- RIGHT: image ---- */
.dark-service-image {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
    align-self: stretch;
    /* match full column height */
}

.dark-service-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-height: 480px;
    transition: transform 0.65s ease;
}

.dark-service-image:hover .dark-service-img {
    transform: scale(1.04);
}

/* =====================================================
   RESPONSIVE: DARK SERVICE SECTION
   ===================================================== */

@media (max-width: 1100px) {
    .dark-service-text {
        padding: 72px 48px 72px 0;
    }
}

@media (max-width: 991px) {
    .dark-service-text {
        padding: 60px 36px 60px 0;
    }

    .dark-service-body {
        max-width: 100%;
    }
}

/* Mobile: stack — image on top, text below */
@media (max-width: 767px) {
    .dark-service-inner {
        flex-direction: column-reverse;
        min-height: auto;
    }

    .dark-service-text,
    .dark-service-image {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .dark-service-text {
        padding: 48px 0 52px;
    }

    .dark-service-image {
        height: 60vw;
        min-height: 260px;
        max-height: 420px;
        align-self: auto;
    }

    .dark-service-img {
        min-height: unset;
        height: 100%;
    }

    .dark-service-body {
        max-width: 100%;
    }

    .dark-service-section {
        padding: 45px 0;
    }
}

@media (max-width: 480px) {
    .dark-service-text {
        padding: 36px 0 0px;
    }

    .dark-service-btn {
        padding: 13px 28px;
        font-size: 10px;
    }

    .dark-service-image {
        height: 65vw;
    }
}


/* =====================================================
   WHY CHOOSE US — CENTER MODE SLIDER
   ===================================================== */

.why-choose-section {
    background: #F2F2EB;
    padding: 80px 0 30px;
}

/* ---- Section title ---- */
.why-choose-title {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 50px;
    line-height: 1;
}

/* ---- Slider outer: holds arrows ---- */
.why-choose-slider-outer {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 64px;
}

/* ---- Each slide item ---- */
.wcs-item {
    transform: scale(0.85);
    padding: 0 12px;
    outline: none;
    transform-origin: center center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slick-center.wcs-item {
    transform: scale(1);
}

/* Image wrapper — portrait aspect */
.wcs-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #ccc;

    box-sizing: border-box;
}

.slick-center.wcs-item .wcs-img-wrap {
    border: 10px solid #ffffff;
}

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

.wcs-img-wrap:hover .wcs-img {
    transform: scale(1.04);
}

/* ---- Dim overlay: active on non-center slides ---- */
.wcs-dim-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    transition: opacity 0.55s ease;
    pointer-events: none;
}

.slick-center .wcs-dim-overlay {
    opacity: 0;
}

/* ---- Title box: always visible at bottom of center slide ---- */
.wcs-title-box {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #FFF;
    padding: 14px 10px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    display: inline-block;
    min-width: 80%;
}

.slick-center .wcs-title-box {
    opacity: 1;
}

/* ---- Meta below slide ---- */
.wcs-meta {
    text-align: center;
    padding: 20px 8px 0;
    min-height: 160px;
}

/* Caption: visible on non-center slides */
.wcs-caption {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    opacity: 1;
    transition: max-height 0.35s ease, opacity 0.3s ease;
}

.slick-center .wcs-caption {
    max-height: 0;
    opacity: 0;
    margin: 0;
}

/* Description: visible only on center slide */
.wcs-desc {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease 0.15s,
        opacity 0.45s ease 0.25s;
}

.slick-center .wcs-desc {
    max-height: 200px;
    opacity: 1;
}

/* =====================================================
   CUSTOM ARROWS
   ===================================================== */

.wcs-arrow {
    position: absolute;
    top: 40%;
    /* vertically centered on image area */
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-3);
    background: #F2F2EB !important;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 1;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.wcs-arrow span {
    font-size: 18px;
    line-height: 1;
    transition: color 0.3s ease;
}

.wcs-arrow:hover {
    background: var(--color-3) !important;
}

.wcs-arrow:hover span {
    color: #fff;
}

.wcs-prev {
    left: 4px;
}

.wcs-next {
    right: 4px;
}

/* =====================================================
   RESPONSIVE: WHY CHOOSE US
   ===================================================== */

@media (max-width: 1200px) {
    .why-choose-slider-outer {
        padding: 0 30px;
    }
}

@media (max-width: 1023px) {
    .why-choose-slider-outer {
        padding: 0 30px;
    }

    .wcs-item {
        padding: 0 6px;
    }
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 50px 0;
    }

    .why-choose-slider-outer {
        padding: 0 25px;
    }

    .wcs-caption {
        display: none;
    }
}

@media (max-width: 480px) {
    .why-choose-slider-outer {
        padding: 0 15px;
    }

    .wcs-desc {
        font-size: 14px;
    }

    .wcs-title-box {
        font-size: 13px;
    }

    .wcs-arrow {
        width: 36px;
        height: 36px;
    }

    .wcs-arrow span {
        font-size: 15px;
    }

    .why-choose-title {
        font-size: 20px;
        letter-spacing: 4px;
        margin-bottom: 40px;
    }
}


/* =====================================================
   SUPPORTED BY SPLIT SECTION (image left, text right)
   ===================================================== */

.supported-split-section {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
    padding: 50px 0;
}

/* Flex wrapper full viewport width */
.supported-split-inner {
    display: flex;
    align-items: stretch;
    min-height: 520px;
}

/* ---- LEFT: full-bleed image ---- */
.supported-split-left {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
}

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

.supported-split-left:hover .supported-split-img {
    transform: scale(1.03);
}

/* ---- RIGHT: text, aligned left inside container logic ---- */
.supported-split-right {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 72px 0;
    padding-right: calc((100% - 1290px) / 2);
}

.supported-text-wrap {
    padding: 0 15px 0 100px;
}

/* ---- Body text ---- */
.supported-body {
    margin: 0 0 36px;
}


/* ---- Button ---- */
.supported-btn {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: #6b5b3e;
    padding: 16px 36px;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

/* =====================================================
   RESPONSIVE: SUPPORTED SPLIT SECTION
   ===================================================== */

@media (max-width: 1100px) {
    .supported-text-wrap {
        padding-left: 52px;
    }
}

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

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

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

    .supported-split-left {
        height: 60vw;
        min-height: 260px;
        max-height: 440px;
    }

    .supported-split-right {
        justify-content: flex-start;
        padding: 48px 0;
    }

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

    .supported-split-section {
        padding: 30px 0 0;
    }
}

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

    .supported-btn {
        padding: 14px 28px;
        font-size: 10px;
    }
}


/* =====================================================
   TESTIMONIAL SLIDER SECTION
   ===================================================== */

.testimonial-section {
    background: var(--color-3);
    /* warm taupe giống ảnh */
    padding: 72px 0 80px;
}

/* Each slide */
.testimonial-slide {
    text-align: center;
    outline: none;
    padding: 0 24px;
}

/* Large closing quote mark */
.testimonial-quote-mark {
    width: 52px;
    margin: 0 auto 28px;
    display: block;
    user-select: none;
}

.testimonial-quote-mark svg {
    width: 100%;
    height: auto;
    display: block;
    color: #FFF;
}

/* Quote text */
.testimonial-text {
    font-size: clamp(18px, 1.6vw, 24px);
    font-weight: 200;
    line-height: 1.5;
    color: #ffffff;
    margin: 0 auto 40px;
    max-width: 640px;
    letter-spacing: 1px;
    border: none;
    padding: 0;
    quotes: none;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 200;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFF;
    margin: 0;
    text-align: left;
}

.testimonial-author-avatar {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.testimonial-author-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFF;
    display: block;
}

/* =====================================================
   TESTIMONIAL DOTS — custom white style
   ===================================================== */

.testimonial-section .slick-dots {
    position: static;
    margin-top: 36px;
    line-height: 1;
}

.testimonial-section .slick-dots li {
    margin: 0 5px;
    width: auto;
    height: auto;
}

.testimonial-section .slick-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    padding: 0;
    background: rgba(255, 255, 255, 0.40);
    border: 1.5px solid rgba(255, 255, 255, 0.60);
    transition: background 0.3s ease, transform 0.2s ease;
}

.testimonial-section .slick-dots li button::before {
    display: none;
}

.testimonial-section .slick-dots li.slick-active button {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.2);
}

/* =====================================================
   RESPONSIVE: TESTIMONIAL
   ===================================================== */

@media (max-width: 767px) {
    .testimonial-section {
        padding: 56px 0 64px;
    }

    .testimonial-quote-mark {
        font-size: 64px;
        margin-bottom: 24px;
    }

    .testimonial-slide {
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .testimonial-section {
        padding: 48px 0 56px;
    }

    .testimonial-quote-mark {
        font-size: 52px;
        margin-bottom: 20px;
    }

}

/* ============================================================
   GET STARTED SECTION
   - Layout: white card left + image panel right, overlapping
   - Hover on menu items switches the right-side image
   ============================================================ */

.get-started-section {
    background-color: #F2F2EB;
    padding: 120px 0;
}

.get-started-inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 480px;
}

/* Left white card */
.get-started-card {
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 60px;
    width: 52%;
    /* min-width: 320px; */
    box-shadow: 0 4px 32px 0 rgba(60, 50, 30, 0.07);
}

.get-started-label {
    display: block;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

/* Menu list */
.get-started-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.get-started-menu li {
    border-bottom: 1px solid #e2ddd6;
}

.get-started-menu li:first-child {
    border-top: 1px solid #e2ddd6;
}

.get-started-menu li a {
    display: block;
    padding: 18px 0 17px;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.25s ease;
    position: relative;
    cursor: pointer;
}

.get-started-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 2px;
    width: 0;
    background: var(--color-3);
    transition: width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.get-started-menu li.is-active a::after,
.get-started-menu li:hover a::after {
    width: 100%;
}

/* Right image panel */
.get-started-image-panel {
    position: absolute;
    right: 0;
    top: -32px;
    bottom: -32px;
    width: 56%;
    overflow: hidden;
    z-index: 1;
}

.get-started-image-panel .gs-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.04);
    pointer-events: none;
}

.get-started-image-panel .gs-img.is-active {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 1024px) {
    .get-started-inner {
        flex-direction: column;
        min-height: unset;
    }

    .get-started-card {
        width: 100%;
        box-sizing: border-box;
        padding: 44px 36px;
        z-index: 2;
    }

    .get-started-image-panel {
        position: relative;
        right: unset;
        top: unset;
        bottom: unset;
        width: 100%;
        height: 380px;
        margin-top: -20px;
        z-index: 1;
    }
}

@media (max-width: 768px) {
    .get-started-section {
        padding: 45px 0;
    }

    .get-started-card {
        padding: 36px 24px;
    }

    .get-started-image-panel {
        height: 300px;
        margin-top: -10px;
    }

    .get-started-label {
        margin-bottom: 24px;
    }

    .get-started-menu li a {
        font-size: 15px;
        padding: 15px 0 14px;
    }
}

@media (max-width: 480px) {
    .get-started-card {
        padding: 28px 16px;
    }

    .get-started-image-panel {
        height: 240px;
    }
}

/* ============================================================
   CTA PROPERTY STYLING SECTION
   ============================================================ */

.cta-styling-section {
    position: relative;
    background-image: url('../images/property-styling-cta-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    display: flex;
    align-items: center;
}

.cta-styling-inner {
    display: flex;
    justify-content: flex-end;
    /* Align card to the right */
    width: 100%;
}

.cta-styling-card {
    background-color: #f5f3ef;
    /* Light beige/cream box */
    padding: 56px 60px;
    width: 100%;
    max-width: 560px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.cta-styling-subtitle {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #8b6914;
    /* Gold accent color */
    letter-spacing: 2.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.cta-styling-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.35;
    color: #2c2520;
    margin-bottom: 24px;
}

.cta-styling-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 36px;
}

.cta-phone-link {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-phone-link:hover {
    color: #8b6914;
}

.cta-styling-btn {
    display: inline-block;
    background-color: #897762;
    /* Olive brown color from image */
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 18px 40px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-styling-btn:hover {
    background-color: #716150;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(113, 97, 80, 0.2);
}

/* ── Responsive ── */

@media (max-width: 1024px) {
    .cta-styling-section {
        padding: 90px 0;
    }

    .cta-styling-inner {
        justify-content: center;
        /* Center card on tablets */
    }

    .cta-styling-card {
        max-width: 600px;
        padding: 48px 50px;
    }
}

@media (max-width: 768px) {
    .cta-styling-section {
        padding: 80px 0;
    }

    .cta-styling-card {
        padding: 40px 36px;
    }

    .cta-styling-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .cta-styling-desc {
        font-size: 13.5px;
        margin-bottom: 28px;
    }
}

@media (max-width: 480px) {
    .cta-styling-section {
        padding: 60px 0;
    }

    .cta-styling-card {
        padding: 36px 24px;
    }

    .cta-styling-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .cta-styling-desc {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .cta-styling-btn {
        padding: 15px 30px;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

/* =====================================================
   STYLING PACKAGES & PRICING SECTION
   ===================================================== */

.styling-packages-section {
    background-color: #f7f7f4;
    /* warm off-white */
    padding: 70px 0;
}

.packages-header {
    text-align: center;
    margin-bottom: 50px;
}

.packages-subtitle {
    font-size: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 500;
}

.packages-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
}

.package-card {
    flex: 1;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Vertical borders between columns */
.package-card:not(:last-child) {
    border-right: 1px solid #e2e2dc;
}

.package-name {
    font-size: clamp(22px, 3.2vw, 32px);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.price-box {
    width: 100%;
    padding: 14px 0;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.price-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100px;
    height: 2px;
    background-color: var(--color-3);
    left: 50%;
    transform: translateX(-50%);
}

.price-label {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-3);
}

.package-tagline {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 auto 30px auto;
    max-width: 280px;
    min-height: 44px;
    /* maintain height alignment */
}

.includes-section {
    width: 100%;
    margin-bottom: 35px;
    min-height: 290px;
}

.section-title {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.includes-list ul,
.recommended-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li,
.recommended-list li {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 6px;
    font-weight: 300;
}

.package-image-wrap {
    width: 100%;
    max-width: 320px;
    height: 200px;
    margin: 0 auto 40px auto;
    overflow: hidden;
    background-color: #eaeae5;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .package-img {
    transform: scale(1.05);
}

/* ── Responsive styling ── */

@media (max-width: 1024px) {
    .package-card {
        padding: 0 25px;
    }

    .package-tagline {
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .packages-grid {
        flex-direction: column;
    }

    .package-card {
        padding: 30px 0;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .package-card:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #e2e2dc;
    }

    .includes-section {
        min-height: auto;
    }

    .styling-packages-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .styling-packages-section {
        padding: 40px 0 20px;
    }

    .packages-header {
        margin-bottom: 10px;
    }
}