/* Mobile Menu Styles */
.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.mobile-menu-wrapper.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.mobile-menu-logo img {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    width: 30px;
    height: 30px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-close span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: #333;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.mobile-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Media & News Link */
.mobile-media-news {
    margin: 20px;
    margin-bottom: 0;
}

.media-news-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: #fef4ed;
    border: 1px solid #EC7f21;
    border-radius: 5px;
    color: #EC7f21;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.media-news-link:hover {
    background: #EC7f21;
    color: #fff;
}

.media-news-link .media-icon {
    font-size: 18px;
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    padding: 20px 0;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid #e9ecef;
}

.mobile-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background: #f8f9fa;
    color: #EC7f21;
}

.mobile-menu-link .dropdown-arrow {
    font-size: 20px;
    color: #ccc;
    transition: transform 0.3s ease;
    display: inline-block;
    font-weight: normal;
}

.mobile-menu-item.active > .mobile-menu-link .dropdown-arrow {
    transform: rotate(90deg);
    color: #EC7f21;
}

/* Mobile Submenu */
.mobile-submenu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
}

.mobile-menu-item.active > .mobile-submenu {
    display: block;
}

.mobile-submenu li {
    border-bottom: 1px solid #e9ecef;
}

.mobile-submenu li:last-child {
    border-bottom: none;
}

.mobile-submenu a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mobile-submenu a:hover {
    background: #fff;
    color: #EC7f21;
    padding-left: 45px;
}

/* Language Selector */
.mobile-menu-language {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 10px;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.language-item:hover,
.language-item.active {
    background: #EC7f21;
    color: #fff;
    border-color: #EC7f21;
}

.language-item img {
    width: 20px;
    height: auto;
}

/* Social Links */
.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    border-top: 1px solid #e9ecef;
}

.mobile-menu-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-social a:hover {
    background: #EC7f21;
    border-color: #EC7f21;
}

.mobile-menu-social img {
    width: 20px;
    height: 20px;
}

/* Request Quote Button */
.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #e9ecef;
}

.mobile-request-quote {
    display: block;
    text-align: center;
    padding: 12px;
    background: #EC7f21;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-request-quote:hover {
    background: #d66f11;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hide mobile menu on desktop */
@media (min-width: 1201px) {
    .mobile-menu-wrapper,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Hide old menu on mobile */
@media (max-width: 1200px) {
    .hd-nav-menu {
        display: none !important;
    }
}

/* Body no scroll when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}
