/* ============================================
   PREMIUM POLICY PAGE STYLES
   For Privacy Policy and Terms of Service
============================================ */

/* Hero Section */
.policy-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212, 165, 116, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.policy-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: policyFloat 20s infinite alternate ease-in-out;
}

.policy-hero-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(212, 165, 116, 0.2);
    top: -100px;
    right: 10%;
}

.policy-hero-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(30, 58, 138, 0.2);
    bottom: -80px;
    left: -80px;
    animation-delay: -5s;
}

@keyframes policyFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

.policy-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.policy-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 165, 116, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.policy-hero-badge i {
    color: #d4a574;
    font-size: 14px;
}

.policy-hero-badge span {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.policy-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.policy-hero h1 span {
    background: linear-gradient(135deg, #d4a574 0%, #f3d2b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Content Section */
.policy-section {
    padding: 80px 0;
    background: #f8fafc;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.policy-body h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.policy-body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-body h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #d4a574;
    border-radius: 2px;
}

.policy-body p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.policy-body li {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.policy-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: 700;
}

.policy-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.policy-footer p {
    font-size: 14px;
    font-style: italic;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-hero {
        padding: 100px 0 60px;
    }

    .policy-hero h1 {
        font-size: 32px;
    }

    .policy-container {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .policy-body h2 {
        font-size: 24px;
    }

    .policy-body h3 {
        font-size: 18px;
    }
}