/* =========================================
   AAYUSH CAR RENTAL
   ENQUIRY / REQUEST FORM
   Theme: RED + BLACK + WHITE
========================================= */

.acr-enquiry-section {
    width: 100%;
    padding: 40px 15px;
    background: #f5f5f5;
    font-family: 'Montserrat', Arial, sans-serif;
    box-sizing: border-box;
}

.acr-enquiry-section *,
.acr-enquiry-section *::before,
.acr-enquiry-section *::after {
    box-sizing: border-box;
}


/* =========================================
   MAIN BOX
========================================= */

.acr-enquiry-box {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 3px;
    overflow: hidden;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}


/* =========================================
   HEADER
========================================= */

.acr-enquiry-header {
    min-height: 125px;
    padding: 30px 35px;

    display: flex;
    align-items: center;
    gap: 15px;

    background: #111111;

    border-bottom: 3px solid #e00000;
}


.acr-enquiry-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e00000;
    color: #ffffff;

    border-radius: 50%;

    font-size: 19px;
    font-weight: 700;
}


.acr-enquiry-header h2 {
    margin: 0 0 5px 0;

    color: #ffffff !important;

    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
}


.acr-enquiry-header p {
    margin: 0;

    color: #cccccc !important;

    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================
   FORM
========================================= */

.acr-enquiry-form {
    padding: 25px 35px 30px 35px;
}


/* =========================================
   FORM GROUP
========================================= */

.acr-form-group {
    width: 100%;
    margin-bottom: 17px;
}


.acr-form-group label {
    display: block;

    margin: 0 0 7px 0;

    color: #111111;

    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
}


.acr-form-group label span {
    color: #e00000;
}


/* =========================================
   INPUTS
========================================= */

.acr-form-group input,
.acr-form-group textarea,
.acr-form-group select {

    width: 100%;

    padding: 11px 13px;

    border: 1px solid #d3d3d3;
    border-radius: 2px;

    background: #ffffff;

    color: #333333;

    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 11px;

    outline: none;

    transition: all 0.25s ease;
}


.acr-form-group input {
    height: 40px;
}


.acr-form-group textarea {
    min-height: 75px;

    resize: vertical;

    line-height: 1.6;
}


/* Placeholder */

.acr-form-group input::placeholder,
.acr-form-group textarea::placeholder {
    color: #a5a5a5;
    opacity: 1;
}


/* Focus */

.acr-form-group input:focus,
.acr-form-group textarea:focus,
.acr-form-group select:focus {

    border-color: #e00000;

    box-shadow: 0 0 0 2px rgba(224, 0, 0, 0.08);
}


/* Readonly fields */

.acr-form-group input[readonly] {

    background: #f1f2f2;
    color: #777777;

    cursor: not-allowed;
}


/* =========================================
   TWO COLUMN ROW
========================================= */

.acr-form-row {

    display: flex;
    gap: 15px;
}


.acr-form-row .acr-form-group {

    width: 50%;
}


/* =========================================
   SUBMIT AREA
========================================= */

.acr-submit-area {

    display: flex;
    justify-content: center;

    margin-top: 10px;
}


.acr-submit-btn {

    min-width: 170px;
    height: 42px;

    padding: 0 25px;

    border: 0;
    border-radius: 2px;

    background: #e00000;
    color: #ffffff;

    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.5px;

    cursor: pointer;

    transition: all 0.25s ease;
}


.acr-submit-btn span {
    margin-right: 6px;
}


.acr-submit-btn:hover {

    background: #111111;

    transform: translateY(-1px);

    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.20);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .acr-enquiry-section {
        padding: 20px 10px;
    }


    .acr-enquiry-box {
        max-width: 100%;
    }


    .acr-enquiry-header {

        min-height: auto;

        padding: 22px 20px;

        gap: 12px;
    }


    .acr-enquiry-icon {

        width: 38px;
        height: 38px;

        flex: 0 0 38px;

        font-size: 17px;
    }


    .acr-enquiry-header h2 {

        font-size: 20px;
    }


    .acr-enquiry-header p {

        font-size: 10px;
    }


    .acr-enquiry-form {

        padding: 22px 18px 25px 18px;
    }


    .acr-form-row {

        display: block;
    }


    .acr-form-row .acr-form-group {

        width: 100%;
    }


    .acr-form-group {

        margin-bottom: 15px;
    }


    .acr-form-group input {

        height: 42px;
    }


    .acr-form-group textarea {

        min-height: 80px;
    }


    .acr-submit-btn {

        width: 100%;
        max-width: 220px;
    }

}