/* ==========================================================================
   SWAM 2026 Privacy Policy - Glassmorphism Page Styling
   ========================================================================== */

.privacy-page-wrapper {
    background-color: var(--swam-navy-950, #020e2e);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
    padding: 130px 0 90px;
    font-family: var(--font-plus-jakarta-sans, 'Plus Jakarta Sans', sans-serif);
    color: #ffffff;
}

/* Exhibition Hall Texture Background */
.privacy-page-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 980px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.privacy-page-bg__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.24;
    filter: contrast(120%) brightness(90%);
    mix-blend-mode: luminosity;
}

.privacy-page-bg__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(2, 14, 46, 0.4) 0%,
            rgba(2, 22, 78, 0.75) 420px,
            #020e2e 740px,
            #020e2e 100%);
}

.privacy-container {
    max-width: 960px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* Hero Header */
.privacy-hero-header {
    text-align: center;
    margin-bottom: 45px;
}

.privacy-hero-title {
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin-bottom: 16px;
}

.privacy-hero-subtitle {
    font-size: 15.5px;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.82);
    max-width: 740px;
    margin: 0 auto;
    font-weight: 400;
}

/* Main Card */
.privacy-glass-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(28px) saturate(170%);
    -webkit-backdrop-filter: blur(28px) saturate(170%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 26px;
    padding: 44px 48px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.65), inset 0 1px 1.5px rgba(255, 255, 255, 0.35);
    position: relative;
}

/* Intro Box - Frosted Glass sub-card */
.privacy-card-intro {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 3px solid var(--swam-gold-500, #e8ba55);
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.privacy-card-intro p {
    font-size: 14.5px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

.privacy-content-sections {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Section Item - Frosted Glass Card */
.privacy-section-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.privacy-section-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(245, 212, 130, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.privacy-section-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Number Badge - Frosted Gold Glass */
.privacy-section-number {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(232, 186, 85, 0.28) 0%, rgba(232, 186, 85, 0.08) 100%);
    border: 1px solid rgba(232, 186, 85, 0.45);
    box-shadow: 0 4px 14px rgba(232, 186, 85, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    color: var(--swam-gold-400, #f5d482);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.privacy-section-title h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.privacy-section-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.82);
}

.privacy-bullet-list {
    margin: 6px 0 0 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.privacy-bullet-list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.82);
}

.privacy-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 0;
    color: var(--swam-gold-400, #f5d482);
    font-size: 18px;
    line-height: 1.3;
}

.privacy-gold-link {
    color: var(--swam-gold-400, #f5d482);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.privacy-gold-link:hover {
    color: #ffffff;
    text-decoration-color: #ffffff;
}

/* Contact Box - Frosted Glass Container */
.privacy-contact-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(135deg, rgba(232, 186, 85, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(232, 186, 85, 0.35);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 26px 30px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), inset 0 1px 1.5px rgba(255, 255, 255, 0.35);
}

.privacy-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(232, 186, 85, 0.3) 0%, rgba(232, 186, 85, 0.1) 100%);
    border: 1px solid rgba(232, 186, 85, 0.5);
    color: var(--swam-gold-400, #f5d482);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(232, 186, 85, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.privacy-contact-info h4 {
    margin: 0 0 6px 0;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.privacy-contact-info p {
    margin: 0 0 14px 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.privacy-contact-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--swam-navy-850, #0b2248);
    text-decoration: none;
    background: linear-gradient(180deg, #f5d482 0%, #e8ba55 100%);
    border: none;
    padding: 10px 22px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(232, 186, 85, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.4);
    transition: all 0.25s ease;
}

.privacy-contact-email:hover {
    background: linear-gradient(180deg, #fff0ba 0%, #f5d482 100%);
    color: #05142e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 186, 85, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.privacy-contact-email i {
    font-size: 16px;
}

/* Responsive Layout */
@media (max-width: 767px) {
    .privacy-page-wrapper {
        padding: 100px 0 60px;
    }

    .privacy-glass-card {
        padding: 26px 20px;
        border-radius: 20px;
    }

    .privacy-hero-title {
        font-size: 30px;
    }

    .privacy-section-item {
        padding: 20px 18px;
    }

    .privacy-contact-box {
        flex-direction: column;
        gap: 14px;
        padding: 20px;
    }

    .privacy-contact-email {
        width: 100%;
        justify-content: center;
    }
}