/* Mobile Menu Styles */

/* =====================================================
   CUSTOM WELLNESS MENU ICON
   - Lotus-inspired curved lines
   - Smooth transitions for hover/active states
   - Color changes to indicate interaction
===================================================== */

/* Hamburger Button */
.mobile-menu-toggle {
    display: flex;               
    align-items: center;        
    justify-content: center;     

    width: 44px;
    height: 44px;

    background: none !important;
    border: none;
    padding: 0;

    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%); 

    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

/* Custom SVG Menu Icon */
.mobile-menu-toggle .menu-icon {
    color: #ffffff;
    transition: all 0.3s ease;
}

.mobile-menu-toggle .menu-icon line {
    transition: all 0.3s ease;
}

/* Hover State - Golden glow */
.mobile-menu-toggle:hover {
    transform: translateY(-50%) scale(1.1);
}

.mobile-menu-toggle:hover .menu-icon {
    color: #e5c466;
    filter: drop-shadow(0 0 8px rgba(229, 196, 102, 0.6));
}

/* Active/Pressed State */
.mobile-menu-toggle:active {
    transform: translateY(-50%) scale(0.95);
}

.mobile-menu-toggle:active .menu-icon {
    color: #d4b454;
}

/* When menu is open */
.mobile-menu-toggle.active .menu-icon {
    color: #e5c466;
}

/* Animation when menu opens - X transition */
.mobile-menu-toggle.active .menu-icon line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    transform-origin: center;
}

.mobile-menu-toggle.active .menu-icon line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .menu-icon line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    transform-origin: center;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #fff !important;
    border-radius: 0;
    transition: none;
}

/* Show hamburger only on mobile */
@media (max-width: 1199px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1100;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Container */
.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #284B71 0%, #1a3350 100%);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    transition: right 0.4s ease;
    z-index: 1101;
    overflow-y: auto;
}

.mobile-menu-container.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo {
    max-width: 120px;
    height: auto;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close span {
    display: block;
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover span {
    transform: rotate(90deg);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    padding: 20px 0;
}

.mobile-menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-nav ul li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-nav ul li:last-child {
    border-bottom: none;
}

.mobile-menu-nav ul li a {
    display: block;
    padding: 16px 30px;
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-nav ul li a:hover {
    background: rgba(229, 196, 102, 0.1);
    color: #e5c466;
    padding-left: 40px;
}

.mobile-menu-nav ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e5c466;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-nav ul li a:hover::before {
    opacity: 1;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Keep hamburger icon static - no animation when active */
.mobile-menu-toggle.active .hamburger-line {
    background-color: #fff;
}
