/* =====================================================
   PRIVACY PAGE 2100 - Ultra Futuristic Design
   ===================================================== */

/* Hero Section 2100 */
.privacy-hero-2100 {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 60px;
    overflow: hidden;
}

.privacy-hero-2100 .hero-bg-2100 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.privacy-hero-2100 .hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
}

.privacy-hero-2100 .orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(139, 92, 246, 0.2));
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.privacy-hero-2100 .orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(5, 150, 105, 0.2));
    bottom: -100px;
    left: -100px;
    animation-delay: -3s;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.privacy-hero-2100 .hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.privacy-hero-2100 .hero-container-2100 {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.privacy-hero-2100 .breadcrumb-2100 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.privacy-hero-2100 .breadcrumb-2100 a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.privacy-hero-2100 .breadcrumb-2100 a:hover {
    color: #3b82f6;
}

.privacy-hero-2100 .breadcrumb-2100 .separator {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}

.privacy-hero-2100 .breadcrumb-2100 .current {
    color: rgba(255,255,255,0.9);
}

.privacy-hero-2100 .hero-badge-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #3b82f6;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.privacy-hero-2100 .hero-badge-2100 i {
    font-size: 1.1rem;
}

.privacy-hero-2100 .hero-title-2100 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.privacy-hero-2100 .hero-title-2100 span {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-hero-2100 .hero-meta-2100 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.privacy-hero-2100 .meta-item-2100 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
}

.privacy-hero-2100 .meta-item-2100 i {
    color: #3b82f6;
}

/* Content Layout */
.privacy-content-2100 {
    padding: 80px 20px 100px;
}

.privacy-container-2100 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
}

/* Sidebar Navigation */
.privacy-sidebar-2100 {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-nav-2100 {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 25px;
}

.sidebar-nav-2100 h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-links-2100 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar-link-2100 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 10px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sidebar-link-2100:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.sidebar-link-2100.active {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    font-weight: 500;
}

.sidebar-link-2100 i {
    width: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Main Content */
.privacy-main-2100 {
    min-width: 0;
}

/* Section Cards */
.privacy-section-2100 {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.privacy-section-2100:hover {
    border-color: rgba(59, 130, 246, 0.2);
}

.section-header-2100 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.section-icon-2100 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.section-header-2100 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.section-content-2100 {
    color: rgba(255,255,255,0.7);
    line-height: 1.9;
    font-size: 1rem;
}

.section-content-2100 p {
    margin-bottom: 20px;
}

.section-content-2100 p:last-child {
    margin-bottom: 0;
}

/* Privacy List */
.privacy-list-2100 {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-list-2100 li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.privacy-list-2100 li:hover {
    background: rgba(59, 130, 246, 0.05);
}

.privacy-list-2100 li i {
    width: 24px;
    height: 24px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Security Features */
.security-grid-2100 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.security-item-2100 {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 14px;
}

.security-item-2100 i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #10b981;
}

.security-item-2100 span {
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

/* Rights Cards */
.rights-grid-2100 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.right-card-2100 {
    padding: 20px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.right-card-2100:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-3px);
}

.right-card-2100 h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.right-card-2100 h4 i {
    font-size: 0.9rem;
}

.right-card-2100 p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.6;
}

/* Contact Box */
.contact-box-2100 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.contact-item-2100 {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.contact-item-2100:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-item-2100 i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #3b82f6;
}

.contact-item-2100 .contact-info-2100 h4 {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-item-2100 .contact-info-2100 p {
    font-size: 1rem;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

/* CTA Section 2100 */
.privacy-cta-2100 {
    padding: 80px 20px;
}

.privacy-cta-2100 .cta-container-2100 {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.privacy-cta-2100 .cta-container-2100::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    animation: rotateBg 15s linear infinite;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-icon-2100 {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.cta-title-2100 {
    position: relative;
    z-index: 1;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.cta-title-2100 span {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc-2100 {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.cta-buttons-2100 {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-btn-primary-2100:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.cta-btn-secondary-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-secondary-2100:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* Light Theme Support */
[data-theme="light"] .privacy-hero-2100 .hero-title-2100,
[data-theme="light"] .section-header-2100 h2,
[data-theme="light"] .cta-title-2100 {
    color: #1e293b;
}

[data-theme="light"] .privacy-hero-2100 .breadcrumb-2100 a,
[data-theme="light"] .privacy-hero-2100 .meta-item-2100 {
    color: #64748b;
}

[data-theme="light"] .privacy-hero-2100 .breadcrumb-2100 .current {
    color: #1e293b;
}

[data-theme="light"] .privacy-section-2100,
[data-theme="light"] .sidebar-nav-2100 {
    background: rgba(255,255,255,0.8);
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

[data-theme="light"] .section-content-2100,
[data-theme="light"] .cta-desc-2100,
[data-theme="light"] .sidebar-link-2100 {
    color: #64748b;
}

[data-theme="light"] .privacy-list-2100 li {
    background: rgba(0,0,0,0.02);
}

[data-theme="light"] .security-item-2100 span,
[data-theme="light"] .contact-item-2100 .contact-info-2100 p {
    color: #1e293b;
}

[data-theme="light"] .right-card-2100 p,
[data-theme="light"] .contact-item-2100 .contact-info-2100 h4 {
    color: #64748b;
}

[data-theme="light"] .privacy-cta-2100 .cta-container-2100 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
}

[data-theme="light"] .cta-btn-secondary-2100 {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.1);
    color: #1e293b;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .privacy-container-2100 {
        grid-template-columns: 1fr;
    }
    
    .privacy-sidebar-2100 {
        position: relative;
        top: 0;
    }
    
    .sidebar-links-2100 {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sidebar-link-2100 {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .privacy-hero-2100 {
        min-height: 35vh;
        padding: 120px 20px 50px;
    }
    
    .privacy-hero-2100 .hero-badge-2100 {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .privacy-section-2100 {
        padding: 30px 25px;
    }
    
    .section-header-2100 {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .security-grid-2100,
    .rights-grid-2100,
    .contact-box-2100 {
        grid-template-columns: 1fr;
    }
    
    .privacy-cta-2100 .cta-container-2100 {
        padding: 35px 25px;
    }
    
    .cta-buttons-2100 {
        flex-direction: column;
    }
    
    .cta-btn-primary-2100,
    .cta-btn-secondary-2100 {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .privacy-hero-2100 .hero-title-2100 {
        font-size: 2rem;
    }
    
    .section-header-2100 h2 {
        font-size: 1.3rem;
    }
    
    .sidebar-nav-2100 {
        display: none;
    }
}
