/* NavBlack VIP Modal & Form Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.98) !important;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999 !important;
    opacity: 0;
    will-change: opacity;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex !important;
    opacity: 1 !important;
}

.modal-content {
    background: #111 !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    width: 90%;
    max-width: 500px;
    padding: 40px !important;
    border-radius: 24px !important;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    color: #fff !important;
    text-align: center;
}

.modal.active .modal-content {
    transform: translateY(0) !important;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none !important;
    border: none !important;
    color: #A0A0A0 !important;
    font-size: 2rem !important;
    cursor: pointer;
    line-height: 1;
}

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

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 10px 0;
    color: #fff !important;
}

.vip-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    text-align: left !important;
}

.form-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.form-group label {
    font-size: 0.7rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D4AF37 !important;
    font-weight: 700;
}

.form-group input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 12px 15px !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 1rem !important;
}

.btn-submit {
    background: linear-gradient(135deg, #D4AF37, #B8941F) !important;
    border: none !important;
    padding: 18px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    color: #000 !important;
    cursor: pointer;
    margin-top: 10px;
}

.success-message {
    display: none !important;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.success-message h3 {
    color: #D4AF37 !important;
    font-weight: 800;
}

/* Loader */
.loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading .btn-text { display: none !important; }
.loading .loader { display: block !important; }
