/**
 * Contact Form 7 - Success Popup Styles
 */

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

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

.cf7-popup-content {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16);
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cf7-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.cf7-popup-close:hover {
    color: #333;
}

.cf7-popup-message {
    text-align: center;
}

.cf7-popup-title {
    font-size: 28px;
    margin: 0 0 20px 0;
    color: #333;
    font-weight: 600;
}

.cf7-popup-text {
    font-size: 16px;
    color: #666;
    margin: 12px 0;
    line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 768px) {
    .cf7-popup-content {
        max-width: 90%;
        margin: 20px;
        padding: 30px 20px;
    }

    .cf7-popup-title {
        font-size: 24px;
    }

    .cf7-popup-text {
        font-size: 14px;
    }
}
