/* Responsive Design for Lucky POS Website */

/* Mobile First Approach */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .language-switcher {
        margin-top: 1rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Hero Carousel Responsive */
@media (max-width: 768px) {
    .hero-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-indicators {
        bottom: 20px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}

/* Language Switcher Responsive */
@media (max-width: 480px) {
    .language-switcher {
        position: relative;
        width: 100%;
    }
    
    .lang-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
}