/* Mobile Menu Styles */
.find-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    background: linear-gradient(to bottom, #5a70b0, #3a4a80);
    box-shadow: inset 0 -4px 15px rgba(0, 0, 0, .15);
    position: relative;
}

.find-mobile .find {
    margin: 0;
}

/* Hamburger Button */
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: #7285bc;
    z-index: 9999;
    transition: left 0.3s ease;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu-overlay.active {
    left: 0;
}

/* Backdrop */
.mobile-menu-overlay::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.mobile-menu-overlay.active::before {
    opacity: 1;
    visibility: visible;
    left: 300px;
}

/* Menu Content */
.mobile-menu-content {
    height: 100%;
    overflow-y: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

/* Close Button */
.mobile-menu-close {
    position: fixed;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu-close:hover {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
    margin-top: 50px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.mobile-nav li {
    margin-bottom: 5px;
}

.mobile-nav a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-family: Verdana, sans-serif;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.mobile-nav a::before {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease, right 0.3s ease;
}

.mobile-nav a:hover::before {
    opacity: 1;
    right: 15px;
}

/* VIP Text Style */
.mobile-nav .vip-text {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    font-size: 18px;
}

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

/* Mobile Nav Bottom Section */
.mobile-nav-bottom {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-bottom ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.mobile-nav-bottom li {
    margin-bottom: 5px;
}

/* Subscribe Button */
.subscribe-btn {
    display: block;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #333;
    text-align: center;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin-top: 20px;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #333;
    text-decoration: none;
}

.subscribe-btn span {
    position: relative;
    z-index: 1;
}


/* Desktop styles - ensure menu elements are hidden */
@media (min-width: 768px) {
    .mobile-menu-toggle,
    .mobile-menu-overlay {
        display: none !important;
    }
}