* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.booking-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 520px;
}

.logo-container {
    text-align: center;
    margin-bottom: 15px;
}

.booking-logo {
    max-width: 140px;
    height: auto;
    display: inline-block;
    object-fit: contain;
}

.booking-card h2 {
    color: #1a252f;
    margin-bottom: 24px;
    text-align: center;
    font-size: 24px;
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 15px;
}



.form-row .form-group {
    flex: 1;
}

label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #34495e;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fafafa;
}

input:focus,
select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
    background-color: #ffffff;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #219150;
}

.alert {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.footnote {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eeeeee;
    text-align: left;
    font-size: 14px;
    color: #d28512;
}



@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}