/* Lottie Animation Sidebar - DESKTOP ONLY */
.lottie-sidebar {
    display: none !important;
    visibility: hidden !important;
}

/* Force hide on mobile and tablet */
@media (max-width: 1023px) {
    .lottie-sidebar {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    dotlottie-wc {
        display: none !important;
        visibility: hidden !important;
    }
}

/* Show ONLY on desktop */
@media (min-width: 1024px) {
    .lottie-sidebar {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 1rem;
        position: sticky;
        top: 100px;
        max-height: calc(100vh - 140px);
        overflow: hidden;
        align-items: center;
        justify-content: center;
    }

    dotlottie-wc {
        display: block !important;
        visibility: visible !important;
        border-radius: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    dotlottie-wc:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(0, 212, 170, 0.3));
    }
}

/* Styling 'NewsLogic' with different colors - Override text animations */
.newslogic-text span:first-child {
    color: #3f8c9e; /* Teal for News */
}
.newslogic-text span:last-child {
    color: #f4e4c5; /* Cream for Logic */
}

/* AGGRESSIVE NewsLogic overrides - target everything */

/* Target all spans with NewsLogic parts */
span {
    /* This will be overridden by JavaScript for NewsLogic spans */
}

/* Force override for any NewsLogic related spans */
span[style*="red"] {
    color: red !important;
    -webkit-text-fill-color: red !important;
}

span[style*="blue"] {
    color: blue !important;
    -webkit-text-fill-color: blue !important;
}

/* Try to override animated text classes */
.morph-text, .liquid-text {
    /* Will be overridden by JavaScript for NewsLogic */
}

/* Global NewsLogic color overrides */
*[data-newslogic="news"] {
    color: red !important;
    -webkit-text-fill-color: red !important;
    background: none !important;
    background-image: none !important;
    animation: none !important;
}

*[data-newslogic="logic"] {
    color: blue !important;
    -webkit-text-fill-color: blue !important;
    background: none !important;
    background-image: none !important;
    animation: none !important;
}

/* NewsLogic Contact Form Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-logo i {
    color: #00d4aa;
    font-size: 1.8rem;
}

.logo-text {
    background: linear-gradient(45deg, #00d4aa, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-link.genesis {
    border-color: #4ade80;
    color: #4ade80;
}

.nav-link.evolution {
    border-color: #3b82f6;
    color: #3b82f6;
}

.nav-link.transcendence {
    border-color: #f59e0b;
    color: #f59e0b;
}

.nav-link.infinity {
    border-color: #ec4899;
    color: #ec4899;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.enter-matrix-btn {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.enter-matrix-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Neural Status */
.neural-status {
    position: fixed;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    background: rgba(0, 212, 170, 0.2);
    border: 1px solid #00d4aa;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #00d4aa;
    z-index: 100;
}

.neural-status i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Main Content */
.contact-main {
    margin-top: 100px;
    padding: 4rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Section */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.main-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.title-gradient {
    background: linear-gradient(45deg, #00d4aa, #4ecdc4, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.title-gradient-alt {
    background: linear-gradient(45deg, #8b5cf6, #ec4899, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.subtitle {
    font-size: 1.5rem;
    color: #a0a0a0;
    margin-bottom: 1rem;
    font-weight: 300;
}

.description {
    font-size: 1.1rem;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    margin-top: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4aa, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: #a0a0a0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.email-icon {
    background: linear-gradient(45deg, #ec4899, #f59e0b);
}

.phone-icon {
    background: linear-gradient(45deg, #00d4aa, #4ecdc4);
}

.location-icon {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
}

.social-icon {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.method-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.method-details p {
    color: #c0c0c0;
    margin-bottom: 0.5rem;
}

.method-status {
    font-size: 0.8rem;
    color: #00d4aa;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-description {
    color: #a0a0a0;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #e0e0e0;
    font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00d4aa;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #888;
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: #1a1a2e;
    color: #ffffff;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(45deg, #00d4aa, #4ecdc4);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.form-input:focus + .input-glow,
.form-select:focus + .input-glow,
.form-textarea:focus + .input-glow {
    opacity: 0.1;
}

/* Checkbox Styling */
.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-checkbox {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.form-checkbox:checked + .checkbox-custom {
    background: linear-gradient(45deg, #00d4aa, #4ecdc4);
    border-color: #00d4aa;
}

.form-checkbox:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    color: #c0c0c0;
}

.privacy-link {
    color: #00d4aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #4ecdc4;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(45deg, #ec4899, #f59e0b);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(3px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #f59e0b, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn:hover .btn-glow {
    opacity: 0.2;
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid #00d4aa;
    border-radius: 12px;
    margin-top: 2rem;
}

.success-message.show {
    display: block;
    animation: slideIn 0.5s ease;
}

.success-icon {
    font-size: 3rem;
    color: #00d4aa;
    margin-bottom: 1rem;
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #00d4aa;
}

.success-message p {
    color: #c0c0c0;
    line-height: 1.6;
}

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

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: #00d4aa;
}

.footer-tagline {
    color: #00d4aa;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-description {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: #a0a0a0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #00d4aa;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .neural-status {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .contact-main {
        margin-top: 80px;
        padding: 2rem 0;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .method-icon {
        align-self: center;
    }
}

