/* ==========================================================
   NORTHEAST VOYAGERS
   ENQUIRY / REQUEST FORM
   ========================================================== */

.nv-enquiry-section {

    width: 100%;

    padding: 65px 0;

    background: #f6f8f6;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;
}


.nv-enquiry-container {

    width: 92%;

    max-width: 850px;

    margin: 0 auto;

    background: #ffffff;

    border-radius: 5px;

    overflow: hidden;

    box-shadow:
        0 6px 25px rgba(23,79,49,0.09);
}


/* ==========================================================
   HEADER
   ========================================================== */

.nv-enquiry-header {

    min-height: 82px;

    padding: 17px 22px;

    display: flex;

    align-items: center;

    gap: 13px;

    background: #252800;

    border-bottom: 3px solid #f56845;

    color: #ffffff;
}


.nv-enquiry-header-icon {

    width: 36px;

    height: 36px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f56845;

    color: #ffffff;

    border-radius: 50%;

    font-size: 14px;
}


.nv-enquiry-header h2 {

    margin: 0 0 3px;

    color: #ffffff;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 700;
}


.nv-enquiry-header p {

    margin: 0;

    color: rgba(255,255,255,0.65);

    font-size: 12px;

    line-height: 1.5;
}


/* ==========================================================
   FORM
   ========================================================== */

.nv-enquiry-form {

    padding: 25px 23px 22px;
}


/* ==========================================================
   FORM ROW
   ========================================================== */

.nv-form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 11px;
}


.nv-form-group {

    margin-bottom: 13px;

    min-width: 0;
}


.nv-form-full {

    width: 100%;
}


/* ==========================================================
   LABEL
   ========================================================== */

.nv-form-group label {

    display: block;

    margin-bottom: 6px;

    color: #174f31;

    font-size: 12px;

    line-height: 1.3;

    font-weight: 700;
}


.nv-form-group label span {

    color: #f56845;
}


/* ==========================================================
   INPUT
   ========================================================== */

.nv-form-group input,
.nv-form-group textarea,
.nv-form-group select {

    width: 100%;

    box-sizing: border-box;

    border: 1px solid #d4dbd6;

    border-radius: 2px;

    background: #ffffff;

    color: #526158;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 12px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.nv-form-group input {

    height: 38px;

    padding: 0 10px;
}


.nv-form-group textarea {

    min-height: 70px;

    padding: 10px;

    resize: vertical;

    line-height: 1.6;
}


/* ==========================================================
   READONLY ITINERARY
   ========================================================== */

.nv-form-group input[readonly] {

    background: #f1f4f2;

    color: #718078;

    cursor: default;
}


/* ==========================================================
   PLACEHOLDER
   ========================================================== */

.nv-form-group input::placeholder,
.nv-form-group textarea::placeholder {

    color: #a5ada8;

    opacity: 1;
}


/* ==========================================================
   FOCUS
   ========================================================== */

.nv-form-group input:focus,
.nv-form-group textarea:focus,
.nv-form-group select:focus {

    border-color: #174f31;

    box-shadow:
        0 0 0 2px rgba(23,79,49,0.07);
}


/* ==========================================================
   DATE INPUT
   ========================================================== */

.nv-form-group input[type="date"] {

    color: #68756d;

    cursor: pointer;
}


/* ==========================================================
   SUBMIT
   ========================================================== */

.nv-submit-area {

    padding-top: 2px;

    display: flex;

    justify-content: center;
}


.nv-submit-button {

    min-width: 130px;

    height: 38px;

    padding: 0 17px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    border: none;

    border-radius: 2px;

    background: #f56845;

    color: #ffffff;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.2s ease;
}


.nv-submit-button i {

    font-size: 12px;
}


.nv-submit-button:hover {

    background: #174f31;

    transform: translateY(-1px);
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .nv-enquiry-section {

        padding: 45px 0 90px;
    }


    .nv-enquiry-container {

        width: 92%;

        border-radius: 4px;
    }


    /* Header */

    .nv-enquiry-header {

        min-height: 72px;

        padding: 15px;

        gap: 10px;
    }


    .nv-enquiry-header-icon {

        width: 32px;

        height: 32px;

        font-size: 12px;
    }


    .nv-enquiry-header h2 {

        font-size: 16px;
    }


    .nv-enquiry-header p {

        font-size: 12px;
    }


    /* Form */

    .nv-enquiry-form {

        padding: 20px 15px 20px;
    }


    /* Two columns become one */

    .nv-form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    .nv-form-group {

        margin-bottom: 12px;
    }


    .nv-form-group label {

        font-size: 12px;

        margin-bottom: 5px;
    }


    .nv-form-group input {

        height: 40px;

        font-size: 12px;
    }


    .nv-form-group textarea {

        min-height: 75px;

        font-size: 12px;
    }


    .nv-submit-button {

        width: 100%;

        height: 40px;

        font-size: 12px;
    }

}