/* Updated Menu Styles */
.menu-package {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.menu-package.active {
    display: block;
    opacity: 1;
}

.menu-tabs li {
    cursor: pointer;
    padding: 10px 20px;
    color: #78b454;
    transition: all 0.3s ease;
    position: relative;
}

.menu-tabs li::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #78b454;
    transition: width 0.3s ease;
}

.menu-tabs li.active {
    color: #333;
    font-weight: 600;
}

.menu-tabs li.active::after {
    width: 100%;
}

.menu-page {
    padding: 60px 0;
    background: #fff;
}

.logo-title {
    text-align: center;
    margin-bottom: 40px;
}

.logo-image {
    width: 120px;
    margin-bottom: 20px;
}

.logo-title h1 {
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    margin: 0;
}

/* Menu Tabs */
.menu-navigation {
    margin: 40px 0;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.menu-tabs li {
    cursor: pointer;
    padding: 10px 20px;
    color: #78b454;
    transition: all 0.3s ease;
}

.menu-tabs li.active {
    color: #333;
    font-weight: 600;
}

/* Menu Package */
.menu-package {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.menu-package.active {
    display: block;
}

.price-circle {
    width: 120px;
    height: 120px;
    background: #C4956A;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: absolute;
    right: 0;
    top: 0;
}

.price-circle .amount {
    font-size: 36px;
    font-weight: 700;
}

.price-circle .currency {
    font-size: 18px;
}

.menu-package h2 {
    text-align: center;
    font-size: 32px;
    margin: 40px 0;
    text-transform: uppercase;
}

.menu-items {
    text-align: center;
}

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

.menu-items li {
    padding: 8px 0;
    color: #666;
}

.menu-note {
    margin-top: 60px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.menu-note p {
    margin: 0;
    font-size: 14px;
    color: #666;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .menu-tabs li {
        padding: 8px 15px;
        font-size: 14px;
    }

    .price-circle {
        position: relative;
        margin: 0 auto 20px;
    }

    .logo-title h1 {
        font-size: 24px;
    }
}