/* 
  Tema Premium para Agencia IT
  Dark mode base, acentos vibrantes, glassmorphism
*/

:root {
    /* Colors */
    --bg-dark: #09090b;
    --bg-card: rgba(24, 24, 27, 0.6);
    --text-primary: #f8fafc;
    --text-secondary: #a1a1aa;
    
    --accent-blue: #3b82f6;
    --accent-blue-hover: #2563eb;
    --accent-purple: #8b5cf6;
    
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --section-padding: 5rem 0;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Background Effects */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-purple);
    top: 30%;
    right: -100px;
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn-primary, .btn-primary-outline, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.btn-primary-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-primary-outline:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn-secondary {
    background: #25d366; /* WhatsApp color */
    color: white;
}

.btn-secondary:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Glassmorphism utility */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    text-decoration: none;
}

.logo-text {
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #38bdf8, #8b5cf6); /* Cyan a Morado */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    font-size: 1.6rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn-primary-outline) {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn-primary-outline):hover {
    color: var(--text-primary);
}

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

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

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
}

.hero-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-main-logo {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    object-fit: cover;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Services */
.services {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-banner-card {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-carousel, .banner-track, .banner-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.banner-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.banner-track::-webkit-scrollbar { display: none; }

.banner-slide {
    position: relative;
    flex: 0 0 100%;
    scroll-snap-align: start;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-banner-card:hover .banner-slide img {
    transform: scale(1.03);
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(9, 9, 11, 0.95) 0%, rgba(9, 9, 11, 0.4) 50%, transparent 100%);
    pointer-events: none;
}

.banner-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d9381e; /* Red color from screenshot */
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.banner-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 80px; /* leave space for dots */
    z-index: 10;
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
}

.banner-content .icon-wrapper {
    font-size: 4rem;
    color: var(--text-primary);
    flex-shrink: 0;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.8));
}

.banner-text h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.banner-text p {
    color: #e4e4e7;
    font-size: 1.1rem;
    max-width: 800px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.banner-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: background 0.3s ease;
}

.banner-dots .dot.active {
    background: #d9381e; /* Red active dot to match badge */
}

@media (max-width: 768px) {
    .service-banner-card {
        height: 500px;
    }
    .banner-content {
        flex-direction: column;
        align-items: flex-start;
        left: 20px; right: 20px; bottom: 50px;
    }
    .banner-content .icon-wrapper {
        font-size: 2.5rem;
        padding: 0.75rem;
    }
    .banner-text h3 {
        font-size: 1.8rem;
    }
    .banner-dots {
        bottom: 20px; right: 20px;
    }
}

/* Experience Section */
.experience {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.05));
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.experience-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--accent-purple);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    font-weight: 500;
}

.tech-item i {
    font-size: 1.5rem;
    color: var(--accent-blue);
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.8), rgba(9, 9, 11, 0.9));
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-4px);
    filter: brightness(1.2);
}

.social-icon.whatsapp {
    background-color: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.social-icon.facebook {
    background-color: #1877F2;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 4px 15px rgba(214, 36, 159, 0.3);
}

.social-icon.linkedin {
    background-color: #0A66C2;
    box-shadow: 0 4px 15px rgba(10, 102, 194, 0.3);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

/* Footer */
footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 900px) {
    .experience-content,
    .contact-card {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .hero-main-logo {
        width: 80px;
        height: 80px;
        border-radius: 16px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}



/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Glowing Rings Animation */
.glowing-rings {
    position: relative;
    width: 100px;
    height: 100px;
}

.ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
}

.ring-1 {
    border-top-color: var(--accent-blue);
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    box-shadow: 0 -2px 15px rgba(59, 130, 246, 0.6);
}

.ring-2 {
    border-right-color: var(--accent-purple);
    width: 80px;
    height: 80px;
    top: 10px;
    left: 10px;
    animation: spin-reverse 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    box-shadow: 2px 0 15px rgba(139, 92, 246, 0.6);
}

.ring-3 {
    border-bottom-color: #38bdf8;
    width: 60px;
    height: 60px;
    top: 20px;
    left: 20px;
    animation: spin 1s linear infinite;
    box-shadow: 0 2px 10px rgba(56, 189, 248, 0.6);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

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

.loading-bar {
    width: 150px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 10px auto 0;
    overflow: hidden;
}

.loading-bar .progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    animation: progress-load 1.2s ease-out forwards;
}

@keyframes progress-load {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Hero Grid Layout & Animations */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
    min-height: 80vh;
    padding-top: 4rem;
}

.hero-visuals {
    position: relative;
    height: 550px;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Code Window */
.code-window {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: -20px 30px 60px rgba(0,0,0,0.6);
    z-index: 1;
    transform: translate(-65%, -55%) rotateY(-15deg) rotateX(8deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.code-window:hover {
    transform: translate(-65%, -55%) rotateY(0deg) rotateX(0deg) scale(1.03);
}

.window-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-header .dot {
    width: 12px; height: 12px; border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.window-body {
    padding: 20px;
    font-family: "Courier New", Courier, monospace;
    font-size: 0.95rem;
    color: #a1a1aa;
    line-height: 1.6;
    min-height: 280px;
    text-align: left;
}
.window-body span.keyword { color: #c678dd; }
.window-body span.function { color: #61afef; }
.window-body span.string { color: #98c379; }
.window-body span.cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: var(--accent-blue);
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}
@keyframes blink { 50% { opacity: 0; } }

/* Smartphone Mockup */
.smartphone-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 500px;
    background: #000;
    border: 10px solid #18181b;
    border-radius: 38px;
    box-shadow: 20px 30px 60px rgba(0,0,0,0.8), inset 0 0 0 2px rgba(255,255,255,0.1);
    z-index: 2;
    overflow: hidden;
    transform: translate(-10%, -40%) rotateY(-20deg) rotateZ(5deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.smartphone-mockup:hover {
    transform: translate(-10%, -40%) rotateY(0deg) rotateZ(0deg) translateY(-15px);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 25px;
    background: #18181b;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #000;
}

.scrolling-app {
    width: 100%;
    height: 200%;
    object-fit: cover;
    object-position: top;
    animation: appScroll 10s ease-in-out infinite alternate;
}

@keyframes appScroll {
    0%, 10% { transform: translateY(0); }
    90%, 100% { transform: translateY(-50%); }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 2rem;
    }
    .hero-visuals {
        height: 450px;
        transform: scale(0.9);
        transform-origin: top center;
        width: 100%;
    }
    .code-window { transform: translate(-55%, -55%); }
    .smartphone-mockup { transform: translate(5%, -45%); }
}


/* Mini App Styles (Inside Phone) */
.mini-app {
    width: 100%;
    height: 100%;
    background: #0f172a;
    display: flex;
    flex-direction: column;
    padding: 20px 15px 15px;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    color: white;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 20px;
}

.user-info { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 600; }
.avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)); }
.icon-pulse { color: #a1a1aa; font-size: 1.2rem; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.2); opacity: 0.7; } 100% { transform: scale(1); opacity: 1; } }

.app-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.app-card p { font-size: 0.75rem; color: #cbd5e1; margin-bottom: 5px; }
.app-card h2 { font-size: 1.8rem; margin: 0; font-weight: 700; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }

.card-chart { display: flex; align-items: flex-end; gap: 6px; height: 40px; margin-top: 15px; }
.card-chart .bar { width: 15px; background: var(--accent-blue); border-radius: 4px; animation: chart-grow 2s ease-in-out infinite alternate; }
.bar-1 { height: 40%; animation-delay: 0s; }
.bar-2 { height: 70%; animation-delay: 0.2s; }
.bar-3 { height: 50%; animation-delay: 0.4s; }
.bar-4 { height: 100%; animation-delay: 0.6s; }
.bar-5 { height: 60%; animation-delay: 0.8s; }

@keyframes chart-grow {
    0% { transform: scaleY(0.4); transform-origin: bottom; }
    100% { transform: scaleY(1); transform-origin: bottom; }
}

.app-list { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.app-item {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255, 255, 255, 0.05); padding: 10px; border-radius: 12px;
    animation: slide-in-up 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) backwards;
    border: 1px solid rgba(255, 255, 255, 0.02);
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

.item-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; }
.item-icon.blue { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.item-icon.purple { background: rgba(139, 92, 246, 0.2); color: #c084fc; }
.item-icon.orange { background: rgba(249, 115, 22, 0.2); color: #fb923c; }

.item-text h4 { margin: 0; font-size: 0.85rem; font-weight: 600; }
.item-text p { margin: 2px 0 0; font-size: 0.7rem; color: #a1a1aa; }

.item-status { width: 8px; height: 8px; border-radius: 50%; margin-left: auto; }
.item-status.green { background: #22c55e; box-shadow: 0 0 8px #22c55e; }
.item-status.yellow { background: #eab308; box-shadow: 0 0 8px #eab308; }

.app-nav {
    display: flex; justify-content: space-around; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.05); margin-top: auto; padding-bottom: 5px;
}
.app-nav i { font-size: 1.4rem; color: #64748b; }
.app-nav i.active { color: var(--accent-blue); filter: drop-shadow(0 0 5px var(--accent-blue)); }

@keyframes slide-in-up {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}



/* Responsive Mobile Menu Custom Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
        z-index: 1100;
        position: relative;
    }
    
    .nav-links {
        display: flex !important; /* Override the previous display: none */
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(9, 9, 11, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a.btn-primary-outline {
        width: 80%;
        max-width: 250px;
        margin-top: 1rem;
    }
}