/* Action Modal Styles - privacy Theme */
.action-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.action-modal-overlay.privacy-theme {
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(7c3aed30) 50%, rgba(0,0,0,0.9) 100%);
}

.action-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.3s ease;
}

.action-modal-content.privacy-theme {
    border: 2px solid #7c3aed;
    box-shadow: 0 25px 50px rgba(7c3aed50);
}

.action-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.action-modal-header.privacy-theme {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border-bottom: 1px solid #4c1d95;
}

.action-modal-header h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.action-modal-header.privacy-theme h3 {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.action-close-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-close-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

.action-modal-body {
    padding: 25px;
    color: #fff;
}

/* Feature List Styles */
.feature-list {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #7c3aed;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item.privacy-gradient {
    background: linear-gradient(135deg, rgba(7c3aed10) 0%, rgba(5b21b605) 100%);
    border-left: 4px solid #4c1d95;
}

.feature-item:hover {
    background: rgba(7c3aed20);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(7c3aed30);
}

/* Theme-specific pulse animation */
.privacy-pulse {
    animation: privacyPulse 2s infinite;
}

@keyframes privacyPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(7c3aed70);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(7c3aed0);
    }
}

/* Calculator Styles */
.calculator {
    max-width: 400px;
    margin: 0 auto;
}

.calculator.privacy-theme .calc-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border: 1px solid #4c1d95;
}

.calculator.privacy-theme .calc-btn:hover {
    box-shadow: 0 8px 25px rgba(7c3aed40);
    transform: translateY(-2px);
}

.calc-result.privacy-gradient {
    background: linear-gradient(135deg, rgba(7c3aed20) 0%, rgba(5b21b610) 100%);
    border: 1px solid #7c3aed;
}

/* Contact Info Styles */
.contact-info.privacy-theme .contact-item {
    background: linear-gradient(135deg, rgba(7c3aed10) 0%, rgba(5b21b605) 100%);
    border-left: 3px solid #7c3aed;
}

.contact-info.privacy-theme .contact-item:hover {
    background: linear-gradient(135deg, rgba(7c3aed20) 0%, rgba(5b21b610) 100%);
    transform: translateX(3px);
}

/* Video Showcase */
.video-showcase.privacy-theme .video-placeholder {
    background: linear-gradient(135deg, rgba(7c3aed30) 0%, rgba(5b21b620) 100%);
    border: 2px solid #7c3aed;
}

.video-showcase.privacy-theme .play-icon {
    color: #7c3aed;
    text-shadow: 0 0 20px rgba(7c3aed50);
}

/* Stats and metrics */
.privacy-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.privacy-stats .stat {
    background: linear-gradient(135deg, rgba(7c3aed20) 0%, rgba(5b21b610) 100%);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #7c3aed;
}

.privacy-stats .stat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #7c3aed;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(7c3aed50);
}

.privacy-stats .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .action-modal-content {
        margin: 20px;
        width: calc(100% - 40px);
        max-height: calc(100vh - 40px);
    }
    
    .privacy-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
