/* ========================================
   PRIVACY POLICY SPECIFIC STYLES
   Add this to privacy-policy.css file
   ======================================== */

/* Privacy Content Container */
.privacy-content {
    padding: 2rem 0 4rem;
}

/* Privacy Header */
.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.privacy-header .page-title {
    font-size: 3rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.privacy-header .page-subtitle {
    font-size: 1.1rem;
    color: #999999;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Quick Navigation */
.privacy-nav {
    background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    position: sticky;
    top: 180px;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.privacy-nav h3 {
    color: #ff4444;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-nav h3::before {
    content: "📑";
    font-size: 1.5rem;
}

.privacy-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.privacy-nav-link {
    color: #cccccc;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s;
    display: block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
}

.privacy-nav-link:hover {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    border-color: rgba(255, 68, 68, 0.3);
    transform: translateX(5px);
}

/* Privacy Body */
.privacy-body {
    max-width: 900px;
    margin: 0 auto;
}

/* Privacy Sections */
.privacy-section {
    margin-bottom: 4rem;
    scroll-margin-top: 200px;
}

.section-title {
    font-size: 2rem;
    color: #ff4444;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 68, 68, 0.3);
}

.subsection-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.privacy-section p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

/* Privacy Lists */
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.privacy-list li {
    color: #cccccc;
    padding: 0.75rem 0 0.75rem 2.5rem;
    position: relative;
    line-height: 1.6;
    border-left: 2px solid rgba(255, 68, 68, 0.2);
    margin-left: 1rem;
}

.privacy-list li::before {
    content: "▸";
    position: absolute;
    left: 1rem;
    color: #ff4444;
    font-size: 1.2rem;
}

.privacy-list li strong {
    color: #ffffff;
}

/* Info Boxes */
.info-box {
    background: rgba(255, 68, 68, 0.08);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-left: 4px solid #ff4444;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.info-box h4 {
    color: #ff4444;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box h4::before {
    content: "•";
    font-size: 1.5rem;
}

.info-box .privacy-list {
    margin: 0.5rem 0 0;
}

/* Alert Box */
.alert-box {
    background: rgba(255, 150, 0, 0.1);
    border: 1px solid rgba(255, 150, 0, 0.3);
    border-left: 4px solid #ff9600;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    color: #ffcc99;
}

.alert-box strong {
    color: #ff9600;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.right-card:hover {
    background: rgba(255, 68, 68, 0.1);
    border-color: #ff4444;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
}

.right-card h4 {
    color: #ff4444;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.right-card h4::before {
    content: "✓";
    display: inline-block;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 1rem;
}

.right-card p {
    color: #999999;
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Info Box */
.contact-info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.contact-method {
    color: #cccccc;
}

.contact-method strong {
    color: #ff4444;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-method a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-method a:hover {
    color: #ff4444;
}

.contact-method address {
    font-style: normal;
    line-height: 1.6;
}

/* Privacy Links */
.privacy-link {
    color: #ff4444;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.privacy-link:hover {
    color: #ff6666;
    border-bottom-color: #ff4444;
}

/* Consent Section */
.consent-section {
    background: rgba(255, 68, 68, 0.08);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.consent-section .section-title {
    border: none;
    text-align: center;
}

.consent-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #cc0000, #990000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ff4444;
    border: 2px solid #ff4444;
}

.btn-secondary:hover {
    background: rgba(255, 68, 68, 0.1);
    transform: translateY(-2px);
}

/* Footer Active Link */
.footer-link.active {
    color: #ff4444;
    font-weight: 600;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

/* Print Styles */
@media print {
    .header,
    .announcement-bar,
    .info-bar,
    .footer,
    .chat-btn,
    .chat-container,
    .privacy-nav,
    .consent-actions,
    .scroll-top-btn {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .privacy-content {
        margin-top: 0;
    }

    .section-title,
    .subsection-title,
    .privacy-link,
    .right-card h4 {
        color: #000;
    }

    .privacy-section p,
    .privacy-list li {
        color: #333;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-header .page-title {
        font-size: 2rem;
    }

    .privacy-nav {
        position: static;
        padding: 1.5rem;
    }

    .privacy-nav-list {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .subsection-title {
        font-size: 1.2rem;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-box {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .consent-section {
        padding: 2rem 1rem;
    }

    .consent-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .privacy-header .page-title {
        font-size: 1.75rem;
    }

    .privacy-header .page-subtitle {
        font-size: 0.95rem;
    }

    .privacy-nav h3 {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .info-box,
    .alert-box {
        padding: 1rem;
    }
}

/* Smooth Scrolling Enhancement */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background: rgba(255, 68, 68, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(255, 68, 68, 0.3);
    color: #ffffff;
}

/* Focus Styles for Accessibility */
.privacy-nav-link:focus,
.btn-primary:focus,
.btn-secondary:focus {
    outline: 2px solid #ff4444;
    outline-offset: 4px;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-section {
    animation: fadeIn 0.6s ease-out;
}

/* Hover Effect for Sections */
.privacy-section {
    transition: all 0.3s;
    padding: 1rem;
    margin: 0 -1rem 4rem;
    border-radius: 8px;
}

.privacy-section:hover {
    background: rgba(255, 255, 255, 0.02);
}