/* ============================================================
   FAQ SPLIT SECTION  (accordion + image)
   ============================================================ */

/* Section wrapper */
.faq-split-section {
    background-color: #f5f3ef;
    /* Warm cream, matching mockup */
    padding: 0px 0 30px;
    width: 100%;
    margin-top: -50px;
}

/* Inner 2-column flex row */
.faq-split-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-bottom: 70px;
}

.faq-split-inner:nth-child(even) .faq-split-right {
    order: -1;
}

/* ---- LEFT: title + accordion ---- */
.faq-split-left {
    flex: 0 0 48%;
    max-width: 48%;
    padding-top: 45px;
}

.faq-split-title {
    font-size: clamp(22px, 2.4vw, 26px);
    font-weight: 400;
    margin: 0 0 36px;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* ---- Accordion list ---- */
.faq-accordion {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.faq-acc-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

/* ---- Question button ---- */
.faq-acc-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.2s ease;
}

.faq-acc-question:hover {
    opacity: 0.75;
}

.faq-acc-text {
    font-size: 18px;
    font-weight: 200;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4;
    flex: 1;
}

/* Chevron icon */
.faq-acc-icon {
    flex-shrink: 0;
    color: #7a7774;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, color 0.2s ease;
}

.faq-acc-item.open .faq-acc-icon {
    transform: rotate(180deg);
    color: #8a7451;
}

/* ---- Collapsible answer ---- */
.faq-acc-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

/* max-height set via JS on open */

.faq-acc-answer-inner {
    font-size: 16px;
    font-weight: 200;
    line-height: 1.6;
    padding: 4px 0 24px;
}

/* ---- RIGHT: decorative image ---- */
.faq-split-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.faq-split-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.09);
    transition: transform 0.6s ease;
    border: 10px solid #FFF;
}

/* ============================================================
   RESPONSIVE: FAQ SPLIT SECTION
   ============================================================ */

@media (max-width: 1024px) {
    .faq-split-section {
        padding: 70px 0;
    }

    .faq-split-inner {
        gap: 56px;
    }

    .faq-split-left {
        flex: 0 0 52%;
        max-width: 52%;
    }
}

@media (max-width: 768px) {
    .faq-split-section {
        padding: 56px 0;
    }

    .faq-split-inner {
        flex-direction: column;
        gap: 30px;
    }

    .faq-split-left {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .faq-split-right {
        width: 100%;
    }

    .faq-split-inner {
        padding-bottom: 0;
    }

}

@media (max-width: 480px) {
    .faq-split-section {
        padding: 44px 0;
    }

    .faq-split-title {
        margin-bottom: 28px;
    }


    .faq-acc-question {
        padding: 16px 0;
    }
}

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

.contact-hero-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    background-color: #eaeae5;
    overflow: hidden;
}

.contact-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

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

    .faq-split-inner:nth-child(even) .faq-split-right {
        order: 1;
    }

    .contact-hero-banner {
        height: 300px;
    }
}

@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;
    }
}