/* ========================================
   VIP SECURITY - CYBERSECURITY PAGE STYLES
   Styles spécifiques à la page cybersécurité
   ======================================== */

/* Hero Section Cybersecurity */
.cyber-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--vip-black) 0%, var(--vip-red-dark) 50%, var(--vip-red) 100%);
}

.cyber-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(220, 20, 60, 0.03) 70%);
}

.cyber-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(220, 20, 60, 0.2), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 60% 80%, rgba(220, 20, 60, 0.1), transparent);
    background-repeat: repeat;
    background-size: 200px 200px, 150px 150px, 100px 100px, 80px 80px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

.cyber-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.cyber-hero-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.cyber-hero-text {
    color: var(--vip-white);
}

.cyber-hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.cyber-highlight {
    display: block;
    background: linear-gradient(45deg, var(--vip-red) 0%, #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.5);
}

.cyber-subtitle {
    display: block;
    color: var(--vip-white);
    font-weight: 300;
}

.cyber-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
    opacity: 0.9;
}

.cyber-hero-buttons {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.btn-cyber-primary, .btn-cyber-secondary {
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.1rem;
}

.btn-cyber-primary {
    background: linear-gradient(45deg, var(--vip-red) 0%, #ff4757 100%);
    color: var(--vip-white);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.btn-cyber-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
}

.btn-cyber-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--vip-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-cyber-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.cyber-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cyber-shield {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyber-shield-img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(220, 20, 60, 0.5));
    animation: shieldFloat 3s ease-in-out infinite;
}

.cyber-shield-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes shieldFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Threat Landscape Section */
.threat-landscape {
    padding: var(--space-4xl) 0;
    background: var(--vip-gray-light);
}

.threat-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.threat-stat {
    text-align: center;
    padding: var(--space-xl);
    background: var(--vip-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.threat-stat:hover {
    transform: translateY(-5px);
}

.threat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--vip-red) 0%, var(--vip-red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2rem;
    color: var(--vip-white);
}

.threat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--vip-red);
    margin-bottom: var(--space-sm);
}

.threat-label {
    font-size: 1rem;
    color: var(--vip-gray);
    line-height: 1.4;
}

/* Cybersecurity Services */
.cyber-services {
    padding: var(--space-4xl) 0;
    background: var(--vip-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.service-card {
    background: var(--vip-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--vip-gray-light);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.1);
    border-color: var(--vip-red);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-lg);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(220, 20, 60, 0.2));
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vip-black);
    margin-bottom: var(--space-md);
}

.service-card p {
    color: var(--vip-gray);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-xl);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--vip-gray);
}

.service-features .fas {
    color: var(--vip-red);
    font-size: 0.9rem;
}

.btn-service {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(45deg, var(--vip-red) 0%, var(--vip-red-dark) 100%);
    color: var(--vip-white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.3);
}

/* Technology Stack */
.tech-stack {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--vip-black) 0%, var(--vip-red-dark) 100%);
    color: var(--vip-white);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.tech-category h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--vip-red);
    text-align: center;
}

.tech-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.tech-item {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-item:hover {
    background: rgba(220, 20, 60, 0.2);
    border-color: var(--vip-red);
    transform: translateY(-3px);
}

/* Why Choose Section */
.why-choose {
    padding: var(--space-4xl) 0;
    background: var(--vip-gray-light);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.reason-card {
    background: var(--vip-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--vip-red) 0%, var(--vip-red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2rem;
    color: var(--vip-white);
}

.reason-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vip-black);
    margin-bottom: var(--space-md);
}

.reason-card p {
    color: var(--vip-gray);
    line-height: 1.6;
}

/* CTA Section */
.cyber-cta {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--vip-red) 0%, var(--vip-red-dark) 100%);
    color: var(--vip-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--space-2xl);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.1rem;
}

.btn-cta-primary {
    background: var(--vip-white);
    color: var(--vip-red);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--vip-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vip-black);
    margin-bottom: var(--space-md);
}

.cyber-services .section-header h2,
.tech-stack .section-header h2 {
    color: inherit;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--vip-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.tech-stack .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* Styles pour les offres dans le menu */
.cyber-offer-bg {
    background-image: url('../images/hero/cybersecurity-hero.jpg');
    background-size: cover;
    background-position: center;
}

.personal-offer-bg {
    background-image: url('../images/hero/personal-protection.jpg');
    background-size: cover;
    background-position: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cyber-hero-content .container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .cyber-hero-title {
        font-size: 3rem;
    }
    
    .cyber-shield {
        width: 300px;
        height: 300px;
    }
    
    .cyber-shield-img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .cyber-hero-title {
        font-size: 2.5rem;
    }
    
    .threat-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cyber-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .cyber-hero-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}