/* Mobile Menu Animation */
#mobileMenu {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-30%);
    opacity: 0;
    visibility: hidden;
}

#mobileMenu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Hamburger to X */
.hamburger-line {
    transition: all 0.3s ease;
}

.hamburger.active .line1 {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .line2 {
    opacity: 0;
}

.hamburger.active .line3 {
    transform: rotate(-45deg) translate(7px, -6px);
}

.accordion-content {
    transition: max-height 0.4s ease;
}

.accordion-content.open {
    max-height: 500px;
    /* Adjust if content is longer */
}