/**
 * Disclaimer Page Styles
 * File: assets/css/disclaimer.css
 * Nexilra Technologies - Simple Professional Disclaimer Page
 */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --primary-purple: #a855f7;
    --primary-blue: #3b82f6;
    --primary-pink: #ec4899;
    
    /* Background Colors */
    --bg-dark: #0f0f23;
    --bg-darker: #1a0033;
    --bg-accent: #2d1b69;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    --gradient-secondary: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    box-sizing: border-box;
}

.disclaimer-page {
    background: var(--bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HERO SECTION ===== */
.disclaimer-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 50%, var(--bg-accent) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(168, 85, 247, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: subtle-float 30s linear infinite;
}

@keyframes subtle-float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(25px, 25px); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid var(--primary-purple);
    border-radius: 50px;
    color: var(--primary-purple);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== DISCLAIMER CONTENT ===== */
.disclaimer-content {
    background: var(--bg-darker);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 30px;
    transition: all var(--transition-normal);
}

.disclaimer-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-title i {
    font-size: 1.3rem;
    color: var(--primary-purple);
}

.section-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 15px;
}

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

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

/* Contact Information */
/* .contact-info {
    margin-top: 20px;
    padding: 20px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--radius-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

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

.contact-item i {
    color: var(--primary-purple);
    width: 20px;
    text-align: center;
} */

/* Action Buttons */
.action-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-decoration: none;
    color: var(--text-primary);
}

.btn-primary {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ===== PRINT STYLES ===== */
@media print {
    .disclaimer-hero {
        background: white;
        color: black;
        padding: 40px 0;
    }
    
    .hero-bg-pattern {
        display: none;
    }
    
    .hero-title,
    .section-title {
        color: black;
    }
    
    .hero-subtitle,
    .section-content {
        color: #333;
    }
    
    .disclaimer-section {
        border: 1px solid #ddd;
        background: white;
        page-break-inside: avoid;
    }
    
    .action-section,
    .btn-primary,
    .btn-secondary {
        display: none;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .disclaimer-hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .disclaimer-section {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .action-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .disclaimer-hero {
        padding: 80px 0 40px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .disclaimer-section {
        padding: 25px 15px;
    }
    
    .section-title {
        font-size: 1.1rem;
        gap: 8px;
    }
    
    .section-title i {
        font-size: 1rem;
    }
    
    .section-content {
        font-size: 0.95rem;
    }
    
    .contact-info {
        padding: 15px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Simple fade-in animation for sections */
.disclaimer-section {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.disclaimer-section:nth-child(1) { animation-delay: 0.1s; }
.disclaimer-section:nth-child(2) { animation-delay: 0.2s; }
.disclaimer-section:nth-child(3) { animation-delay: 0.3s; }
.disclaimer-section:nth-child(4) { animation-delay: 0.4s; }
.disclaimer-section:nth-child(5) { animation-delay: 0.5s; }
.disclaimer-section:nth-child(6) { animation-delay: 0.6s; }
.disclaimer-section:nth-child(7) { animation-delay: 0.7s; }
.disclaimer-section:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}