.pro-contact-card {
                    background: #ffffff;
                    padding: 20px 15px;
                    border-radius: 12px;
                    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
                    text-align: center;
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                }
                .pro-contact-card:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
                }
                .pro-icon-wrapper {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    margin-bottom: 10px;
                }
                .pro-icon-wrapper svg {
                    width: 46px;
                    height: 46px;
                    color: var(--color-primary);
                }
                .pro-contact-title {
                    font-size: 17px;
                    font-weight: 700;
                    margin-bottom: 8px;
                    color: #2c2c2c;
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                }
                .pro-contact-text {
                    color: #555;
                    font-size: 15px;
                    line-height: 1.7;
                    margin: 0;
                }
                .pro-contact-link {
                    color: #555;
                    font-size: 15px;
                    text-decoration: none;
                    transition: color 0.3s;
                }
                .pro-contact-link:hover {
                    color: var(--color-primary);
                }

/* MODAL STYLES */
.custom-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.custom-modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #e8f5e9;
    color: #4caf50;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.modal-icon-wrapper svg {
    width: 40px;
    height: 40px;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.modal-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.modal-close-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}