/* ==========================================
   ZELE AI - SAFFRON LAMBORGHINI THEME
   ========================================== */

:root {
    --saffron: #FF7A00;
    --saffron-dark: #E52E00;
    --bg-dark: #03050A; /* Deep Space Void */
    --glass-bg: rgba(10, 15, 28, 0.65);
    --border-light: rgba(255, 255, 255, 0.1);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    background-color: var(--bg-dark);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    /* Smooth rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { 
    background: var(--saffron); 
    border-radius: 10px; 
}
::-webkit-scrollbar-thumb:hover {
    background: var(--saffron-dark);
}

/* --- 3D NEURAL CANVAS --- */
#neural-canvas {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100vw; 
    height: 100vh;
    z-index: -1;
    pointer-events: none; /* Let clicks pass through */
}

/* --- BASE UTILITIES --- */
.text-saffron { color: var(--saffron); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; } 
.mb-4 { margin-bottom: 1rem; } 
.mb-5 { margin-bottom: 1.25rem; } 
.mb-6 { margin-bottom: 1.5rem; } 
.mb-10 { margin-bottom: 2.5rem; }
.text-6xl { font-size: clamp(3rem, 5vw, 4rem); } 
.text-4xl { font-size: clamp(2rem, 3vw, 2.5rem); } 
.text-xl { font-size: 1.25rem; }

/* --- NAVIGATION --- */
.navbar {
    position: fixed; 
    top: 0; 
    width: 100%;
    padding: 20px 5%;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(3,5,10,0.9), transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo { 
    font-size: 1.5rem; 
    font-weight: 900; 
    letter-spacing: 2px; 
}
.logo span { color: var(--saffron); }

/* --- LAMBORGHINI BUTTONS --- */
.btn-saffron {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    color: white; 
    border: none;
    padding: 12px 24px; 
    border-radius: 8px;
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-size: 0.8rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(229, 46, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid #8B0000;
}
.btn-saffron:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 30px rgba(229, 46, 0, 0.5); 
}
.btn-saffron:active { 
    transform: translateY(0); 
    border-bottom-width: 1px; 
}
.btn-saffron.large { 
    padding: 20px 40px; 
    font-size: 1.1rem; 
    border-radius: 12px; 
}

/* --- HERO SECTION --- */
.hero { 
    height: 100vh; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    position: relative;
}

.badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    background: rgba(0,255,136,0.1); 
    border: 1px solid rgba(0,255,136,0.3); 
    color: #00FF88; 
    padding: 8px 16px; 
    border-radius: 50px; 
    font-size: 0.7rem; 
    font-weight: 900; 
    letter-spacing: 2px; 
    margin-bottom: 30px; 
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}
.dot { 
    width: 8px; 
    height: 8px; 
    background: #00FF88; 
    border-radius: 50%; 
    animation: pulseGlow 1.5s infinite; 
}

.hero-title { 
    font-size: clamp(2.5rem, 6vw, 6rem); 
    font-weight: 900; 
    line-height: 1.1; 
    letter-spacing: -1px; 
    margin-bottom: 20px; 
    text-transform: uppercase; 
}
.hero-title span { 
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    text-shadow: 0 0 40px rgba(255, 122, 0, 0.3); 
}

.hero-subtitle { 
    color: #A0AABF; 
    font-size: clamp(1rem, 2vw, 1.3rem); 
    max-width: 700px; 
    line-height: 1.6; 
    margin-bottom: 40px; 
}

.scroll-indicator { 
    position: absolute; 
    bottom: 40px; 
    color: #555; 
    text-transform: uppercase; 
    font-size: 0.7rem; 
    font-weight: 900; 
    letter-spacing: 3px; 
}
.scroll-indicator i { 
    font-size: 1.5rem; 
    color: var(--saffron); 
    margin-top: 10px; 
}

/* --- SHOWCASE SECTIONS (Content & Galleries) --- */
.showcase-section { 
    padding: 100px 5%; 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
}
.content-wrapper { 
    display: flex; 
    flex-direction: column; 
    gap: 50px; 
    width: 100%; 
    max-width: 1400px; 
    margin: 0 auto; 
    align-items: center; 
}

/* Glass Text Blocks */
.text-block { 
    background: var(--glass-bg); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light); 
    padding: 40px; 
    border-radius: 30px; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.5); 
    width: 100%;
    z-index: 10;
}

.section-label { 
    color: var(--saffron); 
    font-size: 0.8rem; 
    letter-spacing: 4px; 
    text-transform: uppercase; 
    font-weight: 900; 
    margin-bottom: 10px; 
}
.section-heading { 
    font-size: clamp(2rem, 4vw, 3.5rem); 
    font-weight: 900; 
    line-height: 1.2; 
    margin-bottom: 20px; 
}
.section-heading span { color: var(--saffron); }
.section-desc { 
    color: #A0AABF; 
    font-size: 1.1rem; 
    line-height: 1.6; 
    margin-bottom: 30px; 
}

.feature-list { list-style: none; }
.feature-list li { 
    margin-bottom: 15px; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    color: #E2E8F0; 
}
.feature-list i { 
    color: var(--saffron); 
    font-size: 1.2rem; 
    background: rgba(255,122,0,0.1); 
    padding: 10px; 
    border-radius: 10px; 
}

/* 3D Image Galleries */
.image-gallery { 
    position: relative; 
    perspective: 1200px; 
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery-img { 
    width: 100%; 
    max-width: 500px;
    border-radius: 20px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.8); 
    border: 1px solid rgba(255,122,0,0.3); 
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease; 
}
.gallery-img:hover { 
    border-color: var(--saffron); 
    box-shadow: 0 30px 60px rgba(255,122,0,0.6); 
    z-index: 20; 
}

/* Stacked Layout for multiple admin images */
.stacked-gallery { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px; 
}
.stacked-gallery .gallery-img:nth-child(even) { 
    transform: translateY(30px); 
}

/* --- FULL WIDTH FEATURE (Security) --- */
.full-feature { 
    padding: 100px 5%; 
    position: relative;
    z-index: 10;
}
.glass-box { 
    background: var(--glass-bg); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--saffron); 
    padding: 80px 40px; 
    border-radius: 40px; 
    max-width: 1000px; 
    margin: 0 auto; 
    box-shadow: inset 0 0 50px rgba(255,122,0,0.05), 0 20px 50px rgba(0,0,0,0.5); 
}

/* --- FOOTER --- */
.footer { 
    padding: 150px 5% 50px 5%; 
    background: linear-gradient(to top, rgba(229, 46, 0, 0.1), transparent); 
    position: relative;
    z-index: 10;
}

/* --- DESKTOP SPECIFIC LAYOUT (Lusion Vibe) --- */
@media (min-width: 1024px) {
    .content-wrapper { 
        flex-direction: row; 
        justify-content: space-between; 
    }
    .showcase-section.reverse .content-wrapper { 
        flex-direction: row-reverse; 
    }
    
    .text-block { 
        width: 40%; 
        position: sticky; 
        top: 25vh; 
        align-self: flex-start;
    }
    
    .text-block.left { border-left: 4px solid var(--saffron); }
    .text-block.right { border-right: 4px solid var(--saffron); }

    .image-gallery { 
        width: 55%; 
        display: block;
    }
    
    /* Desktop Gallery specific absolute positioning for 3D effect */
    .gallery-img {
        position: relative;
        margin-bottom: -150px; /* Overlap effect */
    }
}

/* --- ANIMATIONS --- */
@keyframes pulseGlow { 
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 10px #00FF88; } 
    50% { transform: scale(1.3); opacity: 0.7; box-shadow: 0 0 20px #00FF88; } 
}
@keyframes bounce { 
    0%, 100% { transform: translateY(0); } 
    50% { transform: translateY(10px); } 
}
.animate-bounce { animation: bounce 2s infinite; }