/* ==========================================
   BOOKING & FORMS - FIERY ORANGE THEME
========================================== */

body.booking-page {
    background-color: #0A0A0B;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.booking-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 60px 20px;
}

.booking-container {
    background: #141416;
    border: 1px solid rgba(255, 85, 0, 0.3);
    border-radius: 12px;
    padding: 40px;
    max-width: 650px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 85, 0, 0.15);
}

.booking-header {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-logo-link {
    display: inline-block;
    margin-bottom: 15px;
    transition: transform 0.2s ease-in-out;
}

.booking-logo-link:hover {
    transform: scale(1.05);
}

.booking-logo {
    width:500px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 30px auto;
    filter: drop-shadow(0 0 15px rgba(255, 85, 0, 0.4));
}

.booking-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
}

.booking-header p {
    color: #a0a5b5;
    font-size: 0.9rem;
}

.form-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 3px solid #FF5500;
}

.form-section h2 {
    font-size: 1.1rem;
    color: #FFB700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.input-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 550px) {
    .input-group-row {
        grid-template-columns: 1fr;
    }
}

label {
    font-size: 0.85rem;
    color: #b0b5c5;
    margin-bottom: 6px;
}

input, select, textarea {
    background: #0A0A0B;
    border: 1px solid #26262A;
    border-radius: 6px;
    padding: 12px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease-in-out;
}

input:focus, select:focus, textarea:focus {
    border-color: #FF5500;
    box-shadow: 0 0 12px rgba(255, 85, 0, 0.35);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #FFB700 0%, #FF5500 100%);
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(255, 85, 0, 0.3);
}

.btn-submit:hover {
    box-shadow: 0 0 25px rgba(255, 183, 0, 0.6);
    transform: translateY(-2px);
}

.status-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.status-message.success {
    display: block;
    background: rgba(0, 255, 128, 0.15);
    color: #00ff80;
    border: 1px solid #00ff80;
}

.status-message.error {
    display: block;
    background: rgba(255, 64, 64, 0.15);
    color: #ff4040;
    border: 1px solid #ff4040;
}

/* Checkbox */
.checkbox-group-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 5px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0A0A0B;
    border: 1px solid #26262A;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #fff;
    transition: border-color 0.2s ease;
}

.checkbox-item:hover {
    border-color: #FF5500;
}

.checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #FF5500;
    cursor: pointer;
}