/* =========================================
   RESET & VARIABLES
========================================= */
:root {
    --bg-dark: #0a0e17;
    --bg-panel: #111625;
    --primary-cyan: #00f0ff;
    --accent-purple: #bd00ff;
    --text-white: #ffffff;
    --text-gray: #a0a8b8;
    --neon-blue: #00C6FF;
    --neon-purple: #9D00FF;

    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   HEADER & NAVIGATION  (same as about.css)
========================================= */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(230 233 243 / 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.4s ease;
    z-index: 999;
    height: 70px;
}

.sticky {
    background: rgba(203, 205, 211, 0.95);
    border-bottom: 1px solid rgba(0, 198, 255, 0.2);
}

/* LOGO */
.logo img {
    width: 80px;
    height: 60px;
}

/* NAV CENTER */
.nav-middle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    color: black;
    padding-bottom: 5px;
    transition: 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: blue;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

/* CONTACT BUTTON */
.contact-right a {
    text-decoration: none;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 6px;
    color: white;
    background: linear-gradient(90deg, var(--neon-blue), #3530bf);
    transition: 0.3s;
}

.contact-right a:hover {
    background: linear-gradient(90deg, #3530bf, var(--neon-blue));
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.4);
}

/* HAMBURGER */
.mobile-menu-toggle {
    display: none;
}

/* =========================================
   MEGA DROPDOWNS  (same as about.css)
========================================= */
.mega-dropdown-parent {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.mega-menu-container {
    position: absolute;
    top: 170%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: min(750px, 92vw);
    background: rgb(230 233 243 / 90%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-top: 1px solid var(--neon-blue);
    border-radius: 0 0 10px 10px;
    padding: 18px 28px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
}

.mega-dropdown-parent:hover .mega-menu-container {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.mega-col h4.neon-title {
    color: #000;
    font-size: 0.9rem;
    font-weight: bolder;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 10px;
    margin-left: 20px;
    cursor: pointer;
}

.mega-col h4 i {
    color: var(--neon-purple);
    margin-right: 8px;
}

.mega-col ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-col ul li a {
    text-decoration: none;
    color: #333333;
    font-weight: bold;
    margin-left: 20px;
    font-size: 0.95rem;
    display: block;
    transition: 0.2s;
}

.mega-col ul li a:hover {
    color: blue;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    transform: translateX(5px);
}

.arrow-icon {
    margin-left: 6px;
    transition: 0.3s;
}

.mega-dropdown-parent:hover .arrow-icon {
    transform: rotate(180deg);
    color: blue;
}

/* =========================================
   HERO
========================================= */
.privacy-hero {
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 70px;           /* offset fixed header */
    background: radial-gradient(circle at center, #1a2236 0%, var(--bg-dark) 70%);
    position: relative;
    overflow: hidden;
}

/* subtle grid lines in background */
.privacy-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,198,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,198,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-icon {
    font-size: 3.5rem;
    color: var(--primary-cyan);
    text-shadow: 0 0 30px rgba(0,240,255,0.5);
    margin-bottom: 20px;
}

.privacy-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.highlight {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 550px;
    margin: 0 auto;
}

/* =========================================
   MAIN CONTENT
========================================= */
.privacy-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 30px 80px;
}

/* INTRO CARD */
.policy-intro {
    background: var(--bg-panel);
    border: 1px solid rgba(0,198,255,0.2);
    border-left: 4px solid var(--primary-cyan);
    border-radius: 10px;
    padding: 30px 35px;
    margin-bottom: 50px;
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.policy-intro strong {
    color: var(--text-white);
}

/* POLICY GRID */
.policy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* EACH BLOCK */
.policy-block {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--bg-panel);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 32px 36px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.policy-block:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 8px 30px rgba(0,240,255,0.08);
    transform: translateY(-4px);
}

/* ICON */
.block-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(0,198,255,0.08);
    border: 1px solid rgba(0,198,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-cyan);
}

.block-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.block-body p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.block-body strong {
    color: var(--text-white);
}

/* EMAIL LINK */
.email-link {
    color: var(--primary-cyan);
    text-decoration: none;
    border-bottom: 1px dashed rgba(0,240,255,0.4);
    transition: border-color 0.3s;
}

.email-link:hover {
    border-bottom-color: var(--primary-cyan);
    text-shadow: 0 0 8px rgba(0,240,255,0.4);
}

/* =========================================
   SECTION DIVIDER
========================================= */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    opacity: 0;
    filter: blur(2px);
    transition: opacity 0.6s ease, filter 0.6s ease;
}

.section-divider.active {
    opacity: 1;
    filter: blur(0);
}

/* =========================================
   FOOTER  (same as about.css)
========================================= */
.aa-footer {
    background: #1b1b1b;
    color: #fff;
    padding: 50px 20px 0;
}

.aa-footer-top {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.aa-brand img {
    width: 80px;
    height: 60px;
    background-color: white;
    border-radius: 5px;
}

.aa-divider-vertical {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.3);
}

.aa-tagline p {
    font-size: 1.4rem;
    font-weight: 300;
    color: #ffffff;
}

.aa-footer-line {
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 40px auto;
    max-width: 1200px;
}

.aa-footer-bottom {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.aa-footer-col h4 {
    margin-bottom: 20px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: #fff;
}

.aa-footer-col ul {
    list-style: none;
    padding: 0;
}

.aa-footer-col ul li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #bbb;
}

.aa-footer-col ul li a {
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
}

.aa-footer-col ul li a:hover {
    color: var(--neon-blue);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* SOCIAL BOX */
.social-box-container {
    display: flex;
    justify-content: flex-end;
}

.social-glow-box {
    background: rgba(255,255,255,0.03);
    padding: 28px;
    border-radius: 16px;
    border: 2px solid transparent;
    background-image:
        linear-gradient(var(--bg-dark), var(--bg-dark)),
        linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 30px rgba(157,0,255,0.3);
    text-align: center;
}

.social-glow-box h4 {
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 22px;
}

.social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
    text-decoration: none;
}

.facebook  { color: #1877f2; }
.facebook:hover  { box-shadow: 0 0 20px #1877f2; }

.instagram { color: #c32aa3; }
.instagram:hover { box-shadow: 0 0 20px #c32aa3; }

.x-twitter { color: #fff; }
.x-twitter:hover { box-shadow: 0 0 20px #fff; }

.linkedin  { color: #0a66c2; }
.linkedin:hover  { box-shadow: 0 0 20px #0a66c2; }

/* COPYRIGHT */
.aa-footer-copy {
    text-align: center;
    padding: 18px;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* =========================================
   ANIMATION CLASSES
========================================= */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   MEDIA QUERIES (MOBILE)
========================================= */
@media (max-width: 900px) {
    .main-header {
        padding: 12px 16px;
    }

    .logo img {
        width: 80px;
        height: 60px;
    }

    .mobile-menu-toggle {
        display: flex;
        font-size: 26px;
        cursor: pointer;
        color: #000;
    }

    .contact-right {
        display: none;
    }

    /* NAV PANEL */
    .main-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 3000;
        overflow-y: auto;
    }

    .main-nav.active {
        display: flex;
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        padding: 20px;
        gap: 10px;
    }

    .main-nav a {
        color: #111 !important;
        font-size: 16px;
        padding: 12px 10px;
    }

    /* HERO */
    .privacy-hero h1 { font-size: 2rem; }
    .subtitle        { font-size: 1rem; max-width: 90%; }
    .hero-icon       { font-size: 2.5rem; }

    /* MAIN */
    .privacy-main { padding: 40px 16px 60px; }

    .policy-block {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
    }

    /* MEGA MENU ACCORDION */
    .mega-menu-container {
        position: static;
        width: 100%;
        padding: 10px 15px;
        display: none;
        box-shadow: none;
        background: #f6f7f9;
    }

    .mega-dropdown-parent.active .mega-menu-container { display: block; }

    .mega-content-grid { grid-template-columns: 1fr; gap: 12px; }
    .arrow-icon { transform: none !important; }

    /* FOOTER */
    .aa-tagline p { font-size: 1rem; }

    .social-box-container { justify-content: center; }
}