/* CSS for IT Veljekset website */
        :root {
            --primary-black: #0a0a0a;
            --navy-blue: #001233;
            --dark-blue: #001a3d;
            --accent-blue: #00d4ff;
            --accent-purple: #b026ff;
            --accent-pink: #ff006e;
            --text-white: #ffffff;
            --text-gray: #a0aec0;
        }
        
        html {
            scroll-behavior: auto;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
            background-color: var(--primary-black);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* Background Animation */
        .bg-animation {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }
        
        .gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(50px);
            opacity: 0.4;
            will-change: transform;
            transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }
        
        .orb-1 {
            width: 350px;
            height: 350px;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
            top: -150px;
            right: -150px;
            animation: float 30s infinite ease-in-out;
        }
        
        .orb-2 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
            bottom: -100px;
            left: -100px;
            animation: float 30s infinite ease-in-out reverse;
        }
        
        .orb-3 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-blue));
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: float 20s infinite ease-in-out 5s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translate3d(0, 0, 0);
            }
            50% {
                transform: translate3d(15px, -15px, 0);
            }
        }
        
        /* Glassmorphism */
        .glass {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transform: translate3d(0, 0, 0);
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 40px;
            z-index: 1000;
            transition: padding 0.3s ease;
            will-change: padding;
        }
        
        nav.scrolled {
            padding: 15px 40px;
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }
        
        .logo {
            display: flex;
            flex-direction: column;
            flex-shrink: 0;
        }
        
        .logo-main {
            font-size: 24px;
            font-weight: 900;
            letter-spacing: -0.5px;
        }
        
        .logo-sub {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-gray);
        }
        
        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
            margin-right: auto;
            margin-left: 60px;
        }
        
        .nav-link {
            color: var(--text-white);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--text-white);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 20px 50px;
            position: relative;
        }
        
        .hero-container {
            max-width: 1200px;
            width: 100%;
            text-align: center;
        }
        
        .badge {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .hero-title {
            font-size: clamp(48px, 8vw, 80px);
            font-weight: 900;
            line-height: 1;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple), var(--accent-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -2px;
        }
        
        .hero-subtitle {
            font-size: clamp(18px, 3vw, 24px);
            font-weight: 500;
            color: var(--text-gray);
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .stats-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .stat-card {
            padding: 20px 30px;
            min-width: 150px;
        }
        
        .stat-number {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--text-gray);
        }
        
        .cta-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            border: none;
            will-change: transform;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .btn:hover {
            transform: translate3d(0, -3px, 0);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 50px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 25px;
            display: flex;
            justify-content: center;
            padding-top: 8px;
        }
        
        .scroll-indicator::before {
            content: '';
            width: 6px;
            height: 10px;
            background: white;
            border-radius: 3px;
            animation: scroll 2s infinite;
        }
        
        @keyframes scroll {
            0% {
                opacity: 1;
                transform: translateY(0);
            }
            100% {
                opacity: 0;
                transform: translateY(15px);
            }
        }
        
        /* Services Section */
        .services {
            padding: 100px 20px;
            position: relative;
        }
        
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            contain: layout style paint;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: clamp(36px, 6vw, 48px);
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            padding: 30px;
            transition: transform 0.3s ease, border-color 0.3s ease;
            cursor: pointer;
            will-change: transform;
            contain: layout style paint;
        }
        
        .service-card:hover {
            transform: translate3d(0, -10px, 0);
            border-color: var(--accent-blue);
        }
        
        .service-card:has(img):hover img {
            transform: scale3d(1.05, 1.05, 1);
        }
        
        .service-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .service-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .service-description {
            color: var(--text-gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .service-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .tag {
            padding: 5px 12px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            font-size: 14px;
            color: var(--text-gray);
        }
        
        /* Portfolio Section */
        .portfolio {
            padding: 100px 20px;
            position: relative;
        }
        
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 200px;
            gap: 20px;
        }
        
        .bento-item {
            padding: 30px;
            border-radius: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            position: relative;
        }
        
        .bento-item:hover {
            transform: scale(1.02);
        }
        
        .bento-item img {
            transition: transform 0.3s ease;
        }
        
        .bento-item:hover img {
            transform: scale(1.05);
        }
        
        .bento-item.large {
            grid-column: span 2;
            grid-row: span 2;
        }
        
        .bento-item.wide {
            grid-column: span 2;
        }
        
        .bento-category {
            font-size: 14px;
            color: var(--text-gray);
            margin-bottom: 10px;
        }
        
        .bento-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .bento-description {
            color: var(--text-gray);
            margin-bottom: 15px;
        }
        
        .bento-stats {
            font-size: 14px;
            color: var(--text-gray);
        }
        
        .tech-stack {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        
        .tech-item {
            padding: 5px 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            font-size: 12px;
        }
        
        /* Screenshots Section */
        .screenshots-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .screenshot-card {
            position: relative;
            padding: 20px;
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            overflow: hidden;
        }
        
        .screenshot-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
            border-color: var(--accent-blue);
        }
        
        .screenshot-wrapper {
            position: relative;
            width: 100%;
            height: 550px;
            overflow: hidden;
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.3);
        }
        
        .screenshot-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            filter: brightness(0.95);
        }
        
        .screenshot-card:hover .screenshot-wrapper img {
            transform: scale(1.03);
            filter: brightness(1);
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 20px;
            position: relative;
        }
        
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .contact-form {
            padding: 40px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-input, .form-select, .form-textarea {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: white;
            font-family: inherit;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-select option {
            background: var(--primary-black);
            color: white;
            padding: 10px;
        }
        
        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--accent-blue);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-submit {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .form-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }
        
        .form-submit:hover::before {
            left: 100%;
        }
        
        .form-message {
            margin-top: 15px;
            padding: 10px;
            border-radius: 10px;
            text-align: center;
            display: none;
        }
        
        .form-message.success {
            background: rgba(16, 185, 129, 0.2);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: #10b981;
        }
        
        .form-message.error {
            background: rgba(239, 68, 68, 0.2);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #ef4444;
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .contact-card {
            padding: 25px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .contact-icon {
            font-size: 24px;
            margin-bottom: 5px;
        }
        
        .contact-label {
            font-size: 14px;
            color: var(--text-gray);
        }
        
        .contact-value {
            font-size: 16px;
            font-weight: 500;
        }
        
        /* Footer */
        footer {
            padding: 80px 40px 30px;
            position: relative;
            background: linear-gradient(180deg, transparent 0%, rgba(11, 11, 20, 0.8) 100%);
            margin-top: 100px;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .footer-logo {
            font-size: 26px;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .footer-tagline {
            font-size: 14px;
            color: var(--text-gray);
            max-width: 280px;
        }
        
        .footer-nav {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .footer-link {
            color: var(--text-gray);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        
        .footer-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent-blue);
            transition: width 0.3s ease;
        }
        
        .footer-link:hover {
            color: var(--accent-blue);
        }
        
        .footer-link:hover::after {
            width: 100%;
        }
        
        .copyright {
            width: 100%;
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 13px;
            color: var(--text-muted);
            opacity: 0.7;
        }
        
        /* Responsive */
        @media (max-width: 1023px) {
            .nav-menu {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .screenshots-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .screenshot-wrapper {
                height: 450px;
            }
            
            .bento-item.large {
                grid-column: span 2;
                grid-row: span 1;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 767px) {
            nav {
                padding: 15px 20px;
            }
            
            .hero {
                padding: 80px 20px 50px;
            }
            
            .stats-container {
                flex-direction: column;
                align-items: center;
            }
            
            .bento-grid {
                grid-template-columns: 1fr;
            }
            
            .bento-item.wide {
                grid-column: span 1;
            }
            
            /* Screenshots responsive */
            #screenshots .section-container > div[style*="grid-template-columns"] {
                grid-template-columns: 1fr !important;
            }
            
            .screenshots-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .screenshot-wrapper {
                height: 400px;
            }
            
            #screenshots .service-card {
                height: 350px !important;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-nav {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }
        
        /* Animation Classes */
        .fade-in-up {
            opacity: 0;
            transform: translate3d(0, 30px, 0);
            transition: opacity 0.6s ease, transform 0.6s ease;
            will-change: opacity, transform;
        }
        
        .fade-in-up.visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
            will-change: auto;
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 999;
            padding: 80px 40px;
            transition: right 0.3s ease;
            transform: translate3d(0, 0, 0);
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .mobile-menu-link {
            color: var(--text-white);
            text-decoration: none;
            font-size: 24px;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .mobile-menu-link:hover {
            color: var(--accent-blue);
        }
        
        .close-menu {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 30px;
            height: 30px;
            cursor: pointer;
        }
        
        .close-menu::before, .close-menu::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            background: white;
            top: 50%;
            left: 0;
        }
        
        .close-menu::before {
            transform: rotate(45deg);
        }
        
        .close-menu::after {
            transform: rotate(-45deg);
        }
        


                .pricing-list {
                    display: flex;
                    flex-direction: column;
                    gap: 20px;
                }

                .pricing-item {
                    background: rgba(255, 255, 255, 0.03);
                    border-left: 4px solid var(--accent-blue);
                    padding: 25px 30px;
                    border-radius: 10px;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    transition: background 0.3s, transform 0.3s;
                }

                .pricing-item:hover {
                    background: rgba(255, 255, 255, 0.05);
                    transform: translateX(5px);
                }

                .pricing-item-info h3 {
                    color: var(--text-white);
                    margin-bottom: 8px;
                    font-size: 20px;
                }

                .pricing-item-info p {
                    color: var(--text-gray);
                    font-size: 14px;
                    line-height: 1.6;
                }

                .pricing-item-price {
                    font-size: 32px;
                    font-weight: bold;
                    color: var(--accent-blue);
                    white-space: nowrap;
                    margin-left: 20px;
                }

                @media (max-width: 768px) {
                    .pricing-item {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 15px;
                    }

                    .pricing-item-price {
                    margin-left: 0;
                    font-size: 28px;
                    }
                }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(5px);
    padding: 25px 20px;
    z-index: 9999;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    animation: slideUp 0.4s ease-out;
    transform: translate3d(0, 0, 0);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content h3 {
    color: var(--text-white);
    font-size: 20px;
    margin-bottom: 5px;
}

.cookie-content p {
    color: var(--text-gray);
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 12px 24px;
    white-space: nowrap;
}

/* Footer improvements */
.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand {
    max-width: 280px;
}

.footer-section {
    min-width: 0;
}

.footer-section h4 {
    white-space: nowrap;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    word-wrap: break-word;
    display: inline-block;
    position: relative;
}

.footer-link::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-blue);
}

.footer-link:hover {
    color: var(--accent-blue);
    padding-left: 15px;
}

.footer-link:hover::before {
    opacity: 1;
    left: 0;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-content p {
        min-width: auto;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

/* ===== BREADCRUMB NAVIGATION ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-blue);
}

.breadcrumb-separator {
    color: var(--text-muted);
    opacity: 0.5;
}

.breadcrumb-current {
    color: var(--text-white);
    font-weight: 500;
}

/* ===== SEARCH BAR ===== */
.search-container {
    position: relative;
    margin-left: auto;
}

.search-input {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 25px;
    padding: 10px 45px 10px 20px;
    color: var(--text-white);
    font-size: 14px;
    width: 220px;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                border-color 0.3s ease, 
                transform 0.3s ease,
                box-shadow 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    will-change: width, transform;
    transform: translate3d(0, 0, 0);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(176, 38, 255, 0.05));
    width: 280px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translate3d(0, -1px, 0);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(59, 130, 246, 0.6);
    pointer-events: none;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
    will-change: transform;
}

.search-input:focus ~ .search-icon {
    color: var(--accent-blue);
    transform: translateY(-50%) scale3d(1.15, 1.15, 1) rotate(90deg);
}

.search-results {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: linear-gradient(145deg, rgba(18, 18, 27, 0.98), rgba(11, 11, 20, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    min-width: 380px;
    max-width: 480px;
    max-height: 550px;
    overflow: hidden;
    display: none;
    z-index: 1000;
    backdrop-filter: blur(8px) saturate(150%);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 
                0 10px 40px rgba(59, 130, 246, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: slideDown 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: opacity, transform;
    transform: translate3d(0, 0, 0);
}

.search-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.search-results::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(59, 130, 246, 0.9);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    z-index: 2;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.search-results.active {
    display: flex;
    flex-direction: column;
}

.search-results-wrapper {
    overflow-y: auto;
    padding-top: 65px;
    flex: 1;
}

.search-results::-webkit-scrollbar {
    width: 10px;
}

.search-results::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    margin: 10px 0;
}

.search-results::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.4), rgba(176, 38, 255, 0.4));
    border-radius: 10px;
    border: 2px solid rgba(18, 18, 27, 0.5);
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.6), rgba(176, 38, 255, 0.6));
}

.search-result-item {
    padding: 18px 24px;
    margin: 0 12px 12px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.search-result-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-purple));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px 0 0 12px;
}

.search-result-item::after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    font-size: 20px;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.search-result-item:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(176, 38, 255, 0.08));
    border-color: rgba(59, 130, 246, 0.3);
    padding-left: 28px;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.search-result-item:hover::before {
    opacity: 1;
}

.search-result-item:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.search-result-item:last-child {
    margin-bottom: 18px;
}

.search-result-item:first-child {
    margin-top: 5px;
}

.search-result-title {
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.3px;
}

.search-result-title::before {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(176, 38, 255, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1;
}

.search-result-item:nth-child(1) .search-result-title::before {
    content: '\eb68';
    font-family: 'remixicon';
}

.search-result-item:nth-child(2) .search-result-title::before {
    content: '\ef3e';
    font-family: 'remixicon';
}

.search-result-item:nth-child(3) .search-result-title::before {
    content: '\f1b2';
    font-family: 'remixicon';
}

.search-result-item:nth-child(n+4) .search-result-title::before {
    content: '\eec7';
    font-family: 'remixicon';
}

.search-result-description {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    padding-right: 30px;
}

.search-no-results {
    padding: 60px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.search-no-results::before {
    content: '\f0d0';
    font-family: 'remixicon';
    display: block;
    font-size: 50px;
    margin-bottom: 15px;
    opacity: 0.3;
    filter: grayscale(100%);
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    position: relative;
    margin-left: 20px;
}

.language-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text-white);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-blue);
}

.language-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(18, 18, 27, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 120px;
    display: none;
    z-index: 1000;
    backdrop-filter: blur(5px);
    transform: translate3d(0, 0, 0);
}

.language-dropdown.active {
    display: block;
}

.language-option {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option.active {
    background: rgba(59, 130, 246, 0.1);
}

.language-name {
    color: var(--text-white);
    font-size: 14px;
}

@media (max-width: 768px) {
    .search-input {
        width: 150px;
    }
    
    .search-input:focus {
        width: 180px;
    }
    
    .search-results {
        min-width: 250px;
    }
    
    .language-selector {
        margin-left: 10px;
    }
    
    /* Mobile performance optimizations */
    .gradient-orb {
        filter: blur(40px);
        opacity: 0.3;
    }
    
    .glass {
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
    
    .search-input,
    .search-results,
    .mobile-menu,
    .cookie-banner,
    .language-dropdown {
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
    
    /* Disable 3D transforms on mobile */
    .service-card:hover {
        transform: translate3d(0, -5px, 0) !important;
    }
}
