/* =======================================================
   PRIVACY POLICY HERO SECTION
   PREMIUM MODERN UI STYLE
========================================================= */

.privacy-policy-hero-section{
    position:relative;
    min-height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 20px;
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

/* =========================================
   OVERLAY
========================================= */

.privacy-policy-hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.55)
        ),
        url('../images/ebony-black-carousel-far.webp') center/cover no-repeat;
    backdrop-filter:blur(5px);
    z-index:1;
}

/* =========================================
   CONTAINER
========================================= */

.privacy-policy-hero-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================================
   CONTENT
========================================= */

.privacy-policy-hero-content{
    text-align:center;
    color:#ffffff;
    animation:privacyPolicyFadeUp 1s ease forwards;
    opacity:0;
}

/* =========================================
   TITLE
========================================= */

.privacy-policy-hero-title{
    font-family:'Orbitron',sans-serif;
    font-size:46px;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:20px;
    line-height:1.3;
    letter-spacing:.5px;
    text-shadow:0 4px 20px rgba(0,0,0,.35);
}

/* =========================================
   DIVIDER
========================================= */

.privacy-policy-hero-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

/* =========================================
   LINE
========================================= */

.privacy-policy-hero-line{
    width:160px;
    height:14px;
    border-radius:20px;
    background:#ffffff;
    opacity:.7;
    position:relative;
    overflow:hidden;
}

.privacy-policy-hero-line::before{
    content:"";
    position:absolute;
    inset:0;
    background:#CE0F2C;
    animation:privacyPolicyLineMove 2s linear infinite;
}

/* =========================================
   ICON
========================================= */

.privacy-policy-hero-icon{
    width:18px;
    height:18px;
    display:flex;
    animation:privacyPolicyPulse 2s ease infinite;
}

.privacy-policy-hero-icon svg{
    width:100%;
    height:100%;
    fill:#CE0F2C;
    filter:drop-shadow(0 0 10px rgba(206,15,44,.5));
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes privacyPolicyFadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes privacyPolicyLineMove{

    0%{
        transform:translateX(-100%);
    }

    100%{
        transform:translateX(100%);
    }

}

@keyframes privacyPolicyPulse{

    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.2);
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:768px){

    .privacy-policy-hero-title{
        font-size:28px;
    }

    .privacy-policy-hero-section{
        padding:60px 15px;
    }

    .privacy-policy-hero-line{
        width:70px;
    }

}

@media (max-width:480px){

    .privacy-policy-hero-title{
        font-size:24px;
        line-height:1.4;
    }

    .privacy-policy-hero-line{
        width:40px;
    }

    .privacy-policy-hero-divider{
        gap:8px;
    }

}







/* =========================
   ROOT (SAFE MODERN UPGRADE)
========================= */
:root {
    --bg: #f6f8fc;
    --card: rgba(255, 255, 255, 0.78);
    --text: #CE0F2C;
    --muted: #374151; /* FIXED (was invalid #00000) */
    --primary: #2563eb;
    --border: rgba(0, 0, 0, 0.06);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 28px 70px rgba(0, 0, 0, 0.12);
    --radius: 18px;
}

/* =========================
   SECTION WRAPPER (UNCHANGED FEEL)
========================= */
.privacy-section {
    position: relative;
    padding: 60px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 100%);
    overflow: hidden;
}

/* overlay FIX (kept same behavior) */
.privacy-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);
    pointer-events: none;
}

/* =========================
   CONTAINER (UNCHANGED)
========================= */
.privacy-policy-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   CONTENT FLOW (slightly improved spacing)
========================= */
.privacy-policy-content {
    display: flex;
    flex-direction: column;
    gap: 22px; /* slightly tighter, cleaner */
}

/* =========================
   CARD (SAFE MODERN POLISH)
========================= */
.privacy-block {
    position: relative;
    z-index: 2;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 30px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all 0.25s ease;
    overflow: hidden;
    isolation: isolate;
}

/* subtle hover (less aggressive than before) */
.privacy-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* =========================
   TOP BORDER ACCENT (kept clean)
========================= */
.privacy-block h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    position: relative;
    padding-left: 14px;
    letter-spacing: -0.2px;
}

/* accent bar refined */
.privacy-block h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, #CE0F2C, #b80c25);
}

/* =========================
   TEXT (IMPROVED READABILITY)
========================= */
.privacy-block p,
.privacy-block li {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--muted);
}

/* =========================
   LIST
========================= */
.privacy-block ul {
    margin: 12px 0 0 18px;
}

.privacy-block li {
    margin-bottom: 6px;
}

/* =========================
   LINKS (SAFE UX FIX)
========================= */
.privacy-block a {
    color:#CE0F2C;
    font-weight:600;
    text-decoration:none;
    position:relative;
}

.privacy-block a::after {
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0%;
    height:2px;
    background:#ff4d6d;
    transition:0.3s ease;
}

.privacy-block a:hover::after{
    width:100%;
}

/* =========================
   ANIMATION (SOFT ONLY)
========================= */
.privacy-block {
    animation: fadeUp 0.5s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   TABLET (UNCHANGED STRUCTURE)
========================= */
@media (max-width: 992px) {
    .privacy-section {
        padding: 90px 18px;
    }

    .privacy-block {
        padding: 24px;
    }
}

/* =========================
   MOBILE (SAFE UX)
========================= */
@media (max-width: 768px) {
    .privacy-section {
        padding: 70px 14px;
    }

    .privacy-block {
        padding: 20px;
        border-radius: 16px;
    }

    .privacy-block h2 {
        font-size: 18px;
    }

    .privacy-block p,
    .privacy-block li {
        font-size: 14.5px;
    }

    .privacy-block:hover {
        transform: none;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
    .privacy-section {
        padding: 60px 12px;
    }

    .privacy-block {
        padding: 18px;
    }

    .privacy-block h2 {
        font-size: 17px;
    }
}


