/* ==========================================================================
   COMPONENT: CTA FORM BLOCK (LIVING HOPE CONSULTATION FORM)
   ========================================================================== */

.cta-form-block {
    position: relative;
    width: 100%;
    padding: 20px 0 340px 0;
    background-color: var(--color-surface, #F7F2EE);
    /* DESKTOP: Dùng ảnh nền Desktop */
    background-image: var(--bg-desktop, none);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    overflow: hidden;
}

/* Lớp phủ màn gradient mờ nhẹ */
.cta-form-block__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(247, 242, 238, 0.65) 0%, rgba(247, 242, 238, 0.15) 45%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.cta-form-block__container {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* KHỐI FORM CĂN GIỮA */
.cta-form-block__wrapper {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* TIÊU ĐỀ SECTION */
.cta-form-block__title {
    font-family: var(--font-heading, 'Cormorant SC', serif);
    font-size: var(--fs-h2, 42px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-title, #456967);
    margin: 0 0 8px 0;
    letter-spacing: 1px;
}

/* ĐOẠN MÔ TẢ */
.cta-form-block__desc {
    font-family: var(--font-body, 'Nunito Sans', sans-serif);
    font-size: var(--fs-body-m, 16px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-primary, #333333);
    margin: 0 0 18px 0;
    max-width: 620px;
}

/* NÚT BẤM CONTACT US (NỀN XANH ĐẬM ĐÚNG CHUẨN) */
.cta-form-block__action {
    margin-top: 2px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.cta-form-block__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 34px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer;
    background-color: var(--color-primary-second, #456967) !important;
    color: #ffffff !important;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 14px rgba(69, 105, 103, 0.2);
    transition: all 0.3s ease;
}

.cta-form-block__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(69, 105, 103, 0.3);
    background-color: #365351 !important;
    color: #ffffff !important;
}

/* ==========================================================================
   RESPONSIVE MOBILE (< 768px) - TỰ ĐỔI SANG ẢNH MOBILE
   ========================================================================== */
@media (max-width: 768px) {
    .cta-form-block {
        /* TỰ ĐỘNG CHUYỂN SANG ẢNH NỀN MOBILE */
        background-image: var(--bg-mobile, var(--bg-desktop, none));
        background-position: center center;
        padding: 20px 0 200px 0;
    }

    .cta-form-block__title {
        font-size: 30px;
        margin-bottom: 8px;
    }

    .cta-form-block__desc {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 16px;
    }

    .cta-form-block__btn {
        width: auto;
        min-width: 170px;
    }
}