/* ==========================================
        AI CONSULTATION SECTION
========================================== */

.consultation-section{

    padding:100px 0;

    background:#F4F2EC;

}

.consultation-wrapper{

    width:100%;

    max-width:1100px;

    margin:auto;

}


/* ==========================================
                HEADING
========================================== */

.section-heading{

    text-align:center;

    margin-bottom:50px;

}

.section-label{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:999px;

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:.18em;

    color:#666;

    margin-bottom:20px;

}

.section-label::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--orange);

}

.section-heading h2{

    font-size:clamp(2.5rem,5vw,4rem);

    font-weight:800;

    letter-spacing:-2px;

    color:#111;

    margin-bottom:18px;

}

.section-heading p{

    max-width:700px;

    margin:auto;

    color:#666;

    font-size:18px;

    line-height:1.8;

}


/* ==========================================
                FORM
========================================== */

.consultation-form{

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:40px;

    box-shadow:0 20px 50px rgba(0,0,0,.05);

}


/* ==========================================
                LABELS
========================================== */

.form-label{

    font-size:13px;

    font-weight:600;

    color:#555;

    margin-bottom:8px;

}


/* ==========================================
            INPUTS
========================================== */

.form-control,
.form-select{

    height:56px;

    border:1px solid #dddddd;

    border-radius:14px;

    padding:0 18px;

    font-size:15px;

    transition:.3s;

    box-shadow:none !important;

}

textarea.form-control{

    height:150px;

    padding:18px;

    resize:vertical;

}

.form-control::placeholder{

    color:#9b9b9b;

}

.form-control:focus,
.form-select:focus{

    border-color:var(--orange);

    box-shadow:0 0 0 4px rgba(255,139,77,.12) !important;

}


/* ==========================================
                FOOTER
========================================== */

.form-footer{

    margin-top:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

}

.form-note{

    color:#777;

    font-size:14px;

}

.btn-submit{

    border:none;

    background:#111;

    color:#fff;

    padding:16px 34px;

    border-radius:14px;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.btn-submit:hover{

    background:var(--orange);

    transform:translateY(-3px);

}


/* ==========================================
            RESPONSIVE
========================================== */

@media(max-width:992px){

    .consultation-form{

        padding:30px;

    }

}

@media(max-width:768px){

    .consultation-section{

        padding:70px 0;

    }

    .section-heading{

        margin-bottom:35px;

    }

    .section-heading h2{

        font-size:38px;

    }

    .section-heading p{

        font-size:16px;

    }

    .consultation-form{

        padding:22px;

    }

    .form-footer{

        flex-direction:column;

        align-items:stretch;

    }

    .form-note{

        text-align:center;

    }

    .btn-submit{

        width:100%;

    }

}

.field-note{

    display:block;

    margin-top:8px;

    font-size:12px;

    line-height:1.5;

    color:#7a7a7a;

}