/* Mobile Menu Styles */

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

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

/* Menu Wrapper */
.th-menu-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background: rgba(17, 17, 17, 0.95);
    z-index: 9999;
    overflow-y: auto;
    transition: all 0.3s ease;
    padding: 0;
    border-left: 2px solid #45F882;
    visibility: hidden;
    display: flex;
    flex-direction: column;
}

.th-menu-wrapper.active {
    right: 0;
    visibility: visible;
}

/* Menu Structure */
.th-menu-area {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 0;
    background: rgb(17, 17, 17);
}

/* Header */
.mobile-menu-header {
    text-align: left;
    padding-left: 20px;
padding: 10px 0 30px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(69, 248, 130, 0.2);
    position: relative;
}

.mobile-logo {
    padding: 15px 0;
}

.mobile-logo img {
    height: 70px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Navigation */
.mobile-menu-content {
    flex: 1;
    padding: 30px 0;
    overflow-y: auto;
}

.th-mobile-menu {
    padding: 0;
}

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

.th-mobile-menu ul li {
    margin: 0;
    padding: 0;
}

.th-mobile-menu ul li a {
    display: block;
    padding: 12px 0;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(69, 248, 130, 0.1);
}

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

.mobile-nav li {
    margin-bottom: 10px;
    padding: 0;
}

.mobile-nav li a {
    color: #45F882;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    padding: 12px 15px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-align: left;
    border-radius: 5px;
}

.mobile-nav li a:hover {
    color: #fff;
    background: rgba(69, 248, 130, 0.2);
}

/* Footer */
.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(69, 248, 130, 0.1);
    margin-top: auto;
}

/* Social Links */
.mobile-social {
    margin-bottom: 20px;
    text-align: left;
}

.mobile-social h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    opacity: 0.7;

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: #45F882;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    background: transparent;
    color: #45F882;
    border-color: #45F882;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #25D366;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-weight: 500;
    opacity: 0.9;
}

.whatsapp-btn i {
    font-size: 18px;
}

.whatsapp-btn:hover {
    opacity: 1;
    transform: translateX(5px);
}

/* Close Button */
.th-menu-wrapper .th-menu-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: 2px solid #45F882;
    color: #45F882;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
}

.th-menu-wrapper .th-menu-toggle:hover {
    background: #45F882;
    color: #000;
    transform: rotate(90deg);
}

/* Menu Toggle Button */
.header-button .th-menu-toggle {
    display: block;
    border: 2px solid #45F882;
    color: #45F882;
    padding: 8px;
    border-radius: 4px;
    background: transparent;
    z-index: 101;
    transition: all 0.3s ease;
}

.header-button .th-menu-toggle:hover {
    background: #45F882;
    color: #000;
}

/* Hide menu above tablet breakpoint */
@media (min-width: 992px) {
    .th-menu-wrapper,
    .mobile-menu-overlay,
    .header-button .th-menu-toggle {
        display: none;
    }
}
