/* Language Switch Styles */
.language-switch .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.language-switch .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.language-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.language-switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.language-switch input:checked + .slider {
    background-color: #2196F3;
}

.language-switch input:checked + .slider:before {
    transform: translateX(26px);
}

/* Booking Form Styles */
.booking-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control:focus {
    border-color: #13357B;
    box-shadow: 0 0 0 0.2rem rgba(19, 53, 123, 0.25);
}

.form-select:focus {
    border-color: #13357B;
    box-shadow: 0 0 0 0.2rem rgba(19, 53, 123, 0.25);
}

.price-summary {
    background: linear-gradient(135deg, #13357B 0%, #1e4a8c 100%);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(19, 53, 123, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #13357B 0%, #1e4a8c 100%);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(19, 53, 123, 0.4);
}