/*==================================================
ENQUIRY SECTION
==================================================*/

.enquiry-section{
    padding:40px 0;
    background:#f5f5f5;
}

.enquiry-wrapper{
    display:flex;
    width:1200px;
    max-width:100%;
    margin:0 auto;
    background:#fff;
    border:1px solid #d8d8d8;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    overflow:hidden;
}

.enquiry-section *,
.enquiry-section *::before,
.enquiry-section *::after{
    box-sizing:border-box;
}

/*==================================================
LEFT PANEL
==================================================*/

.left-panel{
    width:400px;
    min-width:400px;
    background:#efefef;
    padding:30px 20px;
    border-right:1px solid #d9d9d9;
    min-height:650px;
}

.left-panel h2{
    margin:0;
    font-size:32px;
    font-weight:600;
    color:#2F7D1F;
    line-height:1.3;
}

/*==================================================
RIGHT PANEL
==================================================*/

.right-panel{
    width:800px;
    padding:25px;
    background:#fff;
}

/*==================================================
FORM ROW
==================================================*/

.enquiry-section .row{
    display:flex;
    gap:15px;
    margin-bottom:15px;
}

.form-group{
    flex:1;
}

.form-group.full{
    width:100%;
    margin-bottom:15px;
}

/*==================================================
LABEL
==================================================*/

.enquiry-section label{
    display:block;
    margin-bottom:6px;
    font-size:14px;
    font-weight:600;
    color:#2F7D1F;
}

.enquiry-section label span{
    color:#d91d27;
}

.enquiry-section label small{
    color:#777;
    font-size:11px;
    font-weight:400;
}

/*==================================================
INPUTS
==================================================*/

.enquiry-section input,
.enquiry-section select,
.enquiry-section textarea{
    width:100%;
    border:1px solid #cfcfcf;
    background:#fff;
    padding:10px 12px;
    font-size:14px;
    outline:none;
    transition:all .3s ease;
    border-radius:2px;
}

.enquiry-section input,
.enquiry-section select{
    height:42px;
}

.enquiry-section textarea{
    min-height:100px;
    resize:vertical;
}

.enquiry-section input:focus,
.enquiry-section select:focus,
.enquiry-section textarea:focus{
    border-color:#d91d27;
    box-shadow:0 0 5px rgba(217,29,39,.15);
}

/*==================================================
PLACEHOLDER
==================================================*/

.enquiry-section input::placeholder,
.enquiry-section textarea::placeholder{
    color:#999;
}

/*==================================================
CAPTCHA
==================================================*/

.captcha-box{
    width:90px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#9ff0b3;
    border:1px solid #7ed28f;
    font-size:22px;
    font-weight:bold;
    letter-spacing:4px;
    margin-bottom:8px;
}

.reload-link{
    display:inline-block;
    margin-bottom:10px;
    font-size:12px;
    color:#2F7D1F;
    text-decoration:none;
}

.reload-link:hover{
    text-decoration:underline;
}

/*==================================================
FILE INPUT
==================================================*/

.enquiry-section input[type=file]{
    border:none;
    padding:6px 0;
    height:auto;
}

/*==================================================
BUTTON
==================================================*/

.submit-area{
    margin-top:25px;
    text-align:center;
}

.submit-area button{
    background:#E3212D;
    color:#fff;
    border:none;
    padding:14px 50px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    border-radius:3px;
}

.submit-area button:hover{
    background:#C91520;
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:1200px){

    .enquiry-wrapper{
        width:100%;
    }

    .left-panel{
        width:350px;
        min-width:350px;
    }

    .right-panel{
        width:calc(100% - 350px);
    }

}

@media (max-width:992px){

    .enquiry-wrapper{
        flex-direction:column;
    }

    .left-panel,
    .right-panel{
        width:100%;
        min-width:100%;
    }

    .left-panel{
        min-height:auto;
        border-right:none;
        border-bottom:1px solid #d9d9d9;
    }

}

@media (max-width:768px){

    .enquiry-section .row{
        flex-direction:column;
        gap:0;
    }

    .left-panel{
        padding:25px 20px;
    }

    .left-panel h2{
        font-size:28px;
    }

    .right-panel{
        padding:20px;
    }

    .submit-area button{
        width:100%;
    }

}