/* Privacy Policy Parallax Hero */
.privacy-hero-parallax {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F3460 0%, #16213E 50%, #0F3460 100%);
    overflow: hidden;
    padding: 8rem 0 6rem;
}

/* Privacy Icons Overlay - Works with Terms-style hero background */
.privacy-icons-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.privacy-icons-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

.privacy-icon {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.privacy-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.2));
}

.privacy-icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.privacy-icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 22s;
    width: 120px;
    height: 120px;
}

.privacy-icon-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 20s;
    width: 100px;
    height: 100px;
}

.privacy-icon-4 {
    top: 25%;
    right: 25%;
    animation-delay: -15s;
    animation-duration: 25s;
    width: 180px;
    height: 180px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
    }

    50% {
        transform: translateY(0px) translateX(-10px) rotate(-5deg);
    }

    75% {
        transform: translateY(20px) translateX(5px) rotate(3deg);
    }
}

.privacy-hero-parallax .container {
    position: relative;
    z-index: 1;
}

.privacy-hero-parallax h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.privacy-hero-parallax .lead-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.privacy-hero-parallax .page-hero-content {
    text-align: center;
}

/* Parallax Scroll Effect */
@media (min-width: 769px) {
    .privacy-hero-parallax .privacy-icon-1 {
        animation: parallaxFloat1 20s ease-in-out infinite;
    }

    .privacy-hero-parallax .privacy-icon-2 {
        animation: parallaxFloat2 22s ease-in-out infinite;
    }

    .privacy-hero-parallax .privacy-icon-3 {
        animation: parallaxFloat3 18s ease-in-out infinite;
    }

    .privacy-hero-parallax .privacy-icon-4 {
        animation: parallaxFloat4 25s ease-in-out infinite;
    }
}

@keyframes parallaxFloat1 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }

    25% {
        transform: translateY(-30px) translateX(20px) scale(1.05);
    }

    50% {
        transform: translateY(-10px) translateX(-15px) scale(0.95);
    }

    75% {
        transform: translateY(25px) translateX(10px) scale(1.02);
    }
}

@keyframes parallaxFloat2 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
    }

    25% {
        transform: translateY(20px) translateX(-15px) scale(1.08) rotate(3deg);
    }

    50% {
        transform: translateY(-5px) translateX(10px) scale(0.92) rotate(-3deg);
    }

    75% {
        transform: translateY(-20px) translateX(-5px) scale(1.05) rotate(2deg);
    }
}

@keyframes parallaxFloat3 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }

    33% {
        transform: translateY(-25px) translateX(15px) scale(1.1);
    }

    66% {
        transform: translateY(15px) translateX(-20px) scale(0.9);
    }
}

@keyframes parallaxFloat4 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
    }

    20% {
        transform: translateY(-15px) translateX(-10px) scale(1.05) rotate(-5deg);
    }

    40% {
        transform: translateY(10px) translateX(15px) scale(0.95) rotate(5deg);
    }

    60% {
        transform: translateY(-20px) translateX(5px) scale(1.08) rotate(-3deg);
    }

    80% {
        transform: translateY(5px) translateX(-12px) scale(0.98) rotate(3deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .privacy-hero-parallax {
        min-height: 400px;
        padding: 6rem 0 4rem;
    }

    .privacy-hero-parallax h1 {
        font-size: 2.5rem;
    }

    .privacy-hero-parallax .lead-text {
        font-size: 1.1rem;
    }

    .privacy-icon {
        width: 100px;
        height: 100px;
    }

    .privacy-icon-1 {
        width: 80px;
        height: 80px;
    }

    .privacy-icon-4 {
        width: 120px;
        height: 120px;
    }
}