/* Custom CSS Variables for Neon Color Palette */
:root {
    --deep-blue: #0a0a0f;
    --neon-pink: #ff0080;
    --neon-cyan: #00ffff;
    --matrix-green: #00ff41;
    --dark-overlay: rgba(10, 10, 15, 0.95);
}

/* Tailwind Custom Colors */
.text-neon-pink { color: var(--neon-pink); }
.text-neon-cyan { color: var(--neon-cyan); }
.text-matrix-green { color: var(--matrix-green); }
.border-neon-pink { border-color: var(--neon-pink); }
.border-neon-cyan { border-color: var(--neon-cyan); }

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Orbitron', 'Arial', sans-serif;
    background: linear-gradient(180deg, #000000 0%, #000000 30%, #050505 50%, #080808 70%, #0b0b0b 90%, #070707 100%);
    color: white;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Video Section */
#video-section {
    background: transparent;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.8);
    margin: 0 auto;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.4) contrast(1.2);
    transition: filter 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.video-container:hover #background-video {
    filter: brightness(0.6) contrast(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 255, 0.1));
    z-index: 1;
    pointer-events: none;
}

/* Background Video Mute Button */
.background-video-mute-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--neon-pink);
    border-radius: 50%;
    color: var(--neon-pink);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.background-video-mute-btn:hover {
    background: var(--neon-pink);
    color: var(--deep-blue);
    box-shadow: 0 0 20px var(--neon-pink);
    transform: scale(1.1);
}

.background-video-mute-btn:active {
    transform: scale(0.95);
}

/* Navigation */
.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    pointer-events: auto;
    touch-action: manipulation;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 4px 8px;
}

.logo-image {
    height: 54px;
    width: 162px;
    transition: all 0.3s ease;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
    /* Crop from top and bottom to fit header height */
    clip-path: inset(20% 0 20% 0);
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 6px;
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 4px 8px;
}

.language-btn {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--neon-cyan);
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: white;
    pointer-events: auto;
    touch-action: manipulation;
    backdrop-filter: blur(5px);
}

.language-btn:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

.language-btn.active {
    border-color: var(--neon-pink);
    background: rgba(255, 0, 128, 0.1);
    box-shadow: 0 0 15px var(--neon-pink);
}

.mobile-language-switcher {
    display: flex;
    gap: 6px;
    justify-content: center;
}


/* Hero Video Section */
.hero-video-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    border-radius: 0 0 50px 50px;
}

.hero-video {
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 0 0 50px 50px;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
    border-radius: 0 0 50px 50px;
}

/* Hero Fallback Content */
.hero-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 0 2rem;
}

.hero-title {
    text-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
    animation: title-glow 3s infinite alternate;
}

@keyframes title-glow {
    0% { text-shadow: 0 0 30px rgba(255, 0, 128, 0.5); }
    100% { text-shadow: 0 0 50px rgba(255, 0, 128, 0.8), 0 0 70px rgba(255, 0, 128, 0.3); }
}

/* CTA Button */
.cta-button {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan));
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    touch-action: manipulation;
}

.cta-button::before {
    content: '';
    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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.5), 0 0 40px var(--neon-cyan);
}

/* Section Titles */
.section-title {
    text-shadow: 0 0 20px currentColor;
    position: relative;
    margin-bottom: 4rem;
}


/* Process Cards */
.process-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--neon-cyan);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover::before {
    opacity: 1;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
    border-color: var(--neon-pink);
}

.process-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* Service Cards */
.service-card {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--neon-cyan);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 0, 128, 0.4);
    border-color: var(--neon-pink);
}

.service-icon {
    font-size: 3rem;
    color: var(--matrix-green);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--matrix-green);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--neon-pink);
    text-shadow: 0 0 30px var(--neon-pink);
    transform: scale(1.2);
}

/* Works Gallery */
.works-gallery-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.works-gallery {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.works-gallery::-webkit-scrollbar {
    display: none;
}

.work-card {
    flex: 0 0 350px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--neon-cyan);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    position: relative;
    cursor: pointer;
}

.work-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
    border-color: var(--neon-pink);
}

.work-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.work-image-blurred {
    filter: blur(12px);
    -webkit-filter: blur(12px);
}

.work-card:hover .work-image {
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.work-card:hover .work-overlay {
    transform: translateY(0);
}

.work-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.work-title-red {
    color: #ff4444 !important;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.work-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.work-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid var(--neon-pink);
    border-radius: 8px;
    background: rgba(255, 0, 128, 0.1);
}

.work-link-disabled {
    color: rgba(255, 255, 255, 0.5) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

.work-link:hover {
    background: var(--neon-pink);
    color: var(--deep-blue);
    box-shadow: 0 0 20px var(--neon-pink);
    transform: scale(1.05);
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: var(--neon-cyan);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.gallery-arrow:hover {
    background: var(--neon-cyan);
    color: var(--deep-blue);
    box-shadow: 0 0 20px var(--neon-cyan);
    transform: translateY(-50%) scale(1.1);
}

.gallery-arrow-left {
    left: -25px;
}

.gallery-arrow-right {
    right: -25px;
}

/* Contact Form */
.contact-form {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--neon-pink);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--neon-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
    background: rgba(0, 0, 0, 0.7);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 768px) and (orientation: portrait) {
    /* Mobile-specific styles */
    body {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: linear-gradient(180deg, #000000 0%, #000000 30%, #050505 50%, #080808 70%, #0b0b0b 90%, #070707 100%) !important;
    }
    
    /* Reduce header height by about one-third */
    header {
        padding: 0.6rem 1rem !important;
        z-index: 100;
        position: relative;
    }
    
    header nav {
        padding: 0.38rem 0 !important;
    }
    
    /* Make logo same size as desktop on mobile */
    .logo-image {
        height: 54px !important;
        width: 162px !important;
        clip-path: inset(20% 0 20% 0);
    }
    
    /* Increase mobile menu button click area */
    #mobile-menu-btn {
        padding: 8px !important;
        min-width: 48px !important;
        min-height: 48px !important;
    }
    
    /* Mobile video container adjustments */
    .hero-video-container {
        padding-top: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
    }
    
    /* Ensure hero section extends fully on mobile */
    #hero {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
    }
    
    .hero-video {
        display: block;
        /* Crop mobile video to remove 9:16 text from top and bottom */
        clip-path: inset(8% 0 8% 0);
        object-fit: cover;
    }
    
    .hero-video-overlay {
        display: block;
    }
    
    .hero-fallback {
        display: none !important;
        position: relative;
        z-index: 10;
        text-align: center;
        width: 100%;
        padding: 0 2rem;
    }
    
    /* Fix all buttons to work properly */
    .nav-link,
    .cta-button,
    .gallery-arrow,
    .language-switcher button,
    button[type="submit"],
    #prev-work,
    #next-work,
    #mobile-menu-btn {
        pointer-events: auto;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Fix mobile menu button specifically */
    #mobile-menu-btn {
        display: block !important;
        position: relative !important;
        z-index: 1000 !important;
        background: rgba(0, 0, 0, 0.3) !important;
        border: 2px solid var(--neon-cyan) !important;
        border-radius: 8px !important;
        color: var(--neon-cyan) !important;
        font-size: 24px !important;
        cursor: pointer !important;
        backdrop-filter: blur(10px) !important;
        padding: 8px !important;
    }
    
    /* Fix gallery arrows specifically */
    .gallery-arrow {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10 !important;
        background: rgba(0, 0, 0, 0.7) !important;
        border: 2px solid var(--neon-cyan) !important;
        color: var(--neon-cyan) !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 18px !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
    }
    
    .gallery-arrow-left {
        left: 10px !important;
    }
    
    .gallery-arrow-right {
        right: 10px !important;
    }
    
    /* Improve hero section responsiveness */
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        max-width: 90%;
        margin: 0 auto;
    }
    
    /* Improve section titles */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Increase spacing between cards and improve layout */
    .process-card,
    .service-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
        max-width: 100%;
    }
    
    /* Single column layout for services and works on mobile */
    #services .grid,
    #process .grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .video-container {
        height: 300px;
        margin: 2rem 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    #video-section {
        min-height: 35vh;
        padding: 1.5rem 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Hide language switcher in header on mobile */
    .language-switcher {
        display: none;
    }
    
    .language-btn {
        padding: 4px 6px;
        font-size: 12px;
    }
    
    
    /* Improve CTA button responsiveness */
    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
        max-width: 90%;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
    
    /* Improve hero text responsiveness */
    #hero p {
        max-width: 90%;
        margin: 0 auto 2rem auto;
        padding: 0 1rem;
    }
    
    .process-number {
        font-size: 3rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .works-gallery {
        gap: 1rem;
    }
    
    .work-card {
        flex: 0 0 280px;
    }
    
    .work-image {
        height: 200px;
    }
    
    .work-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .work-title {
        font-size: 1.2rem;
    }
    
    .work-description {
        font-size: 0.8rem;
    }
    
    .work-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-arrow-left {
        left: -20px;
    }
    
    .gallery-arrow-right {
        right: -20px;
    }
    
    /* Hero section mobile adjustments */
    #hero {
        min-height: 100vh;
        height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background: var(--deep-blue);
        position: relative;
        top: 0;
        margin-top: 0;
        padding-top: 60px;
    }
}

@media (max-width: 480px) and (orientation: portrait) {
    /* Mobile-specific styles for small screens */
    body {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: linear-gradient(180deg, #000000 0%, #000000 30%, #050505 50%, #080808 70%, #0b0b0b 90%, #070707 100%) !important;
    }
    
    /* Further reduce header size for very small screens */
    header {
        padding: 0.5rem 0.8rem !important;
    }
    
    header nav {
        padding: 0.285rem 0 !important;
    }
    
    .logo-image {
        height: 54px !important;
        width: 162px !important;
        clip-path: inset(20% 0 20% 0);
    }
    
    /* Small mobile video container adjustments */
    .hero-video-container {
        padding-top: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
    }
    
    /* Ensure hero section extends fully on small mobile */
    #hero {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
    }
    
    .hero-video {
        display: block;
        /* Crop mobile video to remove 9:16 text from top and bottom */
        clip-path: inset(8% 0 8% 0);
        object-fit: cover;
    }
    
    .hero-video-overlay {
        display: block;
    }
    
    .hero-fallback {
        display: none !important;
        position: relative;
        z-index: 10;
        text-align: center;
        width: 100%;
        padding: 0 2rem;
    }
    
    /* Fix all buttons to work properly */
    .nav-link,
    .cta-button,
    .gallery-arrow,
    .language-switcher button,
    button[type="submit"],
    #prev-work,
    #next-work,
    #mobile-menu-btn {
        pointer-events: auto;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Fix mobile menu button specifically */
    #mobile-menu-btn {
        display: block !important;
        position: relative !important;
        z-index: 1000 !important;
        background: rgba(0, 0, 0, 0.3) !important;
        border: 2px solid var(--neon-cyan) !important;
        border-radius: 8px !important;
        color: var(--neon-cyan) !important;
        font-size: 24px !important;
        cursor: pointer !important;
        backdrop-filter: blur(10px) !important;
        padding: 8px !important;
    }
    
    
    /* Improve hero section for very small screens */
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        max-width: 95%;
        margin: 0 auto;
    }
    
    /* Improve hero text for very small screens */
    #hero p {
        max-width: 95%;
        margin: 0 auto 1.5rem auto;
        padding: 0 0.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 10px 16px;
        font-size: 12px;
        max-width: 95%;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
    
    .process-card,
    .service-card {
        padding: 1rem;
    }
    
    .video-container {
        height: 250px;
        margin: 1.5rem 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    #video-section {
        min-height: 30vh;
        padding: 1rem 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .logo-image {
        height: 54px;
        width: 162px;
        clip-path: inset(20% 0 20% 0);
    }
    
    /* Hide language switcher in header on mobile */
    .language-switcher {
        display: none;
    }
    
    .nav-link {
        font-size: 22px;
        padding: 6px 10px;
        font-weight: 700;
    }
    
    .process-number {
        font-size: 2.5rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .work-card {
        flex: 0 0 250px;
    }
    
    .work-image {
        height: 180px;
    }
    
    .work-overlay {
        padding: 1rem 0.8rem 0.8rem;
    }
    
    .work-title {
        font-size: 1rem;
    }
    
    .work-description {
        font-size: 0.7rem;
    }
    
    .work-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .gallery-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .gallery-arrow-left {
        left: -17px;
    }
    
    .gallery-arrow-right {
        right: -17px;
    }
}



/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--deep-blue);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
}
