/* Privacy and Terms Pages Styles */

/* Privacy and Terms Page Background */
.privacy-page,
.terms-page {
    background: #000000cc url('../assets/home-bg-1.jpg');
    background-size: cover;
    background-attachment: scroll;
    background-blend-mode: darken;
    background-position: top;
}

/* Privacy/Terms Visual Elements */
.privacy-visual,
.terms-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: 0 auto;
}

.privacy-icon,
.terms-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--text-light);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.privacy-visual:hover .privacy-icon,
.terms-visual:hover .terms-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.privacy-visual h3,
.terms-visual h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-visual p,
.terms-visual p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Privacy/Terms Content Sections */
.privacy-content,
.terms-content {
    padding: 120px 0;
    position: relative;
}

.privacy-wrapper,
.terms-wrapper {
    margin: 0 auto;
}

.privacy-intro,
.terms-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.privacy-intro h2,
.terms-intro h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-intro p,
.terms-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.privacy-intro p:last-child,
.terms-intro p:last-child {
    font-weight: 600;
    color: #00D4FF;
    margin-bottom: 0;
}

/* Privacy/Terms Sections */
.privacy-sections,
.terms-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.privacy-section,
.terms-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-section::before,
.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00D4FF, #0909B9, #00D4FF);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.privacy-section:hover,
.terms-section:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.1);
}

.privacy-section h3,
.terms-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-section h3 i,
.terms-section h3 i {
    color: #00D4FF;
    font-size: 1.5rem;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.section-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.section-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 2rem 0 1rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-content h4:first-child {
    margin-top: 0;
}

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.section-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.section-content li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

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

/* Contact Information Styling */
.contact-info {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #00D4FF;
    font-size: 1.2rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item a {
    color: #00D4FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #fada00;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-content,
    .terms-content {
        padding: 80px 0;
    }
    
    .privacy-intro,
    .terms-intro {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .privacy-intro h2,
    .terms-intro h2 {
        font-size: 2rem;
    }
    
    .privacy-section,
    .terms-section {
        padding: 2rem;
    }
    
    .privacy-section h3,
    .terms-section h3 {
        font-size: 1.2rem;
        /* flex-direction: column; */
        align-items: center;
        gap: 0.5rem;
    }
    
    .privacy-visual,
    .terms-visual {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .privacy-icon,
    .terms-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .privacy-intro,
    .terms-intro {
        padding: 1.5rem;
    }
    
    .privacy-intro h2,
    .terms-intro h2 {
        font-size: 1.8rem;
    }
    
    .privacy-section,
    .terms-section {
        padding: 1.5rem;
    }
    
    .privacy-section h3,
    .terms-section h3 {
        font-size: 1.1rem;
    }
    
    .section-content h4 {
        font-size: 1.1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .contact-item {
        /* flex-direction: column; */
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Animation for scroll-triggered elements */
.privacy-section.animate-on-scroll,
.terms-section.animate-on-scroll,
.privacy-intro.animate-on-scroll,
.terms-intro.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.privacy-section.animate-on-scroll.animate__animated,
.terms-section.animate-on-scroll.animate__animated,
.privacy-intro.animate-on-scroll.animate__animated,
.terms-intro.animate-on-scroll.animate__animated {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0909B9 0%, #00D4FF 100%);
}
