/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 06 2025 | 12:57:21 */
/*
 * =========================================
 *  Popup Mask Styles (No CSS Variables)
 * =========================================
 */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    transform: scale(0.95);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-header {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 32px 40px;
    position: relative;
    flex-shrink: 0;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.popup-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white; /* Explicitly set color */
}

.popup-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    margin: 0;
    color: white; /* Explicitly set color */
}

.popup-body {
    padding: 40px;
    overflow-y: auto;
    flex-grow: 1;
}

.popup-body::-webkit-scrollbar {
    width: 6px;
}

.popup-body::-webkit-scrollbar-track {
    background: #f8fafc;
}

.popup-body::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 3px;
}

.popup-body::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

.popup-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.detail-section-title {
    color: #0f172a;
    margin: 0 0 16px 0;
    font-size: 1.125rem;
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 8px;
}

.detail-section-text,
.detail-section-list {
    color: #64748b;
    line-height: 1.7;
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-section-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.detail-section-item::before {
    content: '✓';
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0px;
    color: #3b82f6;
}

/*
 * =========================================
 *  Responsive Adjustments
 * =========================================
 */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .popup-header {
        padding: 24px;
    }

    .popup-body {
        padding: 24px;
    }

    .popup-title {
        font-size: 1.5rem;
    }

    .popup-details {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}