/* 
   Loco Wise - Modern & Elegant Mobile App Development Theme 
   Theme: Intelligent Motion (Deep Violet & Emerald)
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary-violet: #7C3AED;
    --primary-emerald: #10B981;
    --violet-glow: rgba(124, 58, 237, 0.4);
    --emerald-glow: rgba(16, 185, 129, 0.4);
    --bg-dark: #0F172A;
    --bg-darker: #020617;
    --bg-surface: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Text */
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-accent: #10B981;
    
    /* Transitions */
    --smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Background Effects */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(80px);
    opacity: 0.4;
}

.blob {
    position: absolute;
    border-radius: 50%;
    animation: move 20s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-violet);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-emerald);
    bottom: -50px;
    left: -50px;
}

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(50px, 50px) scale(1.1); }
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    transition: var(--smooth);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: var(--glass-border);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-emerald);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--primary-emerald);
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1.5rem !important;
    transition: var(--smooth);
}

.nav-link:hover {
    color: var(--primary-emerald) !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(90deg, var(--primary-violet), var(--primary-emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.btn-loco {
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    transition: var(--smooth);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-loco-primary {
    background: var(--primary-violet);
    color: white;
    box-shadow: 0 10px 20px var(--violet-glow);
}

.btn-loco-primary:hover {
    background: #6D28D9;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--violet-glow);
    color: white;
}

.hero-visual {
    position: relative;
}

.hero-mockup {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 0 50px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Services */
.section {
    padding: 120px 0;
}

.section-tag {
    color: var(--primary-emerald);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    transition: var(--smooth);
    height: 100%;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    border-color: var(--primary-violet);
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.9);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-violet);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Stats */
.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-emerald);
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Forms */
.loco-form-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 4rem;
    backdrop-filter: blur(20px);
}

.form-input {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    width: 100%;
    margin-bottom: 1.5rem;
    transition: var(--smooth);
}

.form-input:focus {
    border-color: var(--primary-emerald);
    outline: none;
    background: rgba(15, 23, 42, 0.8);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-link {
    color: var(--text-secondary);
    transition: var(--smooth);
}

.footer-link:hover {
    color: var(--primary-emerald);
}

@media (max-width: 991px) {
    .hero {
        text-align: center;
        padding-top: 120px;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
}