/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Preload critical fonts */
@font-display: swap;

:root {
    /* Neon Colors */
    --neon-green: #39ff14;
    --neon-blue: #00d4ff;
    --neon-purple: #b300ff;
    --neon-pink: #ff006e;
    --neon-cyan: #00ffff;
    
    /* Dark Theme */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    
    /* Fonts */
    --font-display: 'Orbitron', monospace;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Neon Effects */
.neon-text {
    color: var(--neon-green);
    text-shadow: 
        0 0 5px var(--neon-green),
        0 0 10px var(--neon-green),
        0 0 15px var(--neon-green),
        0 0 20px var(--neon-green);
    animation: neon-flicker 3s ease-in-out infinite alternate;
}

@keyframes neon-flicker {
    0%, 100% {
        text-shadow: 
            0 0 5px var(--neon-green),
            0 0 10px var(--neon-green),
            0 0 15px var(--neon-green),
            0 0 20px var(--neon-green);
    }
    50% {
        text-shadow: 
            0 0 2px var(--neon-green),
            0 0 5px var(--neon-green),
            0 0 8px var(--neon-green),
            0 0 12px var(--neon-green);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green);
}

.nav-cta {
    background: linear-gradient(45deg, var(--neon-green), var(--neon-cyan));
    color: var(--bg-primary);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(57, 255, 20, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-green);
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px var(--neon-green);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-cyan));
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(57, 255, 20, 0.4);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover .btn-glow {
    left: 100%;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: transparent;
    color: var(--neon-green);
    text-decoration: none;
    border: 2px solid var(--neon-green);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.btn-secondary.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background: var(--neon-green);
    color: var(--bg-primary);
    box-shadow: 0 10px 25px rgba(57, 255, 20, 0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, rgba(57, 255, 20, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(179, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.highlight {
    color: var(--neon-cyan);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-separator {
    color: var(--neon-green);
}

/* Enhanced Contact Info in Hero */
.contact-info-enhanced {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(57, 255, 20, 0.1);
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid rgba(57, 255, 20, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(57, 255, 20, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.3);
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-link {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 0 5px var(--neon-green);
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
}

/* Contact Highlight Section */
.contact-highlight {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(57, 255, 20, 0.2);
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-card.email {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.contact-card.phone {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.contact-card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.contact-card-link {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card.email .contact-card-link {
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--neon-green);
}

.contact-card.phone .contact-card-link {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
}

.contact-card-link:hover {
    transform: scale(1.05);
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Code Terminal */
.code-terminal {
    background: rgba(17, 17, 17, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(57, 255, 20, 0.3);
    box-shadow: 
        0 0 20px rgba(57, 255, 20, 0.2),
        inset 0 0 20px rgba(57, 255, 20, 0.05);
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

.terminal-header {
    background: rgba(57, 255, 20, 0.1);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 5px var(--neon-green);
}

.terminal-title {
    color: var(--neon-green);
    font-size: 0.9rem;
}

.terminal-content {
    padding: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 8px;
}

.indent { padding-left: 20px; }
.indent2 { padding-left: 40px; }

.comment { color: #6a9955; }
.keyword { color: var(--neon-blue); }
.class-name { color: var(--neon-purple); }
.function { color: var(--neon-cyan); }
.string { color: var(--neon-pink); }

.cursor {
    color: var(--neon-green);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Value Props Section */
.value-props {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

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

.prop-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prop-card.featured {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.2);
}

.prop-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.prop-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.prop-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.prop-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Problems/Solutions Section */
.problems-solutions {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.problem-item {
    text-align: center;
    padding: 30px;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.problem-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.problem-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

/* Social Proof Section */
.social-proof {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.logo-item:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
    transform: translateY(-5px);
}

.logo-item img {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(1) brightness(0.8);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0) brightness(1);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    line-height: 1;
}

.metric-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(57, 255, 20, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 50px 0;
    border-top: 1px solid rgba(57, 255, 20, 0.2);
}

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.footer-tagline {
    color: var(--text-muted);
    margin-top: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    margin-bottom: 15px;
}

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

.footer-link:hover {
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green);
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: rgba(57, 255, 20, 0.2);
    border-color: var(--neon-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(57, 255, 20, 0.3);
}

.social-link:nth-child(2):hover {
    border-color: var(--neon-pink);
    box-shadow: 0 8px 20px rgba(255, 0, 110, 0.3);
}

.social-link:nth-child(3):hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.social-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 30px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .contact-info-enhanced {
        justify-content: center;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .prop-card,
    .problem-item {
        padding: 20px;
    }
    
    .terminal-content {
        font-size: 0.8rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Services Page Styles */
.page-hero {
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at center, rgba(57, 255, 20, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-contact {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.services-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-icon {
    font-size: 3rem;
    line-height: 1;
}

.service-badge {
    background: var(--neon-green);
    color: var(--bg-primary);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-badge.trending {
    background: var(--neon-purple);
}

.service-badge.expert {
    background: var(--neon-blue);
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-details h3 {
    color: var(--neon-cyan);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 25px 0 15px;
}

.problem-list,
.deliverables-list {
    list-style: none;
    margin-bottom: 20px;
}

.problem-list li,
.deliverables-list li {
    padding: 5px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.problem-list li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.deliverables-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.approach-steps {
    margin-bottom: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--neon-green);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-tag {
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.service-pricing {
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
}

.pricing-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.why-choose-me {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reason-item {
    text-align: center;
    padding: 30px 20px;
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.reason-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.reason-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: rgba(26, 26, 26, 0.5);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    color: var(--neon-cyan);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Portfolio Page Styles */
.portfolio-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.project-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-card.featured {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.2);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.project-logo {
    flex-shrink: 0;
}

.project-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
}

.project-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.project-meta .company {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.project-meta .duration,
.project-meta .role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.project-status {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
}

.project-status.current {
    background: var(--neon-green);
    color: var(--bg-primary);
}

.project-status.completed {
    background: var(--neon-blue);
    color: var(--bg-primary);
}

.project-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-primary);
    line-height: 1.3;
}

.challenge-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.challenge,
.solution {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.challenge h3 {
    color: var(--neon-pink);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.solution h3 {
    color: var(--neon-cyan);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.challenge p,
.solution p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

.project-details {
    margin-bottom: 30px;
}

.project-details h4 {
    color: var(--neon-green);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.metric {
    text-align: center;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 8px;
    padding: 15px 10px;
}

.metric-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-green);
    line-height: 1;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.achievement-list {
    list-style: none;
    margin-top: 15px;
}

.achievement-list li {
    padding: 5px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.achievement-list li::before {
    content: "🎯";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.project-cta {
    text-align: center;
    margin-top: 30px;
}

.technologies-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.tech-category {
    background: rgba(26, 26, 26, 0.5);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-item {
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(57, 255, 20, 0.3);
    transition: all 0.3s ease;
}

.tech-item.expert {
    background: var(--neon-green);
    color: var(--bg-primary);
    border-color: var(--neon-green);
    font-weight: 600;
}

.tech-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.3);
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-cta {
        flex-direction: column;
    }
    
    .pricing-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Portfolio responsive */
    .challenge-solution {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .project-card {
        padding: 30px 20px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* About Page Styles */
.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.developer-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-frame {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-cyan));
    padding: 5px;
    position: relative;
    animation: pulse-glow 3s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
    }
    100% {
        box-shadow: 0 0 40px rgba(57, 255, 20, 0.8);
    }
}

.avatar-content {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.avatar-text {
    font-size: 4rem;
    margin-bottom: 20px;
}

.code-matrix {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: var(--neon-green);
    text-align: center;
    line-height: 1.4;
}

.matrix-line {
    opacity: 0.8;
    animation: matrix-flow 4s ease-in-out infinite;
}

.matrix-line:nth-child(2) {
    animation-delay: 1s;
}

.matrix-line:nth-child(3) {
    animation-delay: 2s;
}

@keyframes matrix-flow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.story-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.timeline {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--neon-green), var(--neon-cyan));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.timeline-item.current .timeline-content {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 3px solid var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--neon-green);
}

.timeline-content {
    background: rgba(26, 26, 26, 0.8);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.timeline-content h3 {
    color: var(--neon-cyan);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.philosophy-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.philosophy-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.philosophy-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.philosophy-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.expertise-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.expertise-category {
    background: rgba(26, 26, 26, 0.5);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.expertise-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.skill-item.expert {
    border-color: var(--neon-green);
    background: rgba(57, 255, 20, 0.05);
}

.skill-item:hover {
    transform: translateX(5px);
    border-color: var(--neon-cyan);
}

.skill-name {
    font-weight: 600;
    color: var(--text-primary);
}

.skill-level {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.skill-item.expert .skill-level {
    color: var(--neon-green);
    font-weight: 600;
}

.values-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(179, 0, 255, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.fun-facts-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.fun-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fun-fact {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(26, 26, 26, 0.5);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.fun-fact:hover {
    transform: translateY(-3px);
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.2);
}

.fact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.fact-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.fact-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* About page responsive */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .avatar-frame {
        width: 200px;
        height: 200px;
    }
    
    .avatar-text {
        font-size: 3rem;
    }
    
    .code-matrix {
        font-size: 0.6rem;
    }
    
    .timeline {
        margin-left: 20px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        left: -5px;
    }
    
    .timeline-year {
        font-size: 0.7rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .fun-fact {
        flex-direction: column;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .neon-text {
        color: black;
        text-shadow: none;
    }
}