       /* ========== ФУТЕР / FOOTER ========== */
        .site-footer {
            background: #0e2636;
            color: #cddfea;
            border-top: 4px solid #2c6e9e;
            margin-top: auto;
        }
        .text-white{
            color: #fff !important;
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 2.5rem 1.5rem 1.8rem;
        }

        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-col {
            flex: 1;
            min-width: 170px;
        }

        .footer-col h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 1.1rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            position: relative;
            display: inline-block;
        }

        .footer-col h4:after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 40px;
            height: 2px;
            background: #2c6e9e;
        }

        .footer-col p, .footer-col a {
            font-size: 0.9rem;
            line-height: 1.5;
            color: #bbd1e2;
            text-decoration: none;
            display: block;
            margin-bottom: 0.6rem;
            transition: 0.2s;
        }

        .footer-col a:hover {
            color: white;
            text-decoration: underline;
        }

        .footer-contacts .contact-line {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .footer-contacts .contact-line span:first-child {
            font-weight: 500;
            min-width: 80px;
            color: #e0edf5;
        }

        .legal-block {
            border-top: 1px solid #2a4b66;
            padding-top: 1.8rem;
            margin-top: 0.8rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-size: 0.75rem;
            color: #96b1c4;
        }

        .legal-links {
            display: flex;
            gap: 1.5rem;
        }

        .legal-links a {
            color: #bcd3e5;
            text-decoration: none;
            font-size: 0.75rem;
        }

        .legal-links a:hover {
            text-decoration: underline;
            color: white;
        }

        .rating-marker {
            background: #1f4b6e;
            border-radius: 20px;
            padding: 0.2rem 0.7rem;
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 500;
        }

        /* небольшая стилизация для мобильного футера */
        @media (max-width: 750px) {
            .footer-grid {
                flex-direction: column;
                gap: 1.8rem;
            }
            .legal-block {
                flex-direction: column;
                text-align: center;
            }
            .legal-links {
                justify-content: center;
            }
        }
        
            .mobile-burger {
        display: flex !important;
    }
    
    @media (min-width: 1024px) {
        .mobile-burger {
            display: none !important;
        }
    }
    
    .megamenu-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: #ffffff;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.15s ease;
        transform: translateY(-8px);
    }
    .group:hover .megamenu-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .mobile-submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        background-color: #f9fafb;
        border-radius: 0.75rem;
        margin-top: 0.5rem;
    }
    .mobile-submenu.open {
        max-height: 800px;
    }
    .rotate-180 {
        transform: rotate(180deg);
    }
    .mobile-toggle-btn .fa-chevron-down {
        transition: transform 0.25s ease;
    }
    /* Стили для плавного появления меню */
    #mobileMenuPanel {
        transition: all 0.3s ease;
    }
    #mobileMenuPanel.hidden {
        display: none;
    }