:root {
    /* Color Palette - Deep Space & Cyan Neon */
    --bg-dark: #050b14;
    --bg-panel: rgba(15, 23, 42, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --accent-cyan: #06b6d4;
    --accent-cyan-glow: rgba(6, 182, 212, 0.5);
    --accent-blue: #3b82f6;
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Glowing Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-blue), transparent 70%);
}

.orb-2 {
    bottom: 20%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-cyan), transparent 70%);
}

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

.section-padding {
    padding: 100px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-cyan);
    text-shadow: 0 0 15px var(--accent-cyan-glow);
}

.text-center {
    text-align: center;
}

/* Reusable Components */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
}

.glass-panel:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(6, 182, 212, 0.05);
    transform: translateY(-5px);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--bg-glass);
    border-color: var(--accent-cyan);
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    color: var(--accent-cyan);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid var(--accent-cyan);
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 10px var(--accent-cyan-glow);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(5, 11, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
}

.brand .omni {
    color: var(--text-primary);
}

.brand .ai {
    color: var(--accent-cyan);
    margin-left: 5px;
    text-shadow: 0 0 10px var(--accent-cyan-glow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

.nav-links .btn-primary {
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(5, 11, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    z-index: 999;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    display: flex;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    background: var(--bg-glass);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text .subtitle {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-text .title {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.hero-text .description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-visual {
    position: relative;
}

.visual-glass {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(6, 182, 212, 0.1);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: screen;
}

.floating-badge {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    padding: 10px 20px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}

.floating-badge i {
    color: var(--accent-cyan);
    margin-right: 5px;
}

.badge-1 {
    top: 20px;
    left: -20px;
}

.badge-2 {
    bottom: 30px;
    right: -20px;
    animation-delay: 3s;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* About Section */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
}

.section-header.text-center p {
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card .icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--accent-cyan-glow);
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Services Section */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-info h3 i {
    color: var(--accent-blue);
}

.service-info p {
    color: var(--text-secondary);
    max-width: 700px;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.portfolio-card {
    padding: 0;
    overflow: hidden;
}

.img-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-glass);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .img-wrapper img {
    transform: scale(1.05);
}

.img-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.badge {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #fff;
    font-weight: 600;
}

.portfolio-content {
    padding: 30px;
}

.portfolio-content h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.portfolio-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.view-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.view-link:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--accent-cyan-glow);
}

/* Footer / Contact */
.footer {
    background: rgba(5, 11, 20, 0.8);
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 20px 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 20px 0;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-glass);
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateY(-3px);
}

.footer-contact h3 {
    margin-bottom: 10px;
    color: var(--accent-cyan);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-pill:hover {
    background: var(--bg-glass);
    border-color: rgba(255,255,255,0.2);
}

.contact-pill.wa {
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-pill.wa i {
    color: #25D366;
}

.contact-pill.wa:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations (Scroll Reveal) */
[data-reveal] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text .title {
        font-size: 3rem;
    }

    .hero-text .description {
        margin: 0 auto 35px auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .hero-text .title {
        font-size: 2.2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .badge-1, .badge-2 {
        display: none; /* Hide floating badges on very small screens to save space */
    }
}

/* Lightbox Modal */
.lightbox { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.9); backdrop-filter: blur(10px); }
.lightbox-content { margin: auto; display: block; max-width: 90%; max-height: 80vh; margin-top: 5vh; border-radius: 10px; box-shadow: 0 0 30px rgba(6,182,212,0.3); animation: zoomIn 0.3s; }
#lightbox-caption { margin: auto; display: block; width: 80%; max-width: 700px; text-align: center; color: var(--accent-cyan); padding: 20px 0; font-family: var(--font-heading); font-size: 1.2rem; }
.lightbox-close { position: absolute; top: 30px; right: 40px; color: #f1f1f1; font-size: 40px; font-weight: bold; transition: 0.3s; cursor: pointer; }
.lightbox-close:hover, .lightbox-close:focus { color: var(--accent-cyan); text-decoration: none; cursor: pointer; }
@keyframes zoomIn { from {transform:scale(0.9); opacity:0} to {transform:scale(1); opacity:1} }
