/* =====================================================
   POLITIQUE DE CONFIDENTIALITÉ - STYLES ÉLECTRICIEN
   Design professionnel pour page juridique
   ===================================================== */

/* Header Override */
.site-header {
    background: linear-gradient(135deg, var(--electric-dark) 0%, var(--electric-blue) 100%);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--electric-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: electricPulse 2s infinite;
}

.logo-icon svg {
    width: 30px;
    height: 30px;
    color: var(--electric-dark);
}

.logo-text h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.logo-text p {
    color: var(--electric-yellow);
    font-size: 0.9rem;
    margin: 0;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.home-link,
.blog-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--electric-orange);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.home-link:hover,
.blog-link:hover {
    background: #ff5722;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* Main Content */
.legal-main {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 120px 0 60px;
}

.privacy-section {
    padding: 0;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-content {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 86, 179, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.privacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--electric-blue), var(--electric-yellow), var(--electric-orange));
    border-radius: 20px 20px 0 0;
}

/* Typography */
.privacy-title {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--electric-blue), var(--electric-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 25px;
}

.privacy-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--electric-yellow), var(--electric-orange));
    border-radius: 2px;
}

.subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.privacy-info h2 {
    font-size: 1.8rem;
    color: var(--electric-blue);
    margin: 45px 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--electric-yellow);
    font-weight: 700;
    position: relative;
}

.privacy-info h2::before {
    content: '⚡';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--electric-yellow);
    font-size: 24px;
}

.privacy-info h3 {
    font-size: 1.4rem;
    color: var(--electric-dark);
    margin: 35px 0 20px 0;
    font-weight: 600;
    padding-left: 25px;
    position: relative;
}

.privacy-info h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: var(--electric-orange);
    border-radius: 50%;
}

/* Info Blocks */
.info-block {
    background: linear-gradient(135deg, var(--electric-light) 0%, rgba(255, 193, 7, 0.05) 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 5px solid var(--electric-yellow);
    position: relative;
    transition: all 0.3s ease;
}

.info-block:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 86, 179, 0.1);
}

.info-block.highlight {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(0, 86, 179, 0.08) 100%);
    border-left-color: var(--electric-blue);
}

.info-block p {
    margin: 10px 0;
    line-height: 1.8;
    color: #2c3e50;
    font-size: 1.05rem;
}

.info-block p strong {
    color: var(--electric-dark);
    font-weight: 600;
}

.privacy-info p {
    margin: 15px 0;
    line-height: 1.8;
    color: #2c3e50;
    font-size: 1.05rem;
}

.privacy-info ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-info li {
    margin: 10px 0;
    line-height: 1.8;
    color: #2c3e50;
    font-size: 1.05rem;
    position: relative;
}

.privacy-info li::before {
    content: '⚡';
    position: absolute;
    left: -25px;
    color: var(--electric-yellow);
    font-size: 14px;
}

.privacy-info a {
    color: var(--electric-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.privacy-info a:hover {
    color: var(--electric-blue);
    border-bottom-color: var(--electric-blue);
}

/* Fixed Call Button */
.fixed-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--electric-orange), var(--electric-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    z-index: 999;
    animation: electricPulse 2s infinite;
    transition: all 0.3s ease;
}

.fixed-call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
    color: white !important;
}

.fixed-call-button svg {
    width: 30px;
    height: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Compact mobile header */
    .site-header {
        padding: 8px 0;
    }
    
    .header-container {
        padding: 0 15px;
        gap: 10px;
    }
    
    .logo-section {
        gap: 8px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .logo-text h2 {
        font-size: 0.95rem;
    }
    
    .logo-text p {
        display: none;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .home-link,
    .blog-link {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .home-link span,
    .blog-link span {
        display: none;
    }
    
    .home-link svg,
    .blog-link svg {
        width: 18px;
        height: 18px;
    }
    
    .legal-main {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .privacy-content {
        padding: 40px 25px;
    }

    .privacy-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .subtitle {
        font-size: 1rem;
    }

    .privacy-info h2 {
        font-size: 1.5rem;
        padding-left: 30px;
    }

    .privacy-info h2::before {
        left: 0;
    }

    .privacy-info h3 {
        font-size: 1.2rem;
    }

    .info-block {
        padding: 20px;
    }

    .info-block p,
    .privacy-info p,
    .privacy-info li {
        font-size: 1rem;
    }

    .fixed-call-button {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }

    .fixed-call-button svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    /* Keep header in one line */
    .header-container {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 0 15px;
    }

    .logo-section {
        flex: 1;
        justify-content: flex-start;
    }

    .header-actions {
        justify-content: flex-end;
    }

    .privacy-content {
        padding: 30px 20px;
    }

    .privacy-title {
        font-size: 1.8rem;
    }

    .privacy-info h2 {
        font-size: 1.3rem;
    }

    .privacy-info h3 {
        font-size: 1.1rem;
        padding-left: 20px;
    }

    .info-block {
        padding: 15px;
        margin: 15px 0;
    }

    .info-block p,
    .privacy-info p,
    .privacy-info li {
        font-size: 0.95rem;
    }
}

@media (max-width: 375px) {
    /* Ultra compact header */
    .site-header {
        padding: 5px 0;
    }
    
    .header-container {
        padding: 0 10px;
        gap: 8px;
    }
    
    .logo-section {
        gap: 5px;
        flex: 1;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
    }

    .logo-icon svg {
        width: 18px;
        height: 18px;
    }

    .logo-text h2 {
        font-size: 0.85rem;
    }

    .logo-text p {
        display: none;
    }

    .header-actions {
        gap: 5px;
    }

    .home-link,
    .blog-link {
        padding: 5px 8px;
        font-size: 0.75rem;
    }

    .home-link svg,
    .blog-link svg {
        width: 14px;
        height: 14px;
    }

    .home-link span,
    .blog-link span {
        display: none;
    }
    
    .legal-main {
        padding-top: 50px;
    }

    .privacy-content {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .privacy-title {
        font-size: 1.5rem;
    }

    .fixed-call-button {
        width: 55px;
        height: 55px;
    }

    .fixed-call-button svg {
        width: 22px;
        height: 22px;
    }
}