@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


.contact-form {
  /*max-width: 700px;*/
  margin: auto;
}

/* ROW */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row.full {
  flex-direction: column;
}

/* INPUT + TEXTAREA */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: all 0.3s ease;
            font-family: "Montserrat", sans-serif;

}

/* TEXTAREA HEIGHT */
.contact-form textarea {
  min-height: 140px;
  resize: none;
}

/* FOCUS EFFECT */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c49a6c;
  background: #fff;
}

/* BUTTON */
.btn-submit {
  margin-top: 10px;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  background: #b7a597;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
            font-family: "Montserrat", sans-serif;

}

/* HOVER */
.btn-submit:hover {
  background: #c49a6c;
}




/*app form*/
/* =====================================================
   FORM WRAPPER
===================================================== */

.application-form {
    width: 100%;
    margin: 0 auto;
    padding: 35px;

    background: #fff;

    border: 1px solid #e7e2de;
    border-radius: 12px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);

    font-family: "Montserrat", sans-serif;

    box-sizing: border-box;
}


/* =====================================================
   SECTION
===================================================== */

.application-form .form-section-title {
    margin-bottom: 35px;
    padding-bottom: 30px;

    border-bottom: 1px solid #e5e5e5;

    position: relative;

    color: #3b2c20;

    font-size: 20px;
    font-weight: 600;
}


/* =====================================================
   FORM ROW
===================================================== */

.application-form .form-row {
    display: flex;

    gap: 20px;

    margin-bottom: 20px;
}


/* Full Width */

.application-form .form-row.full {
    display: block;
}


/* =====================================================
   FORM GROUP
===================================================== */

.application-form .form-group {
    width: 100%;
    flex: 1;
}


/* =====================================================
   LABEL
===================================================== */

.application-form .form-group label {
    display: block;

    margin-bottom: 8px;

    color: #333;

    font-family: "Montserrat", sans-serif;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.5;
}


/* Required */

.application-form .required {
    color: #b45c5c;
}


/* =====================================================
   INPUT + SELECT
===================================================== */

.application-form input,
.application-form select,
.application-form textarea {
    width: 100%;

    height: 48px;

    padding: 0 14px;

    border: 1px solid #ddd;

    border-radius: 6px;

    outline: none;

    background: #f8f8f8;

    color: #333;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    box-sizing: border-box;

    transition: all 0.3s ease;
}


/* =====================================================
   TEXTAREA
===================================================== */

.application-form textarea {
    min-height: 140px;

    padding: 14px;

    resize: vertical;
}


/* =====================================================
   PLACEHOLDER
===================================================== */

.application-form input::placeholder,
.application-form textarea::placeholder {
    color: #aaa;
}


/* =====================================================
   FOCUS
===================================================== */

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    border-color: #b6a697;

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(182, 166, 151, 0.1);
}


/* =====================================================
   SUBMIT
===================================================== */

.application-form .btn-submit {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 150px;

    height: 48px;

    padding: 0 25px;

    margin-top: 10px;

    border: none;

    border-radius: 30px;

    background: #b6a697;

    color: #fff;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}


/* Hover */

.application-form .btn-submit:hover {
    background: #0a2342;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .application-form {
        padding: 25px 18px;

        border-radius: 8px;
    }

    .application-form .form-section-title {
        margin-bottom: 25px;
        padding-bottom: 15px;

        font-size: 18px;
    }

    .application-form .form-row {
        flex-direction: column;

        gap: 18px;

        margin-bottom: 18px;
    }

    .application-form .form-group label {
        font-size: 14px;
    }

    .application-form input,
    .application-form select,
    .application-form textarea {
        font-size: 13px;
    }

}

















/* =====================================================
   EVENT BOOKING FORM
===================================================== */

.event-booking-form {
    width: 100%;
    /*max-width: 900px;*/

    margin: 0 auto;

    padding: 35px;

    background: #fff;

    border: 1px solid #e7e2de;

    border-radius: 12px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);

    font-family: "Montserrat", sans-serif;
}


/* =====================================================
   SECTION
===================================================== */

.booking-section {
    margin-bottom: 35px;

    padding-bottom: 30px;

    border-bottom: 1px solid #e5e5e5;
}

.booking-section:last-child {
    margin-bottom: 0;

    padding-bottom: 0;

    border-bottom: none;
}


/* =====================================================
   TITLE
===================================================== */

.booking-title {
    position: relative;

    margin: 0 0 25px;

    padding-bottom: 12px;

    color: #3b2c20;

    font-size: 20px;

    font-weight: 600;
}

.booking-title::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 45px;

    height: 2px;

    background: #b6a697;
}


/* =====================================================
   TABLE
===================================================== */

.booking-table-wrap {
    width: 100%;

    overflow-x: auto;
}

.booking-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 650px;

    background: #fff;
}

.booking-table th {
    font-family: "Montserrat", sans-serif;


    padding: 14px 15px;

    background: #3b2c20;

    color: #fff;

    text-align: left;

    font-size: 16px;

    font-weight: 600;
}

.booking-table td {
    padding: 15px;

    border: 1px solid #e5e5e5;

    color: #555;

    font-size: 13px;

    vertical-align: middle;
}

.booking-table tbody tr:hover {
    background: #faf8f6;
}


/* =====================================================
   TICKET COUNTER
===================================================== */

.ticket-counter {
    display: inline-flex;

    align-items: center;

    height: 38px;

    border: 1px solid #ddd;

    border-radius: 5px;

    overflow: hidden;

    background: #fff;
}

.ticket-btn {
    width: 35px;

    height: 38px;

    border: none;

    font-family: "Montserrat", sans-serif;


    background: #0a2342;

    color: #fff;

    font-size: 17px;

    cursor: pointer;

    transition: .3s ease;
}

.ticket-btn:hover {
    background: #b6a697;
}

.ticket-counter span {
    width: 45px;

    font-family: "Montserrat", sans-serif;


    text-align: center;

    color: #333;

    font-size: 15px;

    font-weight: 600;
}

.ticket-select {
    width: 220px;

    height: 45px;

    padding: 0 14px;

    border: 1px solid #ddd;

    border-radius: 6px;

    background: #fff;

    color: #333;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    outline: none;

    cursor: pointer;

    transition: all 0.3s ease;
}

.ticket-select:focus {
    border-color: #b6a697;

    box-shadow:
        0 0 0 3px rgba(182, 166, 151, 0.1);
}

/* =====================================================
   FORM GRID
===================================================== */

.booking-form-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


/* =====================================================
   FIELD
===================================================== */

.booking-field {
    width: 100%;
}

.booking-field label,
.booking-question > label {
    display: block;

    margin-bottom: 8px;

    font-family: "Montserrat", sans-serif;


    color: #333;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.5;
}

.booking-field label span,
.booking-question label span {
    color: #b45c5c;
}


/* =====================================================
   INPUT + SELECT
===================================================== */

.booking-field input,
.booking-field select {
    width: 100%;


    height: 48px;

    padding: 0 14px;

    border: 1px solid #ddd;

    border-radius: 6px;

    outline: none;

    background: #f8f8f8;

    color: #333;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    transition: .3s ease;
}

.booking-field input::placeholder {
    color: #aaa;
}

.booking-field input:focus,
.booking-field select:focus {
    border-color: #b6a697;

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(182, 166, 151, .1);
}


/* =====================================================
   QUESTIONS
===================================================== */

.booking-question {
    margin-top: 25px;
}


/* =====================================================
   RADIO OPTIONS
===================================================== */

.booking-options {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
}

.booking-options label {
    display: flex;

    font-family: "Montserrat", sans-serif;


    align-items: center;

    min-height: 45px;

    padding: 10px 13px;

    border: 1px solid #e1e1e1;

    border-radius: 6px;

    background: #fafafa;

    color: #555;

    font-size: 15px;

    line-height: 1.5;

    cursor: pointer;

    transition: .3s ease;
}

.booking-options label:hover {
    border-color: #b6a697;

    background: #faf8f6;
}

.booking-options input {
    margin-right: 9px;

    accent-color: #0a2342;

    cursor: pointer;
}


/* =====================================================
   CHECKOUT
===================================================== */

.booking-submit {
    margin-top: 30px;
}

.booking-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 150px;

    height: 48px;

    padding: 0 25px;

    border: none;

    border-radius: 30px;

    background: #b6a697;

    color: #fff;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s ease;
}

.booking-btn span {
    font-size: 18px;

    transition: transform .3s ease;
}

.booking-btn:hover {
    background: #0a2342;
}

.booking-btn:hover span {
    transform: translateX(5px);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .event-booking-form {
        padding: 25px 18px;

        border-radius: 8px;
    }

    .booking-title {
        font-size: 18px;
    }

    .booking-form-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .booking-options {
        grid-template-columns: 1fr;
    }

    .booking-table {
        min-width: 650px;
    }

}