/**
 * Cybersecurity Page Styles
 * Complementary styles for cybersecurity service page
 * Maintains consistency with main site design system
 */

/* Hero Section Styles */
.cybersecurity-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 100%);
    padding-top: 100px;
}

.min-vh-80 {
    min-height: 80vh;
}

/* Threat Card Animations */
.threat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #dc3545 !important;
}

.threat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15) !important;
}

.threat-icon {
    transition: transform 0.3s ease;
}

.threat-card:hover .threat-icon {
    transform: scale(1.1);
}

.threat-solution {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid #28a745;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Pricing Card Styles */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

.pricing-card.bg-primary {
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.bg-primary:hover {
    transform: scale(1.08);
}

/* Process Step Styles */
.process-step {
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, #007bff, #6c757d);
    opacity: 0.3;
}

.step-icon {
    flex-shrink: 0;
}

/* Security Badge Animations */
.badge {
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.05);
}

/* FAQ Accordion Styles */
.accordion-button {
    background: white;
    border: none;
    padding: 1.25rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: #007bff;
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.accordion-body {
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cybersecurity-hero h1 {
        font-size: 2.5rem;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .pricing-card.bg-primary {
        transform: scale(1);
    }
    
    .pricing-card.bg-primary:hover {
        transform: scale(1.03);
    }
}

/* Animation for security elements */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

.security-alert {
    animation: pulse-glow 2s infinite;
}

/* Custom color for purple outline button */
.btn-outline-purple {
    color: #6f42c1;
    border-color: #6f42c1;
}

.btn-outline-purple:hover {
    background-color: #6f42c1;
    color: white;
}