/* Mobile-specific fixes */
@media (max-width: 768px) {
    /* Fix TOPBAR height */
    .navbar {
        padding: 0.3rem 0 !important;
        min-height: 50px !important;
    }
    
    .nav-container {
        padding: 0 15px !important;
    }
    
    /* Logo size reduction */
    .logo h2 {
        font-size: 1rem !important;
    }
    
    .logo-img {
        width: 28px !important;
        height: 28px !important;
    }
    
    /* Hide regular menu, show hamburger */
    .nav-menu {
        position: fixed !important;
        top: 50px !important;
        left: -100% !important;
        width: 80% !important;
        height: calc(100vh - 50px) !important;
        background: #2c3e50 !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 2rem !important;
        gap: 1.5rem !important;
        transition: left 0.3s ease !important;
        box-shadow: 2px 0 10px rgba(0,0,0,0.3) !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-menu li {
        width: 100% !important;
    }
    
    .nav-menu a {
        display: block !important;
        padding: 0.5rem 0 !important;
        font-size: 1rem !important;
        border-bottom: 1px solid #34495e !important;
        width: 100% !important;
    }
    
    /* Language switcher positioning */
    .language-switcher {
        margin-left: auto !important;
        padding-left: 1rem !important;
    }
    
    .language-switcher button {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Hero section height reduction */
    .hero {
        margin-top: 50px !important;
        height: 300px !important;
    }
    
    .slide-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .slide-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Services section optimization */
    .services {
        padding: 2rem 0 !important;
    }
    
    .services h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .service-card {
        padding: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 250px !important;
    }
    
    .slide-title {
        font-size: 1.5rem !important;
    }
    
    .slide-subtitle {
        font-size: 1rem !important;
    }
}