/* Modern Menu Section Styles */
.modern-menu-section {
    margin: 20px 15px;
}

.modern-menu-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modern-menu-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease;
}

.modern-menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(248, 44, 35, 0.2);
}

.modern-menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    text-decoration: none;
    color: #2d3748;
    position: relative;
    overflow: hidden;
}

.modern-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #f82c23 0%, #e02318 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.modern-menu-link:hover::before {
    transform: scaleY(1);
}

.modern-menu-link:hover {
    text-decoration: none;
    color: #2d3748;
}

.modern-menu-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f82c23 0%, #e02318 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 44, 35, 0.3);
}

.modern-menu-link:hover .modern-menu-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(248, 44, 35, 0.4);
}

.modern-menu-content {
    flex: 1;
}

.modern-menu-content h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    letter-spacing: 0.3px;
}

.modern-menu-content p {
    margin: 0;
    font-size: 13px;
    color: #6c757d;
    font-weight: 400;
}

.modern-menu-arrow {
    flex-shrink: 0;
    color: #f82c23;
    font-size: 18px;
    transition: all 0.3s ease;
}

.modern-menu-link:hover .modern-menu-arrow {
    transform: translateX(8px);
    color: #e02318;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for cards */
.modern-menu-card:nth-child(1) {
    animation-delay: 0.1s;
}

.modern-menu-card:nth-child(2) {
    animation-delay: 0.2s;
}

.modern-menu-card:nth-child(3) {
    animation-delay: 0.3s;
}
