* {
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: linear-gradient(135deg, #D30000, #fd3636);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* Container */
.booking-container {
    background: #fff;
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

/* Header */
.booking-header {
    background: #f9a826;
    padding: 30px;
    text-align: center;
}

.booking-header h1 {
    margin: 0;
}

.booking-header p {
    margin-top: 8px;
}

/* Form */
.booking-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: border 0.3s;
}

input:focus, select:focus, textarea:focus {
    border-color: #1f3c88;
}

textarea {
    resize: none;
    height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #1f3c88;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #163070;
}

.note {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}
