/* Popup Shortcode Styles */
.white-popup {
    position: relative;
    background: #FFF;
    padding: 0;
    width: auto;
    max-width: 900px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.white-popup .popup-title {
    background-color: #0E6AB5;
    color: #fff;
    padding: 15px 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.white-popup .popup-content {
    padding: 0;
    overflow: hidden;
}

.white-popup .popup-content iframe {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 500px;
    border: none;
}

/* Magnific Popup Animation */
.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.9;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
    transform: scale(1);
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
    transform: scale(0.8);
}

/* Popup Link and Button Styles */
.popup-link {
    color: #0E6AB5 !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 8px 16px;
    background-color: #0E6AB5;
    color: #fff !important;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.popup-link:hover {
    background-color: #006a8f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.popup-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0E6AB5;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.popup-button:hover {
    background-color: #006a8f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

/* Close button */
.mfp-close {
    color: #fff !important;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.mfp-close:hover {
    color: #fff !important;
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .white-popup {
        max-width: 90% !important;
    }
    
    .white-popup .popup-content iframe {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .white-popup {
        max-width: 95% !important;
        margin: 10px auto;
    }
    
    .white-popup .popup-title {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .white-popup .popup-content iframe {
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    .white-popup .popup-content iframe {
        height: 240px !important;
    }
} 