/*-----------------------------------------------------------------------------------

    Template Name: Gymfito - Tailwind CSS
    Author: saihoai
    Author Url: https://themeforest.net/user/saihoai
    Version: 1.0

-----------------------------------------------------------------------------------*/

/* Booking Page Styling */
.booking-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #000b1e 0%, #0a0f1f 100%);
    position: relative;
    z-index: 10;
}
.booking-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 991px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 575px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group-full {
    grid-column: span 2;
}
@media (max-width: 575px) {
    .form-group-full {
        grid-column: span 1;
    }
}
.form-group label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}
.form-group label .required {
    color: #bfe800;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: #003186;
    border: 1px solid rgba(191, 232, 0, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #bfe800;
    box-shadow: 0 0 0 3px rgba(191, 232, 0, 0.15);
}
.form-textarea {
    resize: none;
    height: 120px;
}
.field-error {
    color: #ff4d4d;
    font-size: 14px;
    margin-top: 5px;
}
.form-errors {
    background-color: rgba(255, 77, 77, 0.15);
    border: 1px solid #ff4d4d;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    color: #ff4d4d;
    font-weight: 600;
}
.form-submit {
    margin-top: 10px;
}
.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #bfe800;
    color: #000b1e;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-submit:hover {
    background-color: #aae000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(191, 232, 0, 0.3);
}
.form-note {
    font-size: 14px;
    color: #a0aec0;
    margin-top: 15px;
}
.info-card {
    background-color: rgba(0, 49, 134, 0.2);
    border: 1px solid rgba(0, 49, 134, 0.5);
    border-radius: 12px;
    padding: 30px;
}
.info-card h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #e2e8f0;
}
.info-list li:last-child {
    margin-bottom: 0;
}
.info-icon {
    color: #bfe800;
    margin-right: 15px;
    font-size: 18px;
    margin-top: 3px;
}
.info-card-wa {
    background-color: rgba(191, 232, 0, 0.1);
    border: 1px dashed #bfe800;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    text-align: center;
}
.info-card-wa h4 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
}
.info-card-wa p {
    color: #cbd5e0;
    font-size: 15px;
    margin-bottom: 20px;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.booking-success {
    padding: 100px 0;
    background: #000b1e;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.success-card {
    max-w: 600px;
    width: 100%;
    background-color: rgba(0, 49, 134, 0.2);
    border: 1px solid rgba(191, 232, 0, 0.3);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
}
.success-icon {
    width: 80px;
    height: 80px;
    background-color: #bfe800;
    color: #000b1e;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px auto;
}
.success-card h3 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}
.success-card p {
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.btn-accent {
    display: inline-block;
    padding: 12px 30px;
    background-color: #bfe800;
    color: #000b1e;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.btn-accent:hover {
    background-color: #aae000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(191, 232, 0, 0.3);
}