/* Privacy Policy Page Styles */

.privacy-main {
    padding-top: 70px;
    min-height: 100vh;
    background: #0a0a0a;
}

/* Privacy Hero Section */
.privacy-hero {
    position: relative;
    padding: 4rem 4% 3rem;
    background: linear-gradient(135deg, rgba(91, 141, 238, 0.1) 0%, rgba(168, 85, 247, 0.08) 100%);
    border-bottom: 1px solid rgba(91, 141, 238, 0.2);
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(91, 141, 238, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(168, 85, 247, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.privacy-hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.privacy-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.privacy-hero-subtitle {
    font-size: 1rem;
    color: #5B8DEE;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.privacy-hero-description {
    font-size: 1.2rem;
    color: #999;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Privacy Container */
.privacy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 4%;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Sidebar */
.privacy-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.sidebar-link {
    padding: 0.7rem 1rem;
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(135deg, #5B8DEE 0%, #A855F7 100%);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(91, 141, 238, 0.1);
    color: #5B8DEE;
    padding-left: 1.5rem;
}

.sidebar-link.active::before {
    height: 70%;
}

/* Privacy Content */
.privacy-content {
    max-width: 900px;
}

.privacy-section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background: linear-gradient(135deg, #5B8DEE 0%, #A855F7 100%);
    border-radius: 3px;
}

.section-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
}

.section-content p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin: 2rem 0 1rem;
}

.section-content ul,
.section-content ol {
    color: #ccc;
    line-height: 1.8;
    font-size: 1rem;
    margin: 1rem 0 1.5rem 1.5rem;
}

.section-content li {
    margin-bottom: 0.8rem;
}

.section-content li strong {
    color: #5B8DEE;
    font-weight: 600;
}

.section-content a {
    color: #5B8DEE;
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-content a:hover {
    color: #A855F7;
    text-decoration: underline;
}

/* Highlight Box */
.highlight-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(91, 141, 238, 0.1);
    border: 1px solid rgba(91, 141, 238, 0.3);
    border-left: 4px solid #5B8DEE;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.highlight-box svg {
    flex-shrink: 0;
    color: #5B8DEE;
}

.highlight-box strong {
    color: #5B8DEE;
    font-weight: 700;
}

.highlight-box.warning {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    border-left-color: #ef4444;
}

.highlight-box.warning svg,
.highlight-box.warning strong {
    color: #ef4444;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(91, 141, 238, 0.3);
    transform: translateY(-3px);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(91, 141, 238, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #5B8DEE;
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.right-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(91, 141, 238, 0.3);
    transform: translateX(5px);
}

.right-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #5B8DEE 0%, #A855F7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.right-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.right-content p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact Info Box */
.contact-info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-method svg {
    flex-shrink: 0;
    color: #5B8DEE;
    margin-top: 0.2rem;
}

.contact-method strong {
    display: block;
    color: #fff;
    margin-bottom: 0.3rem;
}

.contact-method a {
    color: #5B8DEE;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #A855F7;
}

.response-time {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .privacy-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar-sticky {
        position: static;
    }

    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .sidebar-link {
        padding: 0.6rem 1rem;
    }

    .sidebar-link::before {
        display: none;
    }

    .sidebar-link:hover,
    .sidebar-link.active {
        padding-left: 1rem;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 3rem 5% 2rem;
    }

    .privacy-hero-title {
        font-size: 2rem;
    }

    .privacy-hero-subtitle {
        font-size: 0.9rem;
    }

    .privacy-hero-description {
        font-size: 1rem;
    }

    .privacy-container {
        padding: 2rem 5%;
    }

    .section-title {
        font-size: 1.5rem;
        padding-left: 1rem;
    }

    .section-title::before {
        width: 4px;
    }

    .section-content {
        padding: 1.5rem;
    }

    .subsection-title {
        font-size: 1.1rem;
    }

    .info-grid,
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-box {
        flex-direction: column;
        padding: 1.2rem;
    }

    .sidebar-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .sidebar-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Print Styles */
@media print {
    .privacy-hero,
    .privacy-sidebar,
    header,
    footer {
        display: none;
    }

    .privacy-container {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .privacy-section {
        page-break-inside: avoid;
    }

    .section-content {
        border: 1px solid #ccc;
    }
}

/* Focus Styles for Accessibility */
.sidebar-link:focus {
    outline: 2px solid rgba(91, 141, 238, 0.6);
    outline-offset: 2px;
}

/* Scroll Progress Indicator (Optional) */
.scroll-progress {
    position: fixed;
    top: 70px;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #5B8DEE 0%, #A855F7 100%);
    z-index: 1000;
    transition: width 0.1s ease;
}
