/* menu-navigation.css — вынесено из inline <style> компонента view/common/menu-navigation.php */
.dropdown-menu-container {
    position: relative;
}

.b2b-service-badge {
    position: absolute;
    top: 21px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    font-size: 7px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.b2b-service-badge::before {
       content: '';
    position: absolute;
    bottom: -2px;
    right: 24px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 2px solid transparent;
    border-top: 4px solid #D97706;
    transform: rotate(29deg);
    z-index: 11;
}

.newdropdownlimo-items a:hover .b2b-service-badge {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.5);
}

.mobile-service-link .b2b-service-badge {
    position: absolute;
    top: 50%;
    left: -35px !important;
    right: auto !important;
    transform: translateY(-50%);
    font-size: 6px;
    padding: 2px 5px;
}

.mobile-service-link .b2b-service-badge::before {
    border-left: 3px solid transparent;
    border-right: 1px solid transparent;
    border-top: 3px solid #D97706;
    right: 5px;
}

@media (max-width: 991px) {
    .b2b-service-badge {
        font-size: 8px !important;
        padding: 2px 10px !important;
        left: 190px !important;
        top: 220px !important;
    }
    .b2b-service-badge::before {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 31px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 2px solid transparent;
    border-top: 4px solid #D97706;
    transform: rotate(29deg);
    z-index: 11;
}
    
    .mobile-service-link .b2b-service-badge {
        left: -32px !important;
        top: -2% !important;
        transform: translateY(-50%) !important;
    }
}




.unified-dropdown-menu {
    position: absolute;
    top: 103%;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(15, 17, 20, 0.12);
    backdrop-filter: blur(20px);
    min-width: 900px;
    max-width: 1000px;
    padding: 30px 40px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.unified-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.menu-dropdown-arrow {
    position: absolute;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.98);
    z-index: 1001;
    transition: left 0.3s ease;
}

.newdropdownlimo-close-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10001;
    color: #000;
}

.newdropdownlimo-close-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: rotate(90deg);
}

.newdropdownlimo-close-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
}

.newdropdownlimo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.newdropdownlimo-column {
    min-height: auto;
}

.newdropdownlimo-category {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(154, 138, 120, 0.15);
}

.newdropdownlimo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    border: none;
    flex-shrink: 0;
}

.newdropdownlimo-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.newdropdownlimo-icon:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.newdropdownlimo-title {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    margin: 0 !important;
    letter-spacing: -0.02em !important;
    font-family: 'Montserrat', sans-serif !important;
    line-height: 1.2 !important;
}

.newdropdownlimo-items {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.newdropdownlimo-items li {
    margin-bottom: 2px;
}

.newdropdownlimo-items a {
    display: block !important;
    padding: 6px 0 !important;
    color: #666 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    transition: all 0.3s ease !important;
    line-height: 1.4 !important;
    border-left: 2px solid transparent !important;
    padding-left: 16px !important;
    margin-left: -16px !important;
}

.newdropdownlimo-items a:hover {
    color: var(--primary-color) !important;
    border-left-color: var(--secondary-color) !important;
    padding-left: 20px !important;
}

.newdropdownlimo-locations-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.newdropdownlimo-premium-section {
    border-right: 1px solid rgba(154, 138, 120, 0.15);
    padding-right: 40px;
}

.newdropdownlimo-locations-category {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(154, 138, 120, 0.15);
}

.newdropdownlimo-locations-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    border: none;
}

.newdropdownlimo-locations-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.newdropdownlimo-locations-icon:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.newdropdownlimo-locations-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.02em;
}

.newdropdownlimo-premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.newdropdownlimo-premium-list li {
    margin-bottom: 1px;
}

.newdropdownlimo-premium-list span {
    display: block !important;
    padding: 4px 0 !important;
    color: #666 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border-left: 2px solid transparent !important;
    padding-left: 16px !important;
    margin-left: -16px !important;
}

.newdropdownlimo-premium-list span:hover,
.newdropdownlimo-premium-list span.active {
    color: var(--primary-color) !important;
    border-left-color: var(--secondary-color) !important;
    padding-left: 20px !important;
}

.newdropdownlimo-cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.newdropdownlimo-germany-group {
    grid-column: 1 / -1;
}

.newdropdownlimo-germany-cities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.newdropdownlimo-region-group {
    min-height: auto;
}

.newdropdownlimo-region-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(154, 138, 120, 0.15);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.newdropdownlimo-city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1px;
}

.newdropdownlimo-city-list li {
    margin: 0;
}

.city-link,
.js-city-link {
    display: block !important;
    padding: 4px 0 !important;
    color: #666 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
    border-left: 2px solid transparent !important;
    padding-left: 12px !important;
    margin-left: -12px !important;
    cursor: pointer !important;
}

.city-link:hover,
.js-city-link:hover {
    color: var(--primary-color) !important;
    border-left-color: var(--secondary-color) !important;
    padding-left: 16px !important;
}

.newdropdownlimo-view-all {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(154, 138, 120, 0.15);
    text-align: left;
}

.newdropdownlimo-view-all a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.newdropdownlimo-view-all a:hover {
    color: var(--primary-color);
    gap: 12px;
}

.newdropdownlimo-view-all svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

/* СТИЛИ ФЛОТА */
.newdropdownlimo-fleet-container,
.newdropdownlimo-bus-container {
    display: flex;
    flex-direction: column;
}

.newdropdownlimo-fleet-grid,
.newdropdownlimo-bus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.newdropdownlimo-fleet-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(15, 17, 20, 0.08);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(15, 17, 20, 0.04);
}

.newdropdownlimo-fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(15, 17, 20, 0.15);
    border-color: var(--secondary-color);
}

.newdropdownlimo-fleet-card img {
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.newdropdownlimo-fleet-card:hover img {
    transform: scale(1.05);
}

.fleet-image-container {
    position: relative;
    overflow: hidden;
}

.eco-badge-overlay {
    position: absolute !important;
    right: 2px;
    top: 3px;
    width: 50px !important;
    height: 20px !important;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 9%;
    padding: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0.9;
    transition: all 0.3s ease;
    z-index: 2;
}

.newdropdownlimo-fleet-card:hover .eco-badge-overlay {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.fleet-card-content {
    padding: 15px;
}

.fleet-card-content .fleet-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.fleet-card-content p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* МОБИЛЬНЫЕ СТИЛИ */
.newdropdownlimo-mobile-sections {
    display: none;
}

.newdropdownlimo-mobile-locations {
    display: none;
}

.newdropdownlimo-mobile-fleet {
    display: none;
}

.newdropdownlimo-mobile-bus-fleet {
    display: none;
}

.newdropdownlimo-mobile-section {
    margin-bottom: 20px;
}

.newdropdownlimo-mobile-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(154, 138, 120, 0.15);
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;
}

.newdropdownlimo-mobile-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.newdropdownlimo-mobile-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.newdropdownlimo-mobile-section-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-service-link,
.mobile-city-link {
    display: block !important;
    padding: 8px 0 !important;
    color: #666 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border-left: 2px solid transparent !important;
    padding-left: 12px !important;
    margin-left: -12px !important;
}

.mobile-service-link:hover,
.mobile-city-link:hover {
    color: var(--primary-color) !important;
    border-left-color: var(--secondary-color) !important;
    padding-left: 16px !important;
}

.newdropdownlimo-mobile-locations-scroll {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(154, 136, 102, 0.5) transparent;
}

.newdropdownlimo-mobile-locations-scroll::-webkit-scrollbar {
    width: 6px;
}

.newdropdownlimo-mobile-locations-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.newdropdownlimo-mobile-locations-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(154, 136, 102, 0.5);
    border-radius: 3px;
}

.newdropdownlimo-mobile-locations-scroll::-webkit-scrollbar-thumb:hover {
    background-color: rgba(154, 136, 102, 0.7);
}

.nav-item.language .dropdown-toggle::after { 
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border: 2px solid currentColor;
    border-left: 0;
    border-top: 0;
    margin-left: 8px;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.3s ease;
    margin-bottom: -2px;
}

button.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}

@media (max-width: 991px) {
    .unified-dropdown-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        min-width: auto !important;
        max-width: none !important;
        width: 100% !important;
        height: 100vh !important;
        padding: 60px 20px 20px 20px !important;
        backdrop-filter: blur(15px) !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
        margin: 0 !important;
        transform: translateX(-100%) !important;
        border-radius: 0 !important;
    }
    
    .menu-dropdown-arrow {
        display: none !important;
    }
    
    .unified-dropdown-menu.show {
        transform: translateX(0) !important;
    }
    
    .newdropdownlimo-mobile-sections {
        display: block !important;
    }
    
    .newdropdownlimo-mobile-locations {
        display: block !important;
    }
    
    .newdropdownlimo-mobile-fleet {
        display: block !important;
    }
    
    .newdropdownlimo-mobile-bus-fleet {
        display: block !important;
    }
    
    .newdropdownlimo-grid {
        display: none !important;
    }

    .newdropdownlimo-locations-container {
        display: none !important;
    }

    .newdropdownlimo-fleet-container,
    .newdropdownlimo-bus-container {
        display: none !important;
    }
    
    .newdropdownlimo-fleet-grid,
    .newdropdownlimo-bus-grid {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }
    
    .newdropdownlimo-fleet-card {
        display: flex !important;
        align-items: center !important;
        background: rgba(255, 255, 255, 0.95) !important;
        height: auto !important;
    }
    
    .newdropdownlimo-fleet-card img {
        width: 100px !important;
        height: 78px !important;
        flex-shrink: 0 !important;
    }
    
    .fleet-card-content {
        padding: 10px 15px !important;
        flex: 1 !important;
        text-align: left;
    }
    
    .fleet-card-content .fleet-card-title {
        font-size: 15px !important;
        margin-bottom: 3px !important;
    }
    
    .eco-badge-overlay {
        width: 14px !important;
        height: 14px !important;
        top: 6px !important;
        right: 6px !important;
        padding: 1.5px !important;
        display: none;
    }
    
    .fleet-card-content p {
        font-size: 13px !important;
    }

    .newdropdownlimo-view-all {
        margin-top: 12px !important;
        padding-top: 10px !important;
        text-align: left !important;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .unified-dropdown-menu {
        min-width: auto !important;
        width: calc(100vw - 40px) !important;
        max-width: 700px !important;
        padding: 24px 20px !important;
        position: absolute !important;
        height: auto !important;
        overflow: visible !important;
        transform: translateX(-50%) translateY(-20px) !important;
    }
    
    .unified-dropdown-menu.show {
        transform: translateX(-50%) translateY(0) !important;
    }
    
    .newdropdownlimo-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }
    
    .newdropdownlimo-locations-container {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .newdropdownlimo-premium-section {
        border-right: none !important;
        border-bottom: 1px solid rgba(154, 138, 120, 0.15) !important;
        padding-right: 0 !important;
        padding-bottom: 16px !important;
        margin-bottom: 16px !important;
    }
    
    .newdropdownlimo-cities-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .newdropdownlimo-germany-cities {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .newdropdownlimo-fleet-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .newdropdownlimo-bus-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
    }
}

@media (max-width: 480px) {
    .unified-dropdown-menu {
        padding: 60px 16px 20px 16px !important;
    }

    .newdropdownlimo-mobile-section-title {
        font-size: 15px !important;
    }

    .selTxt {
        color:#000000!important;
    }
    
    .mobile-service-link,
    .mobile-city-link {
        font-size: 14px !important;
        padding: 6px 13px !important;
        text-align: left!important;
    }
    
    .newdropdownlimo-fleet-card img {
                width: 160px !important;
        height: 105px !important;
    }
    
    .fleet-card-content {
        padding: 8px 12px !important;
        text-align: left;
    }
    
    .fleet-card-content .fleet-card-title {
        font-size: 14px !important;
    }
    
    .eco-badge-overlay {
        width: 12px !important;
        height: 12px !important;
        top: 5px !important;
        right: 5px !important;
        padding: 1px !important;
        display: none;
    }
    
    .fleet-card-content p {
        font-size: 12px !important;
    }
}
