/* ============================================
   PRIVACY PAGE STYLES (CONSOLIDATED)
   ============================================ */

/* -------------------------------------------
   1. Page & Layout Base
   ------------------------------------------- */
.privacy-page {
    background: var(--color-navy-deep);
    color: var(--color-ivory);
    overflow-x: hidden;
}

.main-container {
    display: flex;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    gap: 4rem;
    /* Space between sidebar and content */
}

.content-area {
    flex: 1;
    padding: 6rem 4rem 4rem 0;
    /* Top Right Bottom Left */
    overflow: hidden;
}

.content-section {
    min-height: 80vh;
    margin-bottom: 6rem;
    padding-top: 2rem;
    position: relative;
}

/* -------------------------------------------
   2. Hero Section (3D Background)
   ------------------------------------------- */
.privacy-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    pointer-events: none;
}

.shield-icon-wrapper {
    font-size: 4rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.privacy-hero .hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
    letter-spacing: 0.5rem;
    color: var(--color-gold);
    font-family: var(--font-display);
}

.privacy-hero .hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    font-family: var(--font-serif);
    font-style: italic;
    letter-spacing: 0.1rem;
}

.scroll-indicator-wrapper {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* -------------------------------------------
   3. Sidebar Navigation (Quick Nav)
   ------------------------------------------- */
.quick-nav {
    position: sticky;
    top: 100px;
    height: calc(100vh - 100px);
    width: 250px;
    padding: 2rem;
    border-right: 1px solid rgba(212, 175, 55, 0.1);
    display: none;
    /* Hidden on mobile */
}

@media (min-width: 1024px) {
    .quick-nav {
        display: block;
    }
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 0;
}

.nav-item {
    text-decoration: none;
    color: var(--color-text-muted);
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 0;
    border-left: 2px solid transparent;
}

.nav-item:hover,
.nav-item.active {
    color: var(--color-gold);
    padding-left: 1rem;
    border-left-color: var(--color-gold);
}

/* -------------------------------------------
   4. Glass Components & Refinements
   ------------------------------------------- */

/* Intro Section Specific */
#intro .glass-panel {
    max-width: 900px;
    margin-left: 0;
}

/* Glass Panel Base */
.glass-panel {
    background: rgba(26, 35, 50, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 4rem 3rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-panel:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(212, 175, 55, 0.05);
}

.panel-header {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.panel-number {
    color: var(--color-gold);
    opacity: 0.5;
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
}

.panel-header h2 {
    font-size: 2.2rem;
    color: var(--color-ivory);
    font-family: var(--font-display);
    margin: 0;
}

.panel-header h2 i {
    color: var(--color-gold);
    margin-right: 0.8rem;
}

/* -------------------------------------------
   5. Data Modules & Grids
   ------------------------------------------- */
.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    width: 100%;
}

.data-module {
    background: rgba(10, 25, 41, 0.6);
    border-radius: 8px;
    padding: 2.5rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.data-module:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.data-module h3 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 0.5rem;
}

/* Generic List Styling */
.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-muted);
}

.styled-list li::before {
    content: '•';
    color: var(--color-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.usage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(10, 25, 41, 0.5);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.usage-item i {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-top: 0.2rem;
}

.usage-item span {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.usage-item strong {
    color: var(--color-ivory);
    display: block;
    margin-bottom: 0.3rem;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.partner-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.partner-card i {
    font-size: 2.5rem;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.partner-card:hover i {
    color: var(--color-gold);
}

/* Cookies */
.cookie-types {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cookie-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* Rights Module */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.right-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 3px solid var(--color-gold);
    color: var(--color-text-muted);
    font-size: 1rem;
}

.right-item strong {
    color: var(--color-ivory);
    margin-right: 0.5rem;
}

/* Highlight Box */
.highlight-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem;
    border-radius: 6px;
    color: var(--color-text-muted);
    margin-top: 2rem;
}

.highlight-box strong {
    color: var(--color-gold);
}

/* Contact Panel */
.contact-panel {
    text-align: center;
    max-width: 600px;
    margin: 4rem auto 0;
}

.btn-primary {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-navy-deep);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* -------------------------------------------
   6. Animation Utilities
   ------------------------------------------- */
.text-reveal {
    opacity: 0;
    transform: translateY(20px);
}

/* -------------------------------------------
   7. Responsive Design
   ------------------------------------------- */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
        gap: 2rem;
    }

    .quick-nav {
        display: none;
    }

    .content-area {
        padding: 2rem;
    }

    .glass-panel {
        padding: 2rem 1.5rem;
    }

    #intro .glass-panel {
        margin: 0 auto;
    }
}