/* pricing.css - Add this to your existing pricing.css */

/* ──────────────────────────────────────────────
   PRICING MODAL – Professional Popup for Get Plan
────────────────────────────────────────────── */
.pricing-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 2rem;
    animation: modal-fade-in 0.4s ease;
}

@keyframes modal-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 580px;
    max-height: 90%;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: modal-slide-up 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-slide-up {
    from {
        transform: translateY(60px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #000;
}

.modal-content h3 {
    font-size: 1.9rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
    text-align: center;
}

.modal-desc {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 2.5rem;
}

.plan-form {
    display: grid;
    gap: 1.6rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 1.05rem;
}

.form-group input {
    padding: 1rem 1.4rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1.05rem;
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.15);
    background: #fff;
}

.payment-options {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.payoneer-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.payoneer-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.25);
}

.plan-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a73e8;
    text-align: center;
    margin: 1.5rem 0 1rem;
}

.submit-btn {
    padding: 1.2rem;
    background: #000;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #111;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.form-message {
    margin-top: 1.5rem;
    font-size: 1.05rem;
    text-align: center;
    min-height: 1.5em;
}

.form-message.success {
    color: #34a853;
}

.form-message.error {
    color: #ea4335;
}

/* Responsive */
@media (max-width: 576px) {
    .modal-content {
        padding: 2rem 1.8rem;
        border-radius: 20px;
    }

    .modal-content h3 {
        font-size: 1.6rem;
    }

    .modal-desc {
        font-size: 1rem;
    }

    .form-group input {
        font-size: 1rem;
    }
}