.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
.modal-overlay.active {
    display: flex;
}

.modal {
    position: relative;
    background: #2C3E50;
    border-radius: 16px;
    padding: 60px 40px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8%;
    background: #7a9e7e;
    border-radius: 16px 16px 0 0;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    color: #9E2A3E;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: transform 0.2s;
}

.modal-close:hover {
    transform: scale(1.2);
}

.modal-header {
    margin-bottom: 30px;
    padding-top: 10px;
}

.modal-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    margin: 0 0 16px 0;
}

.modal-header p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: #2c3e50;
    color: #fff;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-label {
    cursor: pointer;
}

.radio-label input {
    display: none;
}

.radio-label span {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.2s;
}

.radio-label input:checked + span {
    background: #9E2A3E;
    border-color: #9E2A3E;
}
.submit-btn {
    background: #9E2A3E;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #9E2A3E;
}

.open-booking-btn {
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.open-booking-btn:hover {
    transform: translateY(-2px);
}

body.modal-open {
    overflow: hidden;
}