/* Root Variables - Black Theme */
:root {
    --primary-color: #212529;
    --secondary-color: #333;
    --accent-color: #212529;
    --accent-secondary: #000000;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #212529 0%, #000000 100%);
}

/* Full Width Wrapper */
.privacy-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Hero Section */
.privacy-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent, rgba(33, 37, 41, 0.05));
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.privacy-title {
    font-size: 64px;
    font-weight: 300;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.last-updated {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.accent-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, white, transparent);
    margin: 0 auto;
    opacity: 0;
    animation: fadeInScale 0.8s ease 0.4s forwards;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    width: 100%;
}

.content-section:nth-child(even) {
    background-color: var(--bg-light);
}

.section-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Content Typography */
.content-block {
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #000000;
    border-radius: 2px;
}

.content-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.content-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.content-text a {
    color: #000000;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.content-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000000;
    transition: width 0.3s ease;
}

.content-text a:hover {
    color: var(--primary-color);
}

.content-text a:hover::after {
    width: 100%;
}

/* List Styles */
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.privacy-list li {
    position: relative;
    padding: 15px 0 15px 35px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    transition: var(--transition);
}

.privacy-list li::before {
    content: '▪';
    position: absolute;
    left: 0;
    top: 15px;
    color: #000000;
    font-size: 20px;
}

.privacy-list li:hover {
    padding-left: 45px;
    color: var(--primary-color);
}

/* Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    text-align: center;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.info-card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Box */
.contact-box {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-box-content {
    position: relative;
    z-index: 1;
}

.contact-box-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-box-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #000000;
    padding: 15px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-email-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #000000;
    background: #f0f0f0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* RTL Styles */
[dir="rtl"] .privacy-title {
    letter-spacing: normal;
}

[dir="rtl"] .section-title::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .privacy-list li {
    padding-left: 0;
    padding-right: 35px;
}

[dir="rtl"] .privacy-list li::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .privacy-list li:hover {
    padding-left: 0;
    padding-right: 45px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 80px 0;
    }

    .privacy-title {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 28px;
    }

    .content-section {
        padding: 60px 0;
    }

    .contact-box {
        padding: 40px 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-box-title {
        font-size: 28px;
    }

    .contact-box-text {
        font-size: 16px;
        padding: 0 10px;
    }

    .contact-email-link {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 320px;
        justify-content: center;
        letter-spacing: 0;
        word-break: break-all;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 60px 0;
    }

    .privacy-title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 24px;
    }

    .content-text {
        font-size: 16px;
    }

    .contact-box {
        padding: 30px 15px;
    }

    .contact-box-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .contact-box-text {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 0 5px;
    }

    .contact-email-link {
        padding: 12px 20px;
        font-size: 13px;
        gap: 8px;
        width: 100%;
        max-width: 280px;
        word-break: break-word;
    }

    .contact-email-link i {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .privacy-title {
        font-size: 28px;
    }

    .contact-box {
        padding: 25px 10px;
    }

    .contact-box-title {
        font-size: 20px;
    }

    .contact-box-text {
        font-size: 13px;
    }

    .contact-email-link {
        padding: 10px 15px;
        font-size: 12px;
        flex-direction: column;
        gap: 5px;
    }
}
