/* Mobile Responsive Styles */

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Header */
    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .navigation.active {
        display: block;
    }

    .navigation ul {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }

    .navigation li {
        width: 100%;
    }

    .navigation a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid #eee;
    }

/* Hide desktop language switcher on mobile */
    .language-switcher {
        display: none;
    }

    /* Mobile language switcher styling */
    .mobile-language-switcher {
        display: flex;
        gap: 0;
        background: white;
        padding: 1rem 2rem;
        border-bottom: 1px solid #eee;
        justify-content: flex-start;
    }

    .mobile-language-switcher a {
        padding: 0.5rem 1rem;
        background: #f8f9fa;
        color: #333;
        text-decoration: none;
        border-radius: 4px;
        transition: all 0.3s ease;
        margin-right: 0.5rem;
    }

    .mobile-language-switcher a.active,
    .mobile-language-switcher a:hover {
        background: #3498db;
        color: white;
    }


    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Hero */
    .hero {
        padding: 8rem 0 5rem 0;
        min-height: calc(110vh - 80px);
        margin-top: 80px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Advantages Grid */
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .gallery-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Modal */
    .modal-content {
        width: 95%;
        max-width: none;
        max-height: 90%;
        top: 50%;
        transform: translateY(-50%);
        margin: 0 auto;
    }

    .prev, .next {
        padding: 12px;
        font-size: 16px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-links {
        justify-content: flex-start;
    }

    /* Process Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 4rem 0;
        min-height: calc(105vh - 80px);
        margin-top: 80px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .services, .advantages, .faq, .process-steps {
        padding: 4rem 0;
    }

    .services h2, .advantages h2, .faq h2 {
        font-size: 2rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-answer.active {
        padding: 1rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: flex-start;
    }
}