/* landing-modal.css */
.landing-modal {
    z-index: 2000000 !important;
}

.modal-backdrop {
    z-index: 1999999 !important;
}

.landing-modal .modal-content {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    color: #101840;
}

.landing-modal-header {
    background: linear-gradient(135deg, #101840 0%, #1a5490 100%);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.landing-modal-header h4 {
    margin: 0;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}

.landing-modal-header p {
    margin: 10px 0 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.landing-modal-body {
    padding: 30px;
}

.landing-badge {
    background: #00d4ff;
    color: #101840;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

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

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

.landing-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.landing-form-control:focus {
    border-color: #00d4ff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
    background: #fff;
}

.btn-landing-submit {
    background: #00d4ff !important;
    color: #101840 !important;
    border: 2px solid #00d4ff !important;
    width: 100%;
    position: relative;
    z-index: 9999999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    min-height: 50px;
}

.btn-landing-submit:hover {
    background: #008eb0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.btn-landing-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff !important;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9999999;
}

.btn-landing-close i {
    font-size: 16px;
    color: #fff !important;
    display: block !important;
}

.btn-landing-close:hover {
    background: rgba(255, 255, 255, 0.6) !important;
    transform: rotate(90deg);
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

/* Success Message Overlay */
#modal-success-overlay {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

#modal-success-overlay i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .landing-modal-header {
        padding: 20px;
    }
    .landing-modal-body {
        padding: 20px;
    }
}
