/* privacy.css - Professional Privacy Policy Styles */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #5c0236 0%, #66023c 100%);
    color: #1a202c;
    line-height: 1.6;
}

/* Language Switcher */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lang-switcher a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    color: #4a5568;
}

.lang-switcher a.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.lang-switcher a:hover:not(.active) {
    background: #e2e8f0;
}

/* Main Container */
.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px 60px;
}

/* Header Section */
.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dac5d1 0%, #d6d0db 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.last-update {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
}

/* Content Card */
.privacy-card {
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-5px);
}

.privacy-content {
    padding: 50px;
}

/* Section Styling */
.privacy-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    font-size: 1.8rem;
    color: #667eea;
}

.section-text {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* List Styling */
.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #4a5568;
}

.feature-list li i {
    color: #48bb78;
    font-size: 1.2rem;
    width: 24px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #5c0236 0%, #66023c 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}

.contact-section h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.contact-section i {
    margin-right: 10px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
    color: #667eea;
    font-size: 1.5rem;
}

/* Footer */
.privacy-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.privacy-footer a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.privacy-footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

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

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-content {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .lang-switcher {
        top: 10px;
        right: 10px;
        padding: 5px 10px;
    }

    .lang-switcher a {
        padding: 4px 10px;
        font-size: 12px;
    }

    .contact-section {
        padding: 30px 20px;
    }

    .contact-section h2 {
        font-size: 1.4rem;
    }

    .contact-section p {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .lang-switcher,
    .back-to-top,
    .privacy-footer {
        display: none;
    }

    body {
        background: white;
    }

    .privacy-card {
        box-shadow: none;
    }

    .last-update {
        background: #f0f0f0;
        color: #333;
    }
}

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

.privacy-card {
    animation: fadeInUp 0.6s ease-out;
}

.privacy-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.privacy-section.visible {
    opacity: 1;
    transform: translateY(0);
}