/* Privacy Page Styles */

/* Prevent horizontal overflow */
html, body {
    overflow-x: hidden;
}

/* Hide hero background only */
.hero-background {
    display: none !important;
}

:root {
    --primary-gradient: linear-gradient(135deg, #14b8a6 0%, #3b82f6 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --accent-orange: #f59e0b;
    --accent-orange-light: #f97316;
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-light: #ffffff;
}

.privacy-wrapper {
    min-height: 100vh;
    background: var(--primary-gradient);
    position: relative;
    overflow-x: hidden;
    padding: 2rem 0;
}

/* Floating orbs animation */
.orb {
    position: fixed;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.3), rgba(247, 147, 30, 0.3));
    filter: blur(1px);
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 20%;
    animation-delay: 10s;
}

.orb-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 20%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

/* Logo */
.home-logo {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 10;
}

.home-logo .logo-link {
    font: 900 3rem 'Asap', Arial, sans-serif;
    color: var(--text-light);
    letter-spacing: -1px;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.home-logo .logo-link:hover {
    text-decoration: none;
    transform: scale(1.05);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

/* Hero Section */
.privacy-hero {
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-icon {
    margin-bottom: 2rem;
    color: var(--accent-orange);
    display: inline-block;
}

.privacy-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-light);
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-updated {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

/* Container */
.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--text-light);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-icon {
    color: var(--accent-orange);
    flex-shrink: 0;
}

/* Introduction */
.privacy-intro {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    border: 2px solid rgba(255, 107, 53, 0.3);
    text-align: center;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.intro-icon {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.privacy-intro p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Privacy Lists */
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.privacy-list li {
    padding: 0.75rem;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1), transparent);
    border-left: 3px solid var(--accent-orange);
    border-radius: 0 10px 10px 0;
    line-height: 1.5;
    color: var(--text-light);
    position: relative;
    transition: all 0.3s ease;
}

.privacy-list li:hover {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.1));
    transform: translateX(5px);
}

.privacy-list li::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Highlights */
.privacy-highlight {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-icon {
    color: #FFC107;
    flex-shrink: 0;
}

.privacy-highlight p {
    margin: 0;
    font-weight: 600;
    color: var(--text-light);
}

/* Privacy Promise */
.privacy-promise {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(129, 199, 132, 0.2));
    border: 2px solid rgba(76, 175, 80, 0.4);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.promise-icon {
    color: #4CAF50;
    flex-shrink: 0;
}

.promise-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
}

.promise-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Two Column Layout */
.privacy-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-content h4 {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    color: var(--text-light);
}

.contact-content a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-content a:hover {
    color: var(--accent-orange-light);
    text-decoration: underline;
}

.response-time {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.contact-link {
    margin-top: 1rem;
}

.contact-link a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
}

.contact-link a:hover {
    color: var(--accent-orange-light);
    text-decoration: underline;
}

/* Tracking Highlight */
.tracking-highlight {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(129, 199, 132, 0.2));
    border: 1px solid rgba(76, 175, 80, 0.4);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.tracking-highlight p {
    margin: 0;
    color: var(--text-light);
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .privacy-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .privacy-wrapper {
        padding: 1rem 0;
    }

    .home-logo .logo-link {
        font-size: 2.2rem;
    }

    .privacy-hero {
        padding: 2rem 1rem;
    }

    .privacy-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .privacy-container {
        padding: 0 1rem;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .privacy-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .privacy-promise {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .privacy-intro {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .orb {
        display: none;
    }
}

@media (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .glass-card {
        padding: 1rem;
    }

    .privacy-updated {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}
