/* Booking Page Styles */
.booking-page-wrapper {
    background: #F8F5F1;
    min-height: 100vh;
    padding: 60px 20px;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.booking-title {
    font-size: 2.5rem;
    color: #6B3D2E;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.booking-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 10px;
}

.booking-note {
    font-size: 1rem;
    color: #6B3D2E;
    text-align: center;
    margin-bottom: 40px;
    padding: 15px;
    background: #E9D5C8;
    border-radius: 10px;
}

.booking-form {
    width: 100%;
}

.form-section {
    margin-bottom: 40px;
}

.form-section-title {
    font-size: 1.5rem;
    color: #6B3D2E;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E9D5C8;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
}

.required {
    color: #d9534f;
    font-weight: 700;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6B3D2E;
    box-shadow: 0 0 0 3px rgba(107, 61, 46, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.field-note {
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
    font-style: italic;
}

.service-details {
    margin-top: 20px;
    padding: 20px;
    background: #F8F5F1;
    border-radius: 10px;
    border-left: 4px solid #6B3D2E;
}

.service-details p {
    margin-bottom: 10px;
    color: #333;
    line-height: 1.6;
}

.service-details p:last-child {
    margin-bottom: 0;
}

.form-actions {
    margin-top: 40px;
    text-align: center;
}

.booking-submit-btn {
    background: #6B3D2E;
    color: #fff;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 61, 46, 0.3);
    min-width: 200px;
}

.booking-submit-btn:hover:not(:disabled) {
    background: #5a2f23;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 61, 46, 0.4);
}

.booking-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loader {
    display: inline-block;
}

.booking-message {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.booking-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.booking-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Input with greyed out weekdays */
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-container {
        padding: 30px 20px;
    }

    .booking-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-submit-btn {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .booking-page-wrapper {
        padding: 30px 15px;
    }

    .booking-container {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .booking-title {
        font-size: 1.8rem;
    }

    .form-section-title {
        font-size: 1.3rem;
    }

    .booking-submit-btn {
        width: 100%;
    }
}
