/* Scoped Styles for Site Visit Booking */
.booking-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.booking-container .container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Title */
.booking-container h2 {
    color: red;
    font-weight: 600;
}

/* Form Elements */
.booking-container label {
    font-weight: 600;
    display: block;
    margin-top: 10px;
    text-align: left;
    color: #333;
}

.booking-container input, 
.booking-container select, 
.booking-container button {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
}

.booking-container input, 
.booking-container select {
    background: #f0f0f0;
    outline: none;
}

/* Buttons */
.booking-container button {
    cursor: pointer;
    font-weight: 600;
    color: white;
    transition: background 0.3s ease;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* WhatsApp Button */
.booking-container .whatsapp-button {
    background: #25D366;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 12px;
    font-size: 16px;
}

.booking-container .whatsapp-button img {
    width: 24px;
    height: 24px;
}

.booking-container .whatsapp-button:hover {
    background: #1da851;
}

/* Email Button */
.booking-container .email-button {
    background: red;
}

.booking-container .email-button:hover {
    background: #b71c1c;
}

/* Submit Button - Now Blue */
.booking-container .blue-button {
    background-color: blue;
    color: white;
}

.booking-container .blue-button:hover {
    background-color: #0056b3;
}

/* Separator */
.booking-container .separator {
    text-align: center;
    margin: 10px 0;
    font-weight: bold;
    color: #555;
}

/* Email Form */
.booking-container #emailForm {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 600px) {
    .booking-container .container {
        width: 90%;
        max-width: 350px;
    }
    .booking-container button {
        font-size: 14px;
        padding: 10px;
    }
}
