/* ============================================
   MODAL STYLES
   ============================================ */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.modal-text {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-modal {
    background: var(--primary-blue);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-modal:hover {
    background: #2980b9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-card {
        padding: 24px;
        max-width: 95%;
        width: 95%;
    }

    .modal-icon {
        font-size: 3rem;
        margin-bottom: 16px;
    }

    .modal-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .modal-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .btn-modal {
        padding: 10px 24px;
        font-size: 0.95rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-card {
        padding: 20px;
    }

    .modal-icon {
        font-size: 2.5rem;
    }

    .modal-title {
        font-size: 1.2rem;
    }

    .modal-text {
        font-size: 0.85rem;
    }
}